diff --git a/.gitignore b/.gitignore index 97f9d7f..131fd40 100644 --- a/.gitignore +++ b/.gitignore @@ -34,11 +34,12 @@ msvc/2019/x64* msvc/2019/Win32* # Generated Test Files -test/energies.txt +test/site_energies* test/log.txt test/parameters_misspell* test/status.txt test/test_log.txt +test/STT* # Uncompressed example data files user_manual/example_data/Dynamics_test_data/set*/*/ diff --git a/parameters_default.txt b/parameters_default.txt index 225ca2a..07e8a7d 100644 --- a/parameters_default.txt +++ b/parameters_default.txt @@ -1,4 +1,4 @@ -## OPV Parameters for Excimontec v1.0.0 +## Parameters for Excimontec v1.1.0 -------------------------------------------------------------- ## Kinetic Monte Carlo Algorithm Parameters false //Enable_FRM @@ -55,6 +55,7 @@ false //Enable_dynamics_extraction false //Enable_steady_transport_test 1e15 //Steady_carrier_density (cm^-3) 10000 //N_equilibration_events +10000 //State_saving_interval -------------------------------------------------------------- ## Exciton Parameters 1e22 //Exciton_generation_rate_donor (cm^-3 s^-1) @@ -124,7 +125,7 @@ false //Enable_interfacial_energy_shift 0.0 //Energy_shift_donor (eV) 0.0 //Energy_shift_acceptor (eV) false //Enable_import_energies -energies.txt //Energies_import_filename +site_energies_#.txt //Energies_import_format -------------------------------------------------------------- ## Electrostatic Interaction Parameters 3.5 //Dielectric_constant (relative permittivity) diff --git a/src/OSC_Sim.cpp b/src/OSC_Sim.cpp index e78c67f..d66039a 100644 --- a/src/OSC_Sim.cpp +++ b/src/OSC_Sim.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2019 Michael C. Heiber +// Copyright (c) 2017-2020 Michael C. Heiber and contributors // This source file is part of the Excimontec project, which is subject to the MIT License. // For more information, see the LICENSE file that accompanies this software. // The Excimontec project can be found on Github at https://github.com/MikeHeiber/Excimontec @@ -14,21 +14,22 @@ namespace Excimontec { OSC_Sim::~OSC_Sim() {} - bool OSC_Sim::init(const Parameters& params_in, const int id) { + bool OSC_Sim::init(const Parameters& params_in) { + // Initialize parameters object + params = params_in; // Reset error status Error_found = false; // Check parameters for errors - if (!params_in.checkParameters()) { + if (!params.checkParameters()) { Error_found = true; - cout << id << ": Error with input parameters." << endl; + cout << params.Proc_ID << ": Error with input parameters." << endl; setErrorMessage("Error with the input parameters."); return false; } bool success; // Set parameters of Simulation base class - Simulation::init(params_in, id); - // Initialize parameters object - params = params_in; + Simulation::init(params, params.Proc_ID); + setGeneratorSeed(params.Generator_seed); // Initialize derived parameters if (params.Enable_ToF_test) { Transient_start = params.ToF_transient_start; @@ -47,12 +48,17 @@ namespace Excimontec { success = initializeArchitecture(); if (!success) { Error_found = true; - cout << id << ": Error initializing the film architecture." << endl; + cout << params.Proc_ID << ": Error initializing the film architecture." << endl; setErrorMessage("Error initializing the film architecture."); return false; } // Assign energies to each site in the sites vector - reassignSiteEnergies(); + if (params.Enable_import_energies || params.Enable_resume_stt) { + importEnergies(); + } + else { + reassignSiteEnergies(); + } // Initialize Coulomb interactions lookup table AvgDielectric = (params.Dielectric_donor + params.Dielectric_acceptor) / 2; Image_interaction_prefactor = (Elementary_charge / (16 * Pi*AvgDielectric*Vacuum_permittivity))*1e9; @@ -134,8 +140,22 @@ namespace Excimontec { } else if (params.Enable_steady_transport_test) { isLightOn = false; + // Export site energies for state saving + int pos = (int)params.Energies_export_format.find("#"); + string prefix = params.Energies_export_format.substr(0, pos); + string suffix = params.Energies_export_format.substr(pos + 1); + string energies_filename = prefix + to_string(getId()) + suffix; + exportEnergies(energies_filename, 1); // Create test polarons - generateSteadyPolarons(); + if (params.Enable_resume_stt) { + string state_filename = params.STT_state_file_format + "_" + to_string(getId()) + "_latest.txt"; + resumeSteadyTransportTest(state_filename); + } + else { + generateSteadyPolarons(); + } + // Calculate events for all polarons created + calculateAllEvents(); } if (params.Enable_IQE_test) { electron_extraction_data.assign(lattice.getLength()*lattice.getWidth(), 0); @@ -900,6 +920,89 @@ namespace Excimontec { return true; } + bool OSC_Sim::checkSTTStateFile(const std::string state_filename) const { + ifstream infile(state_filename); + // Check if energies file exists and is accessible + if (!infile.good()) { + cout << getId() << ": Error opening state file for resuming the steady transport test." << endl; + infile.close(); + return false; + } + // Copy all fine lines into a string vector + string line; + vector lines; + while (getline(infile, line)) { + if (line[0] != '#') { + lines.push_back(line); + } + } + infile.close(); + // Check that the file contains enough data lines + if (lines.size() != 6) { + cout << getId() << ": Error importing the state file. Appropriate data not included." << endl; + return false; + } + // Check that the time and N_events_executed data is valid + try { + double time = stod(lines[0]); + int N = stoi(lines[1]); + } + catch (invalid_argument & exception) { + cout << getId() << ": Error importing the state file. Simulation time or N_events_executed data is not valid." << endl; + cout << getId() << exception.what() << endl; + return false; + } + // Read in the lattice dimensions + int length; + int width; + int height; + try { + length = stoi(lines[2]); + width = stoi(lines[3]); + height = stoi(lines[4]); + } + catch (invalid_argument & exception) { + cout << getId() << ": Error importing the state file. The lattice dimensions data is not valid." << endl; + cout << getId() << exception.what() << endl; + return false; + } + // Check that valid lattice dimensions were read from the file + if (length <= 0 || width <= 0 || height <= 0) { + cout << getId() << ": Error importing the state file. The imported lattice dimensions are not valid." << endl; + return false; + } + // Check that the imported lattice dimensions match the actual dimensios of the lattice + if (length != lattice.getLength() || width != lattice.getWidth() || height != lattice.getHeight()) { + cout << getId() << ": Error importing the state file. The imported dimensions do not match the lattice dimensions." << endl; + return false; + } + // Count data size + long int total_count = 0; + stringstream count_stream; + for (const char& item : lines[5]) { + if (item == 'o' || item == 'u') { + try { + total_count += stoi(count_stream.str()); + } + catch (invalid_argument & exception) { + cout << getId() << ": Error reading state file data." << endl; + cout << exception.what(); + return false; + } + count_stream.str(""); + } + else { + count_stream << item; + } + } + // Check that the amount of occupancy data corresponds to the correct number of lattice sites + if (total_count != lattice.getNumSites()) { + cout << getId() << ": Error importing the state file. Incorrect amount of site occupancy data." << endl; + return false; + } + return true; + } + void OSC_Sim::createCorrelatedDOS(const double correlation_length) { double stdev, percent_diff; double scale_factor = 1; @@ -1791,47 +1894,63 @@ namespace Excimontec { return true; } - void OSC_Sim::exportEnergies(std::string filename) { + void OSC_Sim::exportEnergies(const std::string filename, const bool relative, const bool charge) { ofstream outfile(filename); - outfile << lattice.getLength() << endl; - outfile << lattice.getWidth() << endl; - outfile << lattice.getHeight() << endl; - for (int x = 0; x < lattice.getLength(); x++) { - for (int y = 0; y < lattice.getWidth(); y++) { - for (int z = 0; z < lattice.getHeight(); z++) { - outfile << getSiteEnergy(Coords(x, y, z)) << "\n"; - } - } + // Output info about how energies were created as comments + if (relative) { + outfile << "# Relative site energies created using Excimontec " << params.Version_str << "\n"; } - outfile.close(); - } + else { + outfile << "# Absolute site energies created using Excimontec " << params.Version_str << "\n"; + } + if (params.Enable_gaussian_dos) { + if (params.Enable_correlated_disorder && params.Enable_gaussian_kernel) { + outfile << "# From the Correlated Gaussian Disorder Model with Energy_stdev_donor = " << params.Energy_stdev_donor << " eV and Energy_stdev_acceptor = " << params.Energy_stdev_acceptor << " eV\n"; + outfile << "# Correlations created using the Gaussian kernel with correlation length = " << to_string(params.Disorder_correlation_length) << " nm" << "\n"; + } + else if (params.Enable_correlated_disorder && params.Enable_power_kernel) { + outfile << "# From the Correlated Gaussian Disorder Model with Energy_stdev_donor = " << params.Energy_stdev_donor << " eV and Energy_stdev_acceptor = " << params.Energy_stdev_acceptor << " eV\n"; + outfile << "# Correlations created using the Power kernel with exponent = " << params.Power_kernel_exponent << " and correlation length = " << to_string(params.Disorder_correlation_length) << " nm" << "\n"; + } + else { + outfile << "# From the Gaussian Disorder Model with stdev_donor = " << params.Energy_stdev_donor << " eV and stdev_acceptor = " << params.Energy_stdev_acceptor << " eV\n"; + } - void OSC_Sim::exportEnergies(std::string filename, bool charge) { - ofstream outfile(filename); - outfile << lattice.getLength() << endl; - outfile << lattice.getWidth() << endl; - outfile << lattice.getHeight() << endl; + } + else if (params.Enable_exponential_dos) { + outfile << "# From the Exponential Disorder Model with Energy_urbach_donor = " << params.Energy_urbach_donor << " eV and Energy_urbach_acceptor = " << params.Energy_urbach_acceptor << " eV\n"; + } + // Output lattice info + outfile << lattice.getLength() << "\n"; + outfile << lattice.getWidth() << "\n"; + outfile << lattice.getHeight() << "\n"; + // Output site energies for (int x = 0; x < lattice.getLength(); x++) { for (int y = 0; y < lattice.getWidth(); y++) { for (int z = 0; z < lattice.getHeight(); z++) { - if (getSiteType(Coords(x, y, z)) == 1) { - // hole site energies - if (charge) { - outfile << params.Homo_donor + getSiteEnergy(Coords(x, y, z)) << "\n"; - } - // electron site energies - else { - outfile << params.Lumo_donor + getSiteEnergy(Coords(x, y, z)) << "\n"; - } + if (relative) { + outfile << getSiteEnergy(Coords(x, y, z)) << "\n"; } else { - // hole site energies - if (charge) { - outfile << params.Homo_acceptor + getSiteEnergy(Coords(x, y, z)) << "\n"; + if (getSiteType(Coords(x, y, z)) == 1) { + // hole site energies + if (charge) { + outfile << params.Homo_donor + getSiteEnergy(Coords(x, y, z)) << "\n"; + } + // electron site energies + else { + outfile << params.Lumo_donor + getSiteEnergy(Coords(x, y, z)) << "\n"; + } } - // electron site energies else { - outfile << params.Lumo_acceptor + getSiteEnergy(Coords(x, y, z)) << "\n"; + // hole site energies + if (charge) { + outfile << params.Homo_acceptor + getSiteEnergy(Coords(x, y, z)) << "\n"; + } + // electron site energies + else { + outfile << params.Lumo_acceptor + getSiteEnergy(Coords(x, y, z)) << "\n"; + } } } } @@ -1840,6 +1959,84 @@ namespace Excimontec { outfile.close(); } + void OSC_Sim::exportSteadyTransportTestState() { + cout << getId() << ": Saving equilibration state..." << endl; + string filename = params.STT_state_file_format + "_" + to_string(getId()) + "_new.txt"; + ofstream outfile(filename); + outfile << getTime() << "\n"; + outfile << N_events_executed << "\n"; + outfile << lattice.getLength() << "\n"; + outfile << lattice.getWidth() << "\n"; + outfile << lattice.getHeight() << "\n"; + // write occupancy data to a data vector + // pre-allocate data vector with zeros which indicates empty sites + vector data(sites.size(), false); + int i = 0; + for (const auto& site : sites) { + if (site.isOccupied()) { + data[i] = true; + } + i++; + } + // compress data using run length encoding and write to file + for (int i = 0; i < (int)data.size(); i++) { + int count = 1; + while (data[i] == data[i + 1] && i < (int)data.size() - 1) { + count++; + i++; + } + if (data[i]) { + outfile << count << 'o'; + } + else { + outfile << count << 'u'; + } + } + outfile.close(); + // Check if there is an existing state file + ifstream state_file(params.STT_state_file_format + "_" + to_string(getId()) + "_latest.txt"); + // previous state file exists + if (state_file.good()) { + state_file.close(); + // Rename old state file as backup + string oldname = params.STT_state_file_format + "_" + to_string(getId()) + "_latest.txt"; + string newname = params.STT_state_file_format + "_" + to_string(getId()) + "_backup.txt"; + // first remove old backup file + int result = remove(newname.c_str()); + result = rename(oldname.c_str(), newname.c_str()); + if (result != 0) { + cout << "Error! Steady transport test previous equilibration state file could not be renamed." << endl; + setErrorMessage("Steady transport test previous equilibration state file could not be renamed."); + Error_found = true; + return; + } + // Rename new state file as latest + oldname = params.STT_state_file_format + "_" + to_string(getId()) + "_new.txt"; + newname = params.STT_state_file_format + "_" + to_string(getId()) + "_latest.txt"; + result = rename(oldname.c_str(), newname.c_str()); + if (result != 0) { + cout << "Error! Steady transport test new equilibration state file could not be renamed." << endl; + setErrorMessage("Steady transport test new equilibration state file could not be renamed."); + Error_found = true; + return; + } + } + // previous state file does not exist + else { + state_file.close(); + // Rename new state file as latest + string oldname = params.STT_state_file_format + "_" + to_string(getId()) + "_new.txt"; + string newname = params.STT_state_file_format + "_" + to_string(getId()) + "_latest.txt"; + int result = rename(oldname.c_str(), newname.c_str()); + if (result != 0) { + cout << "Error! Steady transport test equilibration state file could not be renamed." << endl; + setErrorMessage("Steady transport test equilibration state file could not be renamed."); + Error_found = true; + return; + } + } + } + Coords OSC_Sim::generateExciton() { // Determine coords Coords coords = calculateRandomExcitonCreationCoords(); @@ -2058,8 +2255,6 @@ namespace Excimontec { generateHole(item); } } - // Calculate events for all polarons created - calculateAllEvents(); } void OSC_Sim::generateToFPolarons() { @@ -2558,6 +2753,85 @@ namespace Excimontec { return transit_times; } + bool OSC_Sim::importEnergies() { + int pos = (int)params.Energies_import_format.find("#"); + string prefix = params.Energies_import_format.substr(0, pos); + string suffix = params.Energies_import_format.substr(pos + 1); + std::string energies_filename = prefix + to_string(getId()) + suffix; + ifstream infile(energies_filename); + // Check if energies file exists and is accessible + if (!infile.good()) { + cout << getId() << ": Error opening site energies file for importing." << endl; + setErrorMessage("Site energies file could not be opened for importing."); + Error_found = true; + infile.close(); + return false; + } + // Copy all data lines into a string vector + string line; + vector lines; + while (getline(infile, line)) { + // skip comment lines + if (line[0] != '#') { + lines.push_back(line); + } + } + // Check that the file contains at least 3 lines for the lattice dimensions + int length = -1; + int width = -1; + int height = -1; + if (lines.size() > 3) { + // Read in the lattice dimensions + length = stoi(lines[0]); + width = stoi(lines[1]); + height = stoi(lines[2]); + } + // Check that valid lattice dimensions were read from the file + if (length <= 0 || width <= 0 || height <= 0) { + cout << getId() << ": Error importing the site energies, lattice dimensions imported from file are not valid." << endl; + setErrorMessage("Error importing the site energies, lattice dimensions imported from file are not valid."); + Error_found = true; + return false; + } + // Check that the lattice dimensions in the file match the size of the lattice + if (length != lattice.getLength() || width != lattice.getWidth() || height != lattice.getHeight()) { + cout << getId() << ": Error importing the site energies, dimensions in file do not match the lattice dimensions." << endl; + setErrorMessage("Error importing the site energies, dimensions in file do not match the lattice dimensions."); + Error_found = true; + return false; + } + // Check that the number of read lines corresponds to the correct number of lattice sites + if ((int)lines.size() != (length * width * height + 3)) { + cout << getId() << ": Error importing the site energies, the number of energies does not equal the number of sites." << endl; + setErrorMessage("Error importing the site energies file, the number of energies does not equal the number of sites."); + Error_found = true; + return false; + } + int i = 3; + for (int x = 0; x < length; x++) { + for (int y = 0; y < width; y++) { + for (int z = 0; z < height; z++) { + float energy = stof(lines[i]); + long int index = lattice.getSiteIndex(Coords(x, y, z)); + if (sites[index].getType() == (short)1) { + sites[index].setEnergy(energy); + } + else if (sites[index].getType() == (short)2) { + sites[index].setEnergy(energy); + } + else { + cout << getId() << ": Error! Undefined site type detected while assigning site energies." << endl; + setErrorMessage("Undefined site type detected while assigning site energies."); + Error_found = true; + return false; + } + i++; + } + } + } + return true; + } + bool OSC_Sim::initializeArchitecture() { bool success; N_donor_sites = 0; @@ -2785,77 +3059,6 @@ namespace Excimontec { } } } - if (params.Enable_import_energies) { - ifstream infile(params.Energies_import_filename); - // Check if energies file exists and is accessible - if (!infile.good()) { - cout << getId() << ": Error opening site energies file for importing." << endl; - setErrorMessage("Site energies file could not be opened for importing."); - Error_found = true; - infile.close(); - return; - } - // Copy all fine lines into a string vector - string line; - vector lines; - while (getline(infile, line)) { - lines.push_back(line); - } - // Check that the file contains at least 3 lines for the lattice dimensions - int length = -1; - int width = -1; - int height = -1; - if (lines.size() > 3) { - // Read in the lattice dimensions - length = stoi(lines[0]); - width = stoi(lines[1]); - height = stoi(lines[2]); - } - // Check that valid lattice dimensions were read from the file - if (length <= 0 || width <= 0 || height <= 0) { - cout << getId() << ": Error importing the site energies, lattice dimensions imported from file are not valid." << endl; - setErrorMessage("Error importing the site energies, lattice dimensions imported from file are not valid."); - Error_found = true; - return; - } - // Check that the lattice dimensions in the file match the size of the lattice - if (length != lattice.getLength() || width != lattice.getWidth() || height != lattice.getHeight()) { - cout << getId() << ": Error importing the site energies, dimensions in file do not match the lattice dimensions." << endl; - setErrorMessage("Error importing the site energies, dimensions in file do not match the lattice dimensions."); - Error_found = true; - return; - } - // Check that the number of read lines corresponds to the correct number of lattice sites - if ((int)lines.size() != (length*width*height + 3)) { - cout << getId() << ": Error importing the site energies, the number of energies does not equal the number of sites." << endl; - setErrorMessage("Error importing the site energies file, the number of energies does not equal the number of sites."); - Error_found = true; - return; - } - int i = 3; - for (int x = 0; x < length; x++) { - for (int y = 0; y < width; y++) { - for (int z = 0; z < height; z++) { - float energy = stof(lines[i]); - long int index = lattice.getSiteIndex(Coords(x, y, z)); - if (sites[index].getType() == (short)1) { - sites[index].setEnergy(energy); - } - else if (sites[index].getType() == (short)2) { - sites[index].setEnergy(energy); - } - else { - cout << getId() << ": Error! Undefined site type detected while assigning site energies." << endl; - setErrorMessage("Undefined site type detected while assigning site energies."); - Error_found = true; - return; - } - i++; - } - } - } - - } } void OSC_Sim::removeExciton(list::iterator exciton_it) { @@ -2876,6 +3079,49 @@ namespace Excimontec { deleteObject(&(*exciton_it)); } + void OSC_Sim::resumeSteadyTransportTest(const std::string state_filename) { + cout << getId() << ": Resuming steady transport test from state file, " << state_filename << endl; + bool isValid = checkSTTStateFile(state_filename); + if (!isValid) { + return; + } + ifstream infile(state_filename); + // Copy all fine lines into a string vector + string line; + vector lines; + while (getline(infile, line)) { + if (line[0] != '#') { + lines.push_back(line); + } + } + infile.close(); + setTime(stod(lines[0])); + N_events_executed = stoi(lines[1]); + // Parse occupancy data line into bool vector + // Uncompress occupancy data line + vector occupancy_vec; + occupancy_vec.reserve(sites.size()); + stringstream count_stream; + for (const char& item : lines[5]) { + if (item == 'o' || item == 'u') { + bool isOccupied = (item == 'o'); + long int count = stoi(count_stream.str()); + count_stream.str(""); + vector new_entries(count, isOccupied); + occupancy_vec.insert(occupancy_vec.end(), std::begin(new_entries), std::end(new_entries)); + } + else { + count_stream << item; + } + } + // Create holes on the appropriate sites + for (long int i = 0; i < lattice.getNumSites(); i++) { + if (occupancy_vec[i]) { + generateHole(lattice.getSiteCoords(i)); + } + } + } + bool OSC_Sim::siteContainsHole(const Coords& coords) { if (lattice.isOccupied(coords)) { auto object_ptr = (*lattice.getSiteIt(coords))->getObjectPtr(); @@ -2887,6 +3133,10 @@ namespace Excimontec { } void OSC_Sim::updateSteadyData() { + // Output state data periodically during the equilibration phase + if ((N_events_executed < params.N_equilibration_events && N_events_executed % params.State_saving_interval == 0) || N_events_executed == params.N_equilibration_events) { + exportSteadyTransportTestState(); + } // Check if equilibration step is complete if (N_events_executed == params.N_equilibration_events) { // Mark time diff --git a/src/OSC_Sim.h b/src/OSC_Sim.h index 4ac9d6d..4df191f 100644 --- a/src/OSC_Sim.h +++ b/src/OSC_Sim.h @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2019 Michael C. Heiber +// Copyright (c) 2017-2020 Michael C. Heiber and contributors // This source file is part of the Excimontec project, which is subject to the MIT License. // For more information, see the LICENSE file that accompanies this software. // The Excimontec project can be found on Github at https://github.com/MikeHeiber/Excimontec @@ -26,8 +26,8 @@ namespace Excimontec { //! \brief This class extends the KMC_Lattice::Simulation class to create a functioning KMC simulation object for organic semiconductor devices. //! \copyright MIT License. For more information, see the LICENSE file that accompanies this software package. - //! \author Michael C. Heiber - //! \date 2017-2019 + //! \author Michael C. Heiber and contributors + //! \date 2017-2020 class OSC_Sim : public KMC_Lattice::Simulation { public: @@ -42,7 +42,7 @@ namespace Excimontec { //! \param id defines the desired ID number of the simulation object. //! \return true if the initialization is successful. //! \return false if there are any errors during initialization. - bool init(const Parameters& params, const int id); + bool init(const Parameters& params); //! \brief Calculates the events for all objects in the simulation. void calculateAllEvents(); @@ -58,6 +58,12 @@ namespace Excimontec { //! \return A vector of calculated mobility values for each extracted polaron. std::vector calculateMobilityData(const std::vector& transit_times) const; + //! \brief Checks whether the specified STT state file contains valid data. + //! \param state_filename specified the path to the STT state file. + //! \return true if the STT state file contains valid data. + //! \return false if the STT state file does not contain all the required data. + bool checkSTTStateFile(const std::string state_filename) const; + //! \brief Checks whether the simulation test specified by the input parameters is finished. //! \return true if the simulation test is finished. //! \return false if the simulation test is not yet finished. @@ -89,14 +95,11 @@ namespace Excimontec { //! \return false if the next event cannot be executed. bool executeNextEvent(); - //! \brief Exports the relative lattice site energies to a text file. - //! \param filename is the name of the file that will be created in the working directory. - void exportEnergies(std::string filename); - - //! \brief Exports the absolute lattice site energies for the given carrier type to a text file. - //! \param filename is the name of the file that will be created in the working directory. - //! \param charge designates whether electron or hole energies are output - void exportEnergies(std::string filename, bool charge); + //! \brief Exports the relative or absolute lattice site energies to a text file. + //! \param filename is the name of the data file that will be created in the working directory. + //! \param relative is an optional parameter that can be set to false to output absolute site energies. + //! \param charge is an optional parameter designates whether electron or hole energies are calculated when absolute energies are output. + void exportEnergies(const std::string filename, const bool relative = true, const bool charge = true); //! \brief Gets the charge extraction map data generated by the time-of-flight charge transport or internal quantum efficiency tests. //! \param charge specifies whether to get electron or hole polaron extraction data. @@ -613,6 +616,7 @@ namespace Excimontec { void createCorrelatedDOS(const double correlation_length); bool createImportedMorphology(); void deleteObject(KMC_Lattice::Object* object_ptr); + bool importEnergies(); // Exciton Event Execution Functions bool executeExcitonCreation(); bool executeExcitonHop(const std::list::const_iterator event_it); @@ -639,8 +643,10 @@ namespace Excimontec { bool initializeArchitecture(); void removeExciton(std::list::iterator exciton_it); bool siteContainsHole(const KMC_Lattice::Coords& coords); + void exportSteadyTransportTestState(); void updateSteadyData(); void updateSteadyDOS(std::vector>& density_of_states, double state_energy); + void resumeSteadyTransportTest(const std::string state_filename); void updateTransientData(); }; diff --git a/src/Parameters.cpp b/src/Parameters.cpp index 099f99d..c7ee42a 100644 --- a/src/Parameters.cpp +++ b/src/Parameters.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2019 Michael C. Heiber +// Copyright (c) 2017-2020 Michael C. Heiber and contributors // This source file is part of the Excimontec project, which is subject to the MIT License. // For more information, see the LICENSE file that accompanies this software. // The Excimontec project can be found on Github at https://github.com/MikeHeiber/Excimontec @@ -141,6 +141,10 @@ namespace Excimontec { cout << "Error! When running a steady transport test, the bilayer device architecture cannot be used." << endl; return false; } + if (State_saving_interval < 10) { + cout << "Error! Steady transport test state saving interval must not be less than 10." << endl; + return false; + } // Check exciton parameters if (Exciton_generation_rate_donor < 0 || Exciton_generation_rate_acceptor < 0) { cout << "Error! The exciton generation rate of the donor and acceptor must not be negative." << endl; @@ -299,8 +303,8 @@ namespace Excimontec { cout << "Error! When importing site energies from a file, the interfacial energy shift model must not be enabled." << endl; return false; } - if (Enable_import_energies && (int)Energies_import_filename.size() == 0) { - cout << "Error! When importing site energies from a file, a valid filename must be provided." << endl; + if (Enable_import_energies && (int)Energies_import_format.size() == 0) { + cout << "Error! When importing site energies from a file, a valid file naming format must be provided." << endl; return false; } // Check Coulomb interaction parameters @@ -315,17 +319,33 @@ namespace Excimontec { return true; } - bool Parameters::importParameters(ifstream& inputfile) { + bool Parameters::importParameters() { + // open the parameter file + ifstream parameterfile; + parameterfile.open(Parameters_filename, ifstream::in); + if (!parameterfile.good()) { + cout << "Error loading parameter file. Program will now exit." << endl; + return false; + } + // load and parse the lines of the file string line; string var; size_t pos; vector stringvars; bool Error_found = false; - if (!inputfile.is_open() || !inputfile) { + if (!parameterfile.is_open() || !parameterfile) { throw invalid_argument("Error importing parameter file because ifstream cannot read the parameter file."); } - while (inputfile.good()) { - getline(inputfile, line); + // get paramterfile version from first line comment + Version params_version; + if (parameterfile.good()) { + getline(parameterfile, line); + pos = line.find_first_of("v", 0); + params_version = Version(line.substr(pos + 1)); + cout << params_version.getVersionStr(); + } + while (parameterfile.good()) { + getline(parameterfile, line); if ((line.substr(0, 2)).compare("--") != 0 && (line.substr(0, 2)).compare("##") != 0 && line.compare("") != 0) { pos = line.find_first_of("/", 0); var = line.substr(0, pos); @@ -333,6 +353,9 @@ namespace Excimontec { stringvars.push_back(var); } } + // close parameter file + parameterfile.close(); + // Assign the line values to the appropriate variables int i = 0; // KMC Algorithm Parameters try { @@ -591,6 +614,10 @@ namespace Excimontec { i++; N_equilibration_events = atoi(stringvars[i].c_str()); i++; + if (params_version >= Version("1.1.0")) { + State_saving_interval = atoi(stringvars[i].c_str()); + i++; + } // Exciton Parameters Exciton_generation_rate_donor = atof(stringvars[i].c_str()); i++; @@ -801,7 +828,7 @@ namespace Excimontec { i++; Energy_shift_acceptor = atof(stringvars[i].c_str()); i++; - //enable_import_energies + //Enable_import_energies try { Enable_import_energies = str2bool(stringvars[i]); } @@ -811,7 +838,7 @@ namespace Excimontec { Error_found = true; } i++; - Energies_import_filename = stringvars[i]; + Energies_import_format = stringvars[i]; i++; // Coulomb Calculation Parameters Dielectric_donor = atof(stringvars[i].c_str()); @@ -860,4 +887,65 @@ namespace Excimontec { return true; } + bool Parameters::parseCommandLineArguments(int argc, char* argv[]) { + // Count number of command line parameters above the standard two + int accounted_cmd_pars = 2; + // Check command line arguments + if (argc < 2) { + cout << "Error! You must input the parameter file name as a command line argument." << endl; + return false; + } + else { + // Parse parameter file name + Parameters_filename = argv[1]; + // Set default seed + Generator_seed = (int)time(0) * (Proc_ID + 1); + for (int idx = 2; idx < argc; idx++) { + string argument = argv[idx]; + // Check for command line enabled logging + if (argument.compare("-enable_logging") == 0) { + Enable_logging = true; + accounted_cmd_pars += 1; + } + // Check for command line seed setting + else if (argument.compare("-seed") == 0) { + if (argc > idx + 1) { + try { + Generator_seed = stoi(argv[idx + 1]); + } + catch (invalid_argument & exception) { + cout << "Error! Invalid seed given." << endl; + cout << exception.what() << endl; + return false; + } + catch (out_of_range & exception) { + cout << "Error! Input seed out of range." << endl; + cout << exception.what() << endl; + return false; + } + accounted_cmd_pars += 2; + idx++; + } + else { + cout << "Error! No seed argument provided." << endl; + return false; + } + } + else if (argument.compare("-resume_stt") == 0) { + Enable_resume_stt = true; + accounted_cmd_pars++; + } + else { + cout << "Error! invalid command line arguments." << endl; + return false; + } + } + } + // Check for too many command line arguments + if (argc != accounted_cmd_pars) { + cout << "Error! invalid command line arguments." << endl; + return false; + } + return true; + } } diff --git a/src/Parameters.h b/src/Parameters.h index d5a15ce..3cdf1a6 100644 --- a/src/Parameters.h +++ b/src/Parameters.h @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2019 Michael C. Heiber +// Copyright (c) 2017-2020 Michael C. Heiber and contributors // This source file is part of the Excimontec project, which is subject to the MIT License. // For more information, see the LICENSE file that accompanies this software. // The Excimontec project can be found on Github at https://github.com/MikeHeiber/Excimontec @@ -9,6 +9,8 @@ #include "Lattice.h" #include "Parameters_Simulation.h" #include "Utils.h" +#include "Version.h" +#include namespace Excimontec { @@ -148,17 +150,26 @@ namespace Excimontec { //! steady state charge transport test. bool Enable_state_data_output = true; + //! Defines how frequently the simulation will save the state of steady transport test during the equilibration phase. + int State_saving_interval = 10000; + + //! Specifies whether or not to resume the steady transport test from a previously generated state file. + bool Enable_resume_stt = false; + + //! Defines the naming format for the steady transport test equilibration state files. + std::string STT_state_file_format = "STT_equilibration_state"; + // Exciton Parameters ------------------------------------------------------------------------------------ // These parameters define the properties of the excitons used by the various simulation tests. //! Defines the exciton generation rate on the donor sites is units of cm^-3 s^-3. - double Exciton_generation_rate_donor; + double Exciton_generation_rate_donor; //! Defines the exciton generation rate on the acceptor sites is units of cm^-3 s^-3. double Exciton_generation_rate_acceptor; //! Defines the singlet exciton lifetime when on the donor sites in units of seconds. - double Singlet_lifetime_donor; + double Singlet_lifetime_donor; //! Defines the singlet exciton lifetime when on the acceptor sites in units of seconds. double Singlet_lifetime_acceptor; @@ -171,7 +182,7 @@ namespace Excimontec { //! Defines the singlet exciton hopping rate prefactor when on the donor sites in units of s^-1. double R_singlet_hopping_donor; - + //! Defines the singlet exciton hopping rate prefactor when on the acceptor sites in units of s^-1. double R_singlet_hopping_acceptor; @@ -183,13 +194,13 @@ namespace Excimontec { //! Defines the triplet exciton hopping rate prefactor when on the donor sites in units of s^-1. double R_triplet_hopping_donor; - + //! Defines the triplet exciton hopping rate prefactor when on the acceptor sites in units of s^-1. double R_triplet_hopping_acceptor; //! Defines the triplet exciton localization parameter when on the donor sites in units of nm^-1. double Triplet_localization_donor; - + //! Defines the triplet exciton localization parameter when on the acceptor sites in units of nm^-1. double Triplet_localization_acceptor; @@ -228,10 +239,10 @@ namespace Excimontec { //! Defines the intersystem crossing (singlet to triplet) rate constant of excitons on donor sites in units of s^-1. double R_exciton_isc_donor; - + //! Defines the intersystem crossing (singlet to triplet) rate constant of excitons on acceptor sites in units of s^-1. double R_exciton_isc_acceptor; - + //! Defines the reverse intersystem crossing (triplet to singlet) rate constant of excitons on donor sites in units of s^-1. double R_exciton_risc_donor; @@ -240,7 +251,7 @@ namespace Excimontec { //! Defines the potential energy difference between singlet and triplet exciton states on donor sites in units of eV. double E_exciton_ST_donor; - + //! Defines the potential energy difference between singlet and triplet exciton states on acceptor sites in units of eV. double E_exciton_ST_acceptor; @@ -252,7 +263,7 @@ namespace Excimontec { //! Defines the polaron hopping rate prefactor of polarons on donor sites in units of s^-1. double R_polaron_hopping_donor; - + //! Defines the polaron hopping rate prefactor of polarons on acceptor sites in units of s^-1. double R_polaron_hopping_acceptor; @@ -346,8 +357,14 @@ namespace Excimontec { //! Specifies whether or not to import the site energies from a text file. bool Enable_import_energies; - //! The name of site energy text file to be imported. - std::string Energies_import_filename; + //! The naming format of the site energy text files to be imported. + std::string Energies_import_format = "site_energies_#.txt"; + + //! Specifies whether or not to export the site energies from a text file. + bool Enable_export_energies; + + //! The naming format of site energy text files to be exported. + std::string Energies_export_format = "site_energies_#.txt"; // Coulomb Calculation Parameters ------------------------------------------------------------------------------ @@ -360,6 +377,20 @@ namespace Excimontec { //! Defines the cutoff radius for Coulomb interactions in units of nm. int Coulomb_cutoff; + // Additional Parameters --------------------------------------------------------------------------------------- + + //! Defines ID number of the process that will run the simulation. + int Proc_ID = 0; + + //! The name of the current simulation version. + std::string Version_str; + + //! Defines the number used to seed the random number generator in the Simulation class. + int Generator_seed = 0; + + //! The name of the parameter file to import and parse. + std::string Parameters_filename = "parameters_default.txt"; + // Functions --------------------------------------------------------------------------------------------------- //! \brief Checks the validity of the current parameter values. @@ -367,11 +398,17 @@ namespace Excimontec { //! \return false if any of the parameter values are invalid. bool checkParameters() const; - //! \brief Imports the values for all parameters by parsing the input filestream. - //! \param inputfile is an opened input filestream pointing to a valid parameter text file. + //! \brief Imports the values for all parameters by parsing the previously set parameter file. //! \return true if the parameters are successfully imported. //! \return false if there is an error trying to import the parameters. - bool importParameters(std::ifstream& inputfile); + bool importParameters(); + + //! \brief Parses the command line arguments and sets some of the parameters accordingly. + //! \param argc is the number of arguments in the arguments array. + //! \param argv is an array of character pointers that point to each argument. + //! \return true if the command line arguments are successfully parsed. + //! \return false if there is an error during command line parsing. + bool parseCommandLineArguments(int argc, char* argv[]); private: diff --git a/src/main.cpp b/src/main.cpp index 4bf42fe..cc10a1a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,28 +1,27 @@ -// Copyright (c) 2017-2020 Michael C. Heiber +// Copyright (c) 2017-2020 Michael C. Heiber and contributors // This source file is part of the Excimontec project, which is subject to the MIT License. // For more information, see the LICENSE file that accompanies this software. // The Excimontec project can be found on Github at https://github.com/MikeHeiber/Excimontec #include "OSC_Sim.h" #include "Parameters.h" -#include +#include #include +#include #include +#include #include #include -#include -#include using namespace std; using namespace Excimontec; using namespace KMC_Lattice; int main(int argc, char *argv[]) { - string version = "v1.0.0-rc.4"; + string version = "v1.1.0-beta.1"; // Parameters bool End_sim = false; // File declaration - ifstream parameterfile; ofstream logfile; ofstream resultsfile; ofstream analysisfile; @@ -30,7 +29,6 @@ int main(int argc, char *argv[]) { string logfilename; Parameters params; int nproc = 1; - int procid = 0; int elapsedtime; time_t time_start, time_end; bool success; @@ -41,53 +39,31 @@ int main(int argc, char *argv[]) { char error_found = (char)0; // Start timer time_start = time(NULL); - // Check command line arguments - if (argc < 2) { - cout << "Error! You must input the parameter file name as a command line argument." << endl; - return 0; - } - // Check for command line enabled logging - // Set default - params.Enable_logging = false; - if (argc == 3) { - string argument(argv[2]); - if (argument.compare("-enable_logging") == 0) { - params.Enable_logging = true; - } - else { - cout << "Error! Invalid command line argument." << endl; - return 0; - } - } - // Check for too many command line arguments - if (argc > 3) { - cout << "Error! Too many command line arguments." << endl; - return 0; - } - // Import parameters and options from parameter file and command line arguments - cout << "Loading input parameters from file... " << endl; - parameterfile.open(argv[1], ifstream::in); - if (!parameterfile.good()) { - cout << "Error loading parameter file. Program will now exit." << endl; - return 0; - } - success = params.importParameters(parameterfile); - parameterfile.close(); - if (!success) { - cout << "Error importing parameters from parameter file. Program will now exit." << endl; - return 0; - } - cout << "Parameter loading complete!" << endl; // Initialize mpi options cout << "Initializing MPI options... "; MPI_Init(&argc, &argv); MPI_Comm_size(MPI_COMM_WORLD, &nproc); - MPI_Comm_rank(MPI_COMM_WORLD, &procid); - cout << procid << ": MPI initialization complete!" << endl; + MPI_Comm_rank(MPI_COMM_WORLD, ¶ms.Proc_ID); + cout << params.Proc_ID << ": MPI initialization complete!" << endl; // Initialize error monitoring vectors proc_finished.assign(nproc, false); error_status_vec.assign(nproc, false); error_messages.assign(nproc, ""); + // Parse command line arguments + success = params.parseCommandLineArguments(argc, argv); + if (!success) { + return 0; + } + // Import parameters and options from the parameter file + cout << "Loading input parameters from file... " << endl; + success = params.importParameters(); + if (!success) { + cout << "Error importing parameters from parameter file. Program will now exit." << endl; + return 0; + } + cout << "Parameter loading complete!" << endl; + // Set other misc parameters + params.Version_str = version; // Morphology set import handling if (params.Enable_import_morphology_set && params.N_test_morphologies > nproc) { cout << "Error! The number of requested processors cannot be less than the number of morphologies tested." << endl; @@ -101,8 +77,8 @@ int main(int argc, char *argv[]) { } if (params.Enable_import_morphology_set) { int* selected_morphologies = new int[nproc]; - if (procid == 0) { - default_random_engine generator((int)time(0)); + if (params.Proc_ID == 0) { + default_random_engine generator(params.Generator_seed); vector morphology_set_original(params.N_test_morphologies); vector morphology_set; // Select morphologies from the morphology set @@ -132,51 +108,51 @@ int main(int argc, char *argv[]) { int pos = (int)params.Morphology_set_format.find("#"); string prefix = params.Morphology_set_format.substr(0, pos); string suffix = params.Morphology_set_format.substr(pos + 1); - cout << procid << ": Morphology " << selected_morphologies[procid] << " selected." << endl; - params.Morphology_filename = prefix + to_string(selected_morphologies[procid]) + suffix; - cout << procid << ": " << params.Morphology_filename << " selected." << endl; + cout << params.Proc_ID << ": Morphology " << selected_morphologies[params.Proc_ID] << " selected." << endl; + params.Morphology_filename = prefix + to_string(selected_morphologies[params.Proc_ID]) + suffix; + cout << params.Proc_ID << ": " << params.Morphology_filename << " selected." << endl; // Cleanup delete[] selected_morphologies; } // Setup file output - cout << procid << ": Creating output files..." << endl; + cout << params.Proc_ID << ": Creating output files..." << endl; if (params.Enable_logging) { - logfilename = "log" + to_string(procid) + ".txt"; + logfilename = "log" + to_string(params.Proc_ID) + ".txt"; logfile.open(logfilename); } params.Logfile = &logfile; // Initialize Simulation - cout << procid << ": Initializing simulation " << procid << "..." << endl; + cout << params.Proc_ID << ": Initializing simulation " << params.Proc_ID << "..." << endl; OSC_Sim sim; - success = sim.init(params, procid); + success = sim.init(params); if (!success) { - cout << procid << ": Initialization failed, simulation will now terminate." << endl; + cout << params.Proc_ID << ": Initialization failed, simulation will now terminate." << endl; return 0; } - cout << procid << ": Simulation initialization complete" << endl; + cout << params.Proc_ID << ": Simulation initialization complete" << endl; if (params.Enable_exciton_diffusion_test) { - cout << procid << ": Starting exciton diffusion test..." << endl; + cout << params.Proc_ID << ": Starting exciton diffusion test..." << endl; } else if (params.Enable_dynamics_test) { - cout << procid << ": Starting dynamics test..." << endl; + cout << params.Proc_ID << ": Starting dynamics test..." << endl; } else if (params.Enable_ToF_test) { - cout << procid << ": Starting time-of-flight charge transport test..." << endl; + cout << params.Proc_ID << ": Starting time-of-flight charge transport test..." << endl; } else if (params.Enable_IQE_test) { - cout << procid << ": Starting internal quantum efficiency test..." << endl; + cout << params.Proc_ID << ": Starting internal quantum efficiency test..." << endl; } else if (params.Enable_steady_transport_test) { - cout << procid << ": Starting steady state charge transport test..." << endl; + cout << params.Proc_ID << ": Starting steady state charge transport test..." << endl; } // Begin Simulation loop - // Simulation ends for all procs with procid >0 when End_sim is true + // Simulation ends for all procs with params.Proc_ID >0 when End_sim is true // Proc 0 only ends when End_sim is true and all_finished is true - while (!End_sim || (procid == 0 && !all_finished)) { + while (!End_sim || (params.Proc_ID == 0 && !all_finished)) { if (!End_sim) { success = sim.executeNextEvent(); if (!success) { - cout << procid << ": Event execution failed, simulation will now terminate." << endl; + cout << params.Proc_ID << ": Event execution failed, simulation will now terminate." << endl; } End_sim = sim.checkFinished(); } @@ -188,7 +164,7 @@ int main(int argc, char *argv[]) { char msg_length; for (int i = 1; i < nproc; i++) { // Send status messages to proc 0 - if (procid == i) { + if (params.Proc_ID == i) { finished_status = End_sim ? (char)1 : (char)0; error_status = !success ? (char)1 : (char)0; MPI_Send(&error_status, 1, MPI_CHAR, 0, i, MPI_COMM_WORLD); @@ -202,7 +178,7 @@ int main(int argc, char *argv[]) { MPI_Send(&finished_status, 1, MPI_CHAR, 0, i, MPI_COMM_WORLD); } // Receive messages from any processors not previously finished - if (procid == 0 && !proc_finished[i]) { + if (params.Proc_ID == 0 && !proc_finished[i]) { // Receive error status message MPI_Recv(&error_status, 1, MPI_CHAR, i, i, MPI_COMM_WORLD, MPI_STATUS_IGNORE); error_status_vec[i] = (error_status == (char)1) ? true : false; @@ -225,10 +201,10 @@ int main(int argc, char *argv[]) { } // Send error status from proc 0 to all unfinished procs for (int i = 1; i < nproc; i++) { - if (procid == 0) { + if (params.Proc_ID == 0) { MPI_Send(&error_found, 1, MPI_CHAR, i, i, MPI_COMM_WORLD); } - if (procid == i && !proc_finished[i]) { + if (params.Proc_ID == i && !proc_finished[i]) { MPI_Recv(&error_found, 1, MPI_CHAR, 0, i, MPI_COMM_WORLD, MPI_STATUS_IGNORE); } } @@ -240,7 +216,7 @@ int main(int argc, char *argv[]) { break; } // Update completion status - if (procid == 0) { + if (params.Proc_ID == 0) { all_finished = true; for (int i = 0; i < nproc; i++) { if (!proc_finished[i]) { @@ -265,16 +241,16 @@ int main(int argc, char *argv[]) { if (params.Enable_logging) { logfile.close(); } - cout << procid << ": Simulation finished." << endl; + cout << params.Proc_ID << ": Simulation finished." << endl; time_end = time(NULL); elapsedtime = (int)difftime(time_end, time_start); // Output disorder correlation information if correlated disorder is enabled if (params.Enable_correlated_disorder) { auto dos_correlation_data = sim.getDOSCorrelationData(); - outputVectorToFile(dos_correlation_data, "DOS_correlation_data" + to_string(procid) + ".txt"); + outputVectorToFile(dos_correlation_data, "DOS_correlation_data" + to_string(params.Proc_ID) + ".txt"); } // Output result summary for each processor - resultsfile.open("results" + to_string(procid) + ".txt"); + resultsfile.open("results" + to_string(params.Proc_ID) + ".txt"); resultsfile << "Excimontec " << version << " Results:\n"; resultsfile << "Calculation time elapsed is " << (double)elapsedtime / 60 << " minutes.\n"; resultsfile << sim.getTime() << " seconds have been simulated.\n"; @@ -287,9 +263,9 @@ int main(int argc, char *argv[]) { if (params.Enable_exciton_diffusion_test) { resultsfile << "Exciton diffusion test results:\n"; resultsfile << sim.getN_excitons_created() << " excitons have been created.\n"; - resultsfile << "Exciton diffusion length is " << vector_avg(sim.getExcitonDiffusionData()) << " ± " << vector_stdev(sim.getExcitonDiffusionData()) << " nm.\n"; - resultsfile << "Exciton hop distance is " << vector_avg(sim.getExcitonHopLengthData()) << " ± " << vector_stdev(sim.getExcitonHopLengthData()) << " nm.\n"; - resultsfile << "Exciton lifetime is " << vector_avg(sim.getExcitonLifetimeData()) << " ± " << vector_stdev(sim.getExcitonLifetimeData()) << " s.\n"; + resultsfile << "Exciton diffusion length is " << vector_avg(sim.getExcitonDiffusionData()) << " � " << vector_stdev(sim.getExcitonDiffusionData()) << " nm.\n"; + resultsfile << "Exciton hop distance is " << vector_avg(sim.getExcitonHopLengthData()) << " � " << vector_stdev(sim.getExcitonHopLengthData()) << " nm.\n"; + resultsfile << "Exciton lifetime is " << vector_avg(sim.getExcitonLifetimeData()) << " � " << vector_stdev(sim.getExcitonLifetimeData()) << " s.\n"; } else if (params.Enable_ToF_test) { resultsfile << "Time-of-flight charge transport test results:\n"; @@ -299,8 +275,8 @@ int main(int argc, char *argv[]) { else { resultsfile << sim.getN_holes_collected() << " of " << sim.getN_holes_created() << " holes have been collected.\n"; } - resultsfile << "Transit time is " << vector_avg(sim.getTransitTimeData()) << " ± " << vector_stdev(sim.getTransitTimeData()) << " s.\n"; - resultsfile << "Charge carrier mobility is " << vector_avg(sim.calculateMobilityData(sim.getTransitTimeData())) << " ± " << vector_stdev(sim.calculateMobilityData(sim.getTransitTimeData())) << " cm^2 V^-1 s^-1.\n"; + resultsfile << "Transit time is " << vector_avg(sim.getTransitTimeData()) << " � " << vector_stdev(sim.getTransitTimeData()) << " s.\n"; + resultsfile << "Charge carrier mobility is " << vector_avg(sim.calculateMobilityData(sim.getTransitTimeData())) << " � " << vector_stdev(sim.calculateMobilityData(sim.getTransitTimeData())) << " cm^2 V^-1 s^-1.\n"; } if (params.Enable_dynamics_test) { resultsfile << "Dynamics test results:\n"; @@ -347,15 +323,15 @@ int main(int argc, char *argv[]) { // Output charge extraction map data if (success && params.Enable_extraction_map_output && (params.Enable_ToF_test || params.Enable_IQE_test)) { if (params.Enable_ToF_test) { - string filename = "Charge_extraction_map" + to_string(procid) + ".txt"; + string filename = "Charge_extraction_map" + to_string(params.Proc_ID) + ".txt"; vector extraction_data = sim.getChargeExtractionMap(params.ToF_polaron_type); outputVectorToFile(extraction_data, filename); } if (params.Enable_IQE_test) { - string filename = "Electron_extraction_map" + to_string(procid) + ".txt"; + string filename = "Electron_extraction_map" + to_string(params.Proc_ID) + ".txt"; vector extraction_data = sim.getChargeExtractionMap(false); outputVectorToFile(extraction_data, filename); - filename = "Hole_extraction_map" + to_string(procid) + ".txt"; + filename = "Hole_extraction_map" + to_string(params.Proc_ID) + ".txt"; extraction_data = sim.getChargeExtractionMap(true); outputVectorToFile(extraction_data, filename); } @@ -363,7 +339,7 @@ int main(int argc, char *argv[]) { // Output overall analysis results from all processors int elapsedtime_sum; MPI_Reduce(&elapsedtime, &elapsedtime_sum, 1, MPI_INT, MPI_SUM, 0, MPI_COMM_WORLD); - if (procid == 0) { + if (params.Proc_ID == 0) { analysisfile.open("analysis_summary.txt"); analysisfile << "Excimontec " << version << " Results Summary:\n"; analysisfile << "Simulation was performed on " << nproc << " processors.\n"; @@ -384,12 +360,12 @@ int main(int argc, char *argv[]) { exciton_diffusion_data = MPI_gatherVectors(sim.getExcitonDiffusionData()); exciton_hop_length_data = MPI_gatherVectors(sim.getExcitonHopLengthData()); exciton_lifetime_data = MPI_gatherVectors(sim.getExcitonLifetimeData()); - if (procid == 0) { + if (params.Proc_ID == 0) { analysisfile << "Overall exciton diffusion test results:\n"; analysisfile << nproc * (sim.getN_singlet_excitons_recombined() + sim.getN_triplet_excitons_recombined()) << " total excitons tested." << endl; - analysisfile << "Exciton diffusion length is " << vector_avg(exciton_diffusion_data) << " ± " << vector_stdev(exciton_diffusion_data) << " nm.\n"; - analysisfile << "Exciton hop distance is " << sqrt(vector_avg(exciton_hop_length_data))*params.Params_lattice.Unit_size << " ± " << sqrt(vector_stdev(exciton_hop_length_data))*params.Params_lattice.Unit_size << " nm.\n"; - analysisfile << "Exciton lifetime is " << vector_avg(exciton_lifetime_data) << " ± " << vector_stdev(exciton_lifetime_data) << " s.\n"; + analysisfile << "Exciton diffusion length is " << vector_avg(exciton_diffusion_data) << " � " << vector_stdev(exciton_diffusion_data) << " nm.\n"; + analysisfile << "Exciton hop distance is " << sqrt(vector_avg(exciton_hop_length_data))*params.Params_lattice.Unit_size << " � " << sqrt(vector_stdev(exciton_hop_length_data))*params.Params_lattice.Unit_size << " nm.\n"; + analysisfile << "Exciton lifetime is " << vector_avg(exciton_lifetime_data) << " � " << vector_stdev(exciton_lifetime_data) << " s.\n"; } } if (error_found == (char)0 && params.Enable_ToF_test) { @@ -404,7 +380,7 @@ int main(int argc, char *argv[]) { vector energies = MPI_calculateVectorSum(sim.getToFTransientEnergies()); vector velocities = MPI_calculateVectorSum(sim.getToFTransientVelocities()); vector times = sim.getToFTransientTimes(); - if (procid == 0) { + if (params.Proc_ID == 0) { // ToF main results output vector mobility_data_all = sim.calculateMobilityData(transit_times_all); double electric_field = fabs(sim.getInternalField()); @@ -448,8 +424,8 @@ int main(int argc, char *argv[]) { analysisfile << nproc * sim.getN_holes_collected() << " total holes collected out of " << transit_attempts_total << " total attempts.\n"; } - analysisfile << "Transit time is " << vector_avg(transit_times_all) << " ± " << vector_stdev(transit_times_all) << " s.\n"; - analysisfile << "Charge carrier mobility is " << vector_avg(mobility_data_all) << " ± " << vector_stdev(mobility_data_all) << " cm^2 V^-1 s^-1.\n"; + analysisfile << "Transit time is " << vector_avg(transit_times_all) << " � " << vector_stdev(transit_times_all) << " s.\n"; + analysisfile << "Charge carrier mobility is " << vector_avg(mobility_data_all) << " � " << vector_stdev(mobility_data_all) << " cm^2 V^-1 s^-1.\n"; } } if (error_found == (char)0 && params.Enable_dynamics_test) { @@ -467,7 +443,7 @@ int main(int argc, char *argv[]) { vector exciton_msdv = MPI_calculateVectorSum(sim.getDynamicsExcitonMSDV()); vector electron_msdv = MPI_calculateVectorSum(sim.getDynamicsElectronMSDV()); vector hole_msdv = MPI_calculateVectorSum(sim.getDynamicsHoleMSDV()); - if (procid == 0) { + if (params.Proc_ID == 0) { ofstream transientfile; transientfile.open("dynamics_average_transients.txt"); transientfile << "Time (s),Singlet Exciton Density (cm^-3),Triplet Exciton Density (cm^-3),Electron Density (cm^-3),Hole Density (cm^-3)"; @@ -554,16 +530,16 @@ int main(int argc, char *argv[]) { int holes_collected = sim.getN_holes_collected(); int holes_collected_total; MPI_Reduce(&holes_collected, &holes_collected_total, 1, MPI_INT, MPI_SUM, 0, MPI_COMM_WORLD); - if (procid == 0 && params.Enable_dynamics_test) { + if (params.Proc_ID == 0 && params.Enable_dynamics_test) { analysisfile << "Overall dynamics test results:\n"; } - if (procid == 0 && params.Enable_IQE_test) { + if (params.Proc_ID == 0 && params.Enable_IQE_test) { analysisfile << "Overall internal quantum efficiency test results:\n"; } - if (procid == 0 && params.Enable_exciton_diffusion_test) { + if (params.Proc_ID == 0 && params.Enable_exciton_diffusion_test) { analysisfile << "Overall exciton mechanism statistics:\n"; } - if (procid == 0) { + if (params.Proc_ID == 0) { analysisfile << excitons_created_total << " total excitons have been created.\n"; analysisfile << excitons_created_donor_total << " excitons were created on donor sites.\n"; analysisfile << excitons_created_acceptor_total << " excitons were created on acceptor sites.\n"; @@ -581,7 +557,7 @@ int main(int argc, char *argv[]) { analysisfile << 100 * (double)(electrons_collected_total + holes_collected_total) / (2 * (double)excitons_dissociated_total) << "% of total photogenerated charges were extracted.\n"; } } - if (procid == 0 && params.Enable_IQE_test) { + if (params.Proc_ID == 0 && params.Enable_IQE_test) { analysisfile << "IQE = " << 100 * (double)(electrons_collected_total + holes_collected_total) / (2 * (double)excitons_created_total) << "% with an internal potential of " << params.Internal_potential << " V." << endl; } } @@ -599,7 +575,7 @@ int main(int argc, char *argv[]) { auto transport_energies1 = MPI_gatherValues(sim.getSteadyTransportEnergy()); auto transport_energies2 = MPI_gatherValues(sim.getSteadyTransportEnergy_Coulomb()); // Output overall results from all procs - if (procid == 0) { + if (params.Proc_ID == 0) { // Output the DOOS and DOS data ofstream doos_file1("DOOS_data.txt"); doos_file1 << "Energy (eV),Density (cm^-3 eV^-1)\n"; @@ -631,12 +607,12 @@ int main(int argc, char *argv[]) { analysisfile << "Temperature = " << sim.getTemp() << " K.\n"; analysisfile << "Charge carrier density = " << params.Steady_carrier_density << " cm^-3.\n"; analysisfile << "Electric field = " << fabs(sim.getInternalField()) << " V cm^-1.\n\n"; - analysisfile << "Current density = " << vector_avg(current_densities) << " ± " << vector_stdev(current_densities) << " mA cm^-2.\n"; - analysisfile << "Charge carrier mobility = " << vector_avg(mobilities) << " ± " << vector_stdev(mobilities) << " cm^2 V^-1 s^-1.\n"; - analysisfile << "Equilibration energy (without Coulomb potential) = " << vector_avg(equilibration_energies1) << " ± " << vector_stdev(equilibration_energies1) << " eV.\n"; - analysisfile << "Equilibration energy (with Coulomb potential) = " << vector_avg(equilibration_energies2) << " ± " << vector_stdev(equilibration_energies2) << " eV.\n"; - analysisfile << "Transport energy (without Coulomb potential) = " << vector_avg(transport_energies1) << " ± " << vector_stdev(transport_energies1) << " eV.\n"; - analysisfile << "Transport energy (with Coulomb potential) = " << vector_avg(transport_energies2) << " ± " << vector_stdev(transport_energies2) << " eV.\n\n"; + analysisfile << "Current density = " << vector_avg(current_densities) << " � " << vector_stdev(current_densities) << " mA cm^-2.\n"; + analysisfile << "Charge carrier mobility = " << vector_avg(mobilities) << " � " << vector_stdev(mobilities) << " cm^2 V^-1 s^-1.\n"; + analysisfile << "Equilibration energy (without Coulomb potential) = " << vector_avg(equilibration_energies1) << " � " << vector_stdev(equilibration_energies1) << " eV.\n"; + analysisfile << "Equilibration energy (with Coulomb potential) = " << vector_avg(equilibration_energies2) << " � " << vector_stdev(equilibration_energies2) << " eV.\n"; + analysisfile << "Transport energy (without Coulomb potential) = " << vector_avg(transport_energies1) << " � " << vector_stdev(transport_energies1) << " eV.\n"; + analysisfile << "Transport energy (with Coulomb potential) = " << vector_avg(transport_energies2) << " � " << vector_stdev(transport_energies2) << " eV.\n\n"; analysisfile << "CSV formatted results:\n"; analysisfile << "Temperature (K),Charge Carrier Density (cm^-3),Electric Field (V cm^-1),"; analysisfile << "Current Density Avg. (mA cm^-2),Current Density Stdev. (mA cm^-2),Mobility Avg. (cm^2 V^-1 cm^-1),Mobility Stdev. (cm^2 V^-1 cm^-1),"; @@ -648,7 +624,7 @@ int main(int argc, char *argv[]) { analysisfile << vector_avg(transport_energies1) << "," << vector_stdev(transport_energies1) << "," << vector_avg(transport_energies2) << "," << vector_stdev(transport_energies2) << endl; } } - if (procid == 0) { + if (params.Proc_ID == 0) { analysisfile.close(); } MPI_Barrier(MPI_COMM_WORLD); diff --git a/test/energies_missing_data.txt b/test/energies_missing_data.txt deleted file mode 100644 index e98aa14..0000000 --- a/test/energies_missing_data.txt +++ /dev/null @@ -1,26951 +0,0 @@ -30 -30 -30 -0.057312 --0.0180091 -0.117126 --0.0151423 -0.0446996 -0.00662323 --0.0242292 --0.061973 --0.0412295 -0.0515144 --0.0181647 -0.0246093 -0.0848719 --0.0250809 -0.032719 -0.00825783 -0.0033168 --0.0515549 --0.0522978 --0.0230888 -0.0570586 --0.0147485 --0.0750861 -0.026216 --0.0450335 --0.0497685 -0.0520554 -0.0976396 --0.0224044 -0.0879578 -0.0422316 --0.0183117 --0.0260052 --0.0211067 -0.0334565 --0.0670063 -0.0361228 --0.0435529 --0.0606017 -0.00703022 -0.00286057 -0.134304 --0.00202847 -0.0255919 --0.00269161 --0.00549607 -0.0322925 -0.110516 -0.0168571 --0.103557 -0.0740116 --0.0713564 --0.144603 -0.0224168 --0.115349 --0.00684859 -0.0801709 -0.0104723 --0.00188117 --0.0706797 --0.100856 -0.0279019 --0.0306559 -0.134469 -0.024266 -0.0150065 -0.0544051 --0.00910293 -0.026228 -0.00427096 --0.0139876 -0.00941329 --0.0962699 --0.00127273 -0.00656044 -0.0153704 -0.0380347 -0.0687408 -0.012872 -0.0363604 --0.0350818 --0.0246688 -0.0472708 --0.0343659 -0.00351563 -0.0655163 --0.036697 --0.0346217 -0.0202581 --0.00133536 --0.00410437 --0.0119323 -0.0302696 -0.0188541 --0.0460235 --0.0808116 -0.0310588 -0.112092 -0.0373349 --0.0102428 -0.031298 -0.0364229 -0.0100644 -0.0546984 --0.0445048 -0.0262742 --0.0875192 --0.0310426 -0.118986 -0.070811 -0.0272355 -0.0670444 -0.0325373 -0.0609531 -0.0558104 --0.072597 --0.0280072 --0.0239 -0.03846 --0.0111382 -0.00798039 -0.0179202 --0.128985 -0.0106995 -0.0292859 -0.0287638 -0.0723743 --0.0252697 --0.0612659 --0.0626469 -0.0177292 --0.0216514 --0.0635854 --0.0392152 -0.0364605 --0.0878812 --0.1099 -0.0273616 --0.0246015 --0.0549717 -0.00143716 -0.0449641 --0.000938776 -0.0354448 --0.00285385 -0.0764054 --0.0158451 -0.0101444 -0.0158253 --0.0345056 -0.0213088 --0.0316636 --0.00267209 -0.00560842 --0.0136518 --0.0346598 --0.0415089 --0.0577115 -0.0351439 -0.0568328 --0.0304328 --0.0394946 --0.0592326 --0.0230289 --0.0468417 -0.0215764 -0.0479623 -0.0103009 --0.0148725 --0.0431197 -0.124396 -0.050788 --0.0737177 --0.0748923 -0.057414 --0.0218766 -0.0511078 -0.0212416 --0.107736 --0.0804682 --0.0234674 -0.0239783 -0.0369111 -0.0217391 -0.00480653 --0.00306915 -0.0196276 -0.0491403 -0.0348147 -0.0219681 --0.0481094 -0.00673192 -0.0267093 --0.14759 -0.0412054 --0.00609256 --0.0178759 --0.0980539 --0.0054079 --0.0358975 -0.0845628 --0.0168046 --0.0363894 --0.00607446 -0.0519952 -0.0255141 --0.0752514 --0.12057 -0.0388646 --0.0313669 -0.0399909 -0.0856311 -0.0234747 -0.0358762 -0.0326557 -0.0446998 --0.0222283 -0.0241487 -0.0498218 -0.0275058 --0.067954 -0.050546 -0.0668633 --0.0281753 --0.0116999 -0.003175 --0.0938604 -0.0137827 -0.104784 --0.00221658 -0.027158 -0.000186824 --0.0476551 --0.0810753 -0.0339732 --0.0706504 --0.058123 --0.0188416 -0.0132938 --0.00049426 --0.0956247 -0.030849 --0.0411936 -0.0806831 -0.0441067 -0.0297435 --0.0287092 --0.104163 --0.00521258 --0.0021925 -0.0582449 -0.0427432 -0.032445 --0.0163053 -0.0457383 -0.0510315 -0.0295363 -0.00495594 -0.0563141 --0.0430318 --0.0710721 --0.0174386 -0.0355524 -0.00757032 -0.0370404 --0.011508 --0.018412 --0.00545593 -0.030685 --0.0408334 -0.0367333 --0.0498769 --0.0534089 --0.014726 --0.0301866 -0.0656077 --0.137157 -0.0704891 -0.0230547 -0.0785067 -0.0797534 -0.000159856 --0.0479258 --0.086601 -0.0116875 --0.0171676 -0.088184 -0.0363266 --0.0398442 -0.0497888 --0.0713828 -0.0151341 --0.00620092 --0.00766389 -0.0416875 --0.0150041 --0.0175595 -0.0950308 --0.0208116 -0.00874232 --0.0320298 -0.112517 -0.0299799 --0.0333762 --0.0236949 -0.0433567 --0.0567226 --0.0491892 --0.0323361 --0.00126065 --0.0357083 -0.0579088 --0.0612785 -0.0335077 --0.0147291 --0.0561009 --0.109011 --0.0371523 --0.0352473 -0.0671868 --0.0529559 -0.054803 --0.0533908 --0.00506195 -0.0494594 --0.0114208 --0.0240579 -0.0522038 --0.00551144 -0.000566421 -0.0190744 -0.0176934 --0.00847065 --0.0899255 -0.0358964 --0.00923809 --0.0939659 -0.0251487 --0.0449234 -0.107663 -0.0563524 --0.00684106 --0.00652984 -0.018698 --0.0116574 --0.0329916 -0.101893 --0.0105698 -0.0130979 --0.0690334 -0.0165363 --0.0799316 --0.0506603 -0.0217548 --0.0771469 --0.0721217 --0.0170876 -0.0523118 --0.0476928 -0.0511935 --0.00537641 -0.0556817 --0.0433543 --0.047591 -0.0306336 -0.0339324 -0.00359305 -0.0517035 -0.0107903 -0.100934 --0.000689031 --0.0126249 --0.0163449 -0.108918 -0.00264713 -0.0753448 --0.0400515 -0.00474827 --0.0033369 --0.108544 --0.099045 -0.017586 -0.0331886 --0.0191247 --0.0883805 -0.0169444 --0.0136152 --0.0161712 -0.00230542 -0.043326 --0.00426332 --0.0404782 -0.0124267 -0.0337924 --0.0176871 --0.0755349 -0.0332334 -0.00582624 -0.0485881 -0.0132068 -0.0683532 -0.0389367 -0.00297262 -0.0458018 --0.118238 -0.0513869 -0.0229445 -0.0766255 -0.0854641 -0.0475655 --0.000871688 -0.0486395 -0.0845552 --0.0195395 --0.0582332 --0.00324118 --0.0341277 -0.0890039 -0.0303298 -0.0791043 --0.0814651 -0.00931673 --0.017549 -0.0105482 -0.00995059 -0.0312942 -0.00414318 --0.0184713 -0.0514252 --0.0378693 --0.0462113 --0.0228311 --0.0237844 --0.00965414 --0.036855 --0.011692 -0.0138472 --0.011148 -0.00872011 -0.0542577 --0.0937057 -0.0401512 --0.0181686 --0.0526394 --0.0532819 --0.0500185 -0.0103428 --0.0134959 --0.00355868 --0.0108491 -0.0654506 -0.00118572 --0.0142436 --0.036743 --0.109576 -0.0353489 --0.035055 -0.0422899 --0.0243856 -0.0383666 --0.00594658 -0.033907 -0.0219067 --0.0574439 --0.0522442 --0.0318965 -0.0528587 -0.00921342 -0.0225927 -0.0309255 --0.0371997 -0.0194936 --0.0693847 --0.0169131 --0.0158145 -0.0116853 --0.0162904 --0.0305064 -0.0203308 --0.0210279 --0.0268521 --0.0297152 -0.0140648 --0.0336041 --0.0400495 -0.0178674 -0.0663354 --0.0640586 --0.0123205 -0.00499657 --0.0118408 -0.0293121 --0.0830836 -0.0108871 --0.0225523 -0.0599629 -0.0254025 --0.0608245 -0.033104 --0.00830891 -0.0399999 --0.0913732 --0.0431595 -0.0152059 --0.114812 -0.107574 --0.0645686 --0.0254559 --0.0683296 --0.0574612 --0.0211542 -0.0409796 --0.0427392 -0.078155 -0.000530655 -0.00905785 -0.100133 --0.0674099 --0.0865374 --0.031568 -0.0149109 --0.0244864 -0.039382 --0.00535557 -0.13015 --0.0201789 --0.0592228 -0.00485171 --0.0190597 -0.0139106 --0.0512991 -0.0260171 --0.0534325 -0.00612229 -0.0172686 -0.0409247 --0.136056 --0.00396504 --0.055011 --0.0161666 --0.00128684 --0.074486 --0.0128912 -0.0175768 --0.0298114 -0.0929244 --0.0169275 -0.0270999 -0.0166902 -0.10017 --0.0254456 -0.0756269 -0.0340717 --0.0426125 -0.0131301 --0.0454821 -0.0434918 --0.0167738 -0.00720756 --0.0732456 -0.176666 -0.11344 -0.0822589 -0.0246033 --0.0495199 -0.0433807 --0.0626546 --0.0169422 --0.012137 --0.0529774 --0.0327731 -0.0735774 --0.0776482 -0.0330139 -0.0646434 -0.086031 -0.0256474 --0.0877501 --0.00193148 --0.0273116 --0.00444162 --0.0315537 --0.0103882 -0.0509727 -0.0301982 -0.0725242 --0.00486936 --0.048548 --0.0483497 --0.0152406 --0.0274753 --0.0651148 -0.0524905 --0.0486924 --0.0293263 -0.00784585 --0.0619322 -0.00878343 -0.0565511 --0.018688 -0.0365869 --0.0160295 --0.101998 --0.0512455 --0.0639755 --0.0295721 --0.0484118 --8.10176e-05 -0.0728519 -0.00893463 -0.0210568 --0.0829582 --0.000653867 -0.0872807 -0.0250615 --0.065867 -0.0244047 -0.0323926 -0.0627427 -0.00223812 -0.0306591 --0.0810905 -0.000875676 -0.0754067 --0.0275729 -0.0349838 --0.0188508 --0.0122608 --0.0153236 -0.106542 --0.00298782 -0.0912965 -0.117247 --0.0350692 -0.0364022 --0.0397197 --0.0751481 -0.030992 --0.0895261 --0.0162347 --0.00855308 -0.00432553 -0.0706654 -0.0137814 --0.0601039 -0.0293948 -0.00252111 --0.0126963 -0.00945787 -0.0278767 -0.0362721 -0.0532605 --0.0470446 -0.0262362 -0.0187899 --0.00578905 --0.00896394 -0.0031643 --0.031403 -0.0715505 -0.000418648 --0.00203215 --0.0501922 --0.0626643 --0.00771904 -0.0704528 -0.0312255 -0.0183472 --0.00394311 -0.0710777 -0.0415632 -0.00831271 -0.0133672 --0.00674838 --0.0720237 --0.0302772 -0.0415742 --0.0105835 -0.0550366 -0.0361412 -0.0400411 -0.0735218 --0.00995681 -0.00310443 --0.0129949 --0.0283473 -0.0342393 -0.00876783 --0.0332342 -0.000456335 --0.0797514 --0.0862606 --0.0258245 -0.0308313 -0.036117 --0.0429367 --0.00480292 -0.00875149 --0.00410896 --0.0349268 --0.0491596 -0.0320619 -0.0812149 -0.00339805 --0.116992 -0.015287 --0.123688 -0.0060946 -0.00439938 --0.0483882 --0.0359919 --0.0104474 --0.124052 --0.0304121 --0.0361125 --0.0371059 -0.00127786 -0.00900468 -0.0734184 -0.0538047 --0.0579423 -0.00999966 -0.0842834 -0.0211578 --0.0394338 -0.0463932 -0.0275512 -0.136415 --0.0114801 --0.0242055 --0.027716 -0.0407213 --0.0269746 --0.0382461 --0.0216518 -0.0575415 --0.0212096 --0.0263388 -0.0737194 --0.0805715 -0.0239732 -0.0113193 --0.0382041 --0.00848397 -0.00421294 --0.0531676 --0.0237574 --0.0310292 -0.00990805 -0.0968604 --0.00579088 -0.0996253 -0.0424533 --0.133169 --0.0100535 -0.0487158 --0.0245448 --0.0162917 --0.0164555 --0.0348698 -0.0117864 -0.0517276 -0.030752 -0.0460387 -0.0126396 --0.11842 --0.063258 -0.0101301 --0.0928154 -0.0276784 --0.0201262 --0.0269232 -0.00440432 -0.0994262 --0.00526141 --0.0141071 -0.0109622 -0.0447297 -0.0245941 -0.0333794 -0.0218839 -0.0733158 -0.00606466 -0.0021081 --0.0737226 --0.0345829 -0.0164784 --0.0785822 -0.0578673 -0.0626709 -0.0886445 --0.0314897 -0.0379565 -0.000918703 -0.00182757 --0.00928136 --0.00296388 --0.0576952 -0.0567959 --0.0472562 --0.0308433 --0.0740993 -0.0433313 --0.0138478 -0.0814094 --0.0379088 --0.0234786 --0.0489299 --0.0211154 --0.0662742 -0.00397578 --0.0356576 --0.0114631 -0.0176631 -0.061823 --0.0291237 --0.0194032 --0.0168758 -0.150542 -0.0239572 --0.0595919 -0.0487552 --0.0653994 -0.0697174 -0.0410574 --0.0294576 --0.0367523 --0.010055 -0.0278672 --0.0749002 --0.13918 --0.0390895 --0.0657384 -0.102744 -0.0506849 -0.0169909 -0.0666828 --0.00651389 -0.0432649 --0.0679476 -0.0317009 --0.0229717 --0.0373829 -0.000461347 -0.0197436 --0.0817565 --0.0512504 -0.0417091 -0.0364173 -0.0483391 -0.0460576 -0.0323557 -0.0100054 --0.125625 -0.0125916 -0.0973543 -0.0210599 --0.0681311 -0.039177 -0.00600129 -0.0694246 --0.0615256 --0.0622721 --0.053778 --0.126189 -0.0688255 -0.0866397 --0.0509379 --0.0554828 -0.0764604 -0.0889148 -0.0404121 --0.0739584 --0.00553475 -0.0151495 -0.0374199 -0.0535118 --0.0398661 -0.0484343 --0.0402496 --0.0141245 -0.026733 -0.0190819 --0.0499736 -0.0307454 --0.062608 --0.0495442 -0.0586214 -0.0178168 -0.0136639 --0.0474722 --0.00292084 --0.0323333 -0.08095 --0.0285247 -0.032024 --0.0661616 --0.0239961 -0.00053988 --0.000311742 --0.0236595 -0.0312913 -0.013682 --0.0440841 --0.0963884 --0.019821 -0.0324951 -0.0717487 --0.0103562 --0.00237923 --0.021622 -0.0683229 -0.00559073 -0.0123898 -0.0181455 --0.0110554 --0.0485803 --0.0546186 -0.0753796 -0.0371108 --0.00836091 --0.0517753 --0.0264704 --0.0707627 -0.00484414 --0.168102 --0.0230803 -0.0831571 --0.00599728 --0.0106796 --0.0165397 -0.0491761 -0.0313174 --0.00984378 --0.12453 --0.0240151 --0.0875485 -0.0276417 -0.045802 -0.0577389 -0.00909778 --0.00340933 -0.0370508 --0.0573397 -0.114639 --0.0594927 -0.00480313 -0.0433087 -0.0347686 --0.0170427 --0.0564256 -0.0425665 --0.0300106 --0.0181432 --0.00651065 --0.0354174 -0.0508464 -0.018711 -0.0654419 --0.0954293 --0.0176934 -0.0919089 --0.0436615 --0.00317416 --0.0658618 --0.028968 --0.0887808 --0.0432154 -0.0211302 --0.0244027 -0.0397147 --0.0166538 --0.0334165 --0.0728926 --0.0182748 --0.0507463 --0.0105603 --0.0241478 --0.00757648 -0.0205371 --0.00781067 --0.108523 --0.0278891 -0.00585791 -0.109537 --0.0868394 --0.0383521 --0.0472573 -0.0904804 -0.0648231 -0.0686351 --0.0420609 --0.0359284 --0.0880115 -0.0390079 --0.0521189 -0.121618 --0.12784 --0.0232516 --0.0293747 -0.0103313 --0.0122209 --0.0509269 -0.0300923 --0.0402631 -0.0069758 --0.00829246 --0.0675857 --0.0704106 --0.0295082 --0.00704854 -0.00719801 -0.0142568 --0.0419585 -0.0396344 -0.0257898 -0.0618611 --0.0326476 -0.0108971 --0.0449736 -0.00715288 -0.0626625 --0.0748179 --0.0144087 -0.116982 -0.169526 --0.0230586 -0.0398943 --0.0132717 --0.00727056 -0.0106161 -0.0929748 -0.00595346 --0.0765408 --0.0187015 --0.0045902 --0.0468841 --0.0328693 -0.115646 --0.0695557 -0.0390348 --0.0612541 -0.0198401 -0.00999747 -0.0543206 --0.00478236 -0.0308963 -0.0048764 --0.00424085 -0.0226371 --0.0938846 -0.0190406 -0.0231598 --0.027572 -0.00601491 --0.0146888 -0.0257939 -0.0491861 --0.0102947 -0.048784 -0.00539415 --0.0769831 --0.0265447 -0.0747471 --0.139694 -0.0539122 -0.0420279 -0.0500398 -0.0480328 -0.05689 --0.0720242 -0.00610964 -0.00619409 -0.0556372 --0.0106081 -0.0745705 --0.0605052 --0.0605502 --0.0520455 --0.0511042 --0.0270503 --0.0860654 -0.0259898 -0.0087095 --0.0173826 -0.0188454 -0.025692 --0.0248551 --0.0174404 --0.00111128 -0.0452337 --0.0230688 -0.0135539 --0.0291479 -0.0145137 --0.00172887 --0.0365557 -0.0428527 --0.0873892 -0.0636353 -0.0111876 -0.0148778 --0.0212811 --0.0522247 -0.0188848 -0.050412 -0.0410302 --0.016147 -0.0991374 -0.111782 -0.0259609 -0.069063 -0.0326909 -0.0107307 -0.00795429 --0.0197331 -0.0519998 --0.0527466 --0.038647 --0.0339125 --0.0250723 --0.00684581 -0.0122571 -0.017551 --0.0142178 --0.0692795 --0.0530514 -0.00299294 --0.0548662 --0.0718623 -0.0205775 --0.0930789 -0.0312391 --0.00578388 -0.0540301 --0.0479335 --0.0664082 --0.0235154 --0.0677143 --0.0118039 -0.0252834 --0.0382779 -0.020159 --0.0874742 -0.0232086 --0.00703875 -0.0292776 -0.055119 -0.0319234 -0.0299921 --0.0269493 -0.0325426 --0.140001 --0.0125917 -0.0816204 -0.090867 -0.107778 --0.0768016 --0.0302221 -0.0825788 -0.0786419 --0.000987282 -0.0739908 -0.0114724 -0.0184133 -0.0385497 -0.0991273 -0.00228807 --0.102954 --0.0267818 --0.029572 --0.0947422 --0.0228781 -0.0139503 -0.0298876 --0.00860946 --0.00815995 -0.100994 --0.0413704 --0.00961616 --0.0176303 --0.0510314 -0.0380946 --0.0127398 --0.00115974 --0.00343231 --0.0341758 -0.0244103 -0.0157253 --0.0159728 --0.117339 --0.0220347 --0.0124224 --0.0184627 --0.0437998 -0.0828765 --0.0397875 -0.0168861 --0.046429 --0.00486174 -0.0147167 -0.0267443 -0.0463401 -0.0542968 --0.0102647 -0.00543345 --0.0550344 -0.00688442 -0.0520809 -0.0373445 --0.0393251 --0.0518682 --0.0600102 --0.0267018 --0.000960198 -0.0697365 -0.0482901 --0.0577142 -0.0108452 -0.0527653 --0.0118763 --0.07657 -0.00372756 -0.0112365 --0.0743186 --0.022697 --0.180495 --0.0179139 --0.0401249 -0.00310746 --0.0591562 -0.0604341 -0.042756 -0.041664 --0.0257769 --0.049474 --0.0062609 -0.0165991 --0.0629173 --0.045437 -0.000817151 -0.0703575 --0.0309424 -0.0608772 -0.0202578 --0.0919719 --0.0181653 -0.0416724 -0.0884565 -0.0932045 --0.0491721 --0.0779327 --0.0492453 --0.0880957 -0.110134 -0.0146802 -0.0737094 --0.0843016 -0.0521629 -0.0229557 -0.0174626 -0.0363299 --0.0858385 -0.0274968 -0.103363 --0.0153747 --0.00355752 --0.01016 --0.0557633 --0.00039904 --0.0280463 -0.0152841 --0.0840365 --0.0204045 -0.0234327 --0.0164855 --0.0960661 -0.0409359 --0.0494191 -0.0609321 -0.0432746 --0.00933715 -0.0282997 --0.0269742 -0.0301578 -0.15836 -0.0375643 --0.00866343 -0.0545204 --0.0465181 --0.0908901 -0.0385915 --0.0299671 --0.00744755 --0.0307943 --0.0189873 -0.0774755 --0.06971 --0.0437315 -0.0322671 -0.0480685 --0.0581697 --0.000995907 -0.0955022 -0.0359584 --0.0689132 -0.00346993 --0.0560508 --0.0476859 -0.0265172 --0.0531729 --0.0237352 -0.0677862 -0.0554518 --0.0186259 --0.0227288 -0.0536532 --0.0286803 -0.043311 --0.0336676 --0.019736 --0.0112367 -0.00261729 -0.0681916 -0.0211655 -0.0126865 --0.0139991 --0.0513157 --0.108313 -0.0160165 --0.00429078 -0.0680811 -0.0312591 -0.0428282 -0.0313547 --0.0995978 --0.119048 -0.0577864 --0.016422 -0.00550279 -0.057995 --0.0714404 -0.0825217 --0.00860249 -0.0763362 -0.104091 --0.0459652 -0.0162874 -0.062495 --0.040655 -0.0235642 -0.0244613 -0.101214 -3.49761e-06 -0.0581756 --0.00580707 --0.0666581 --0.00327255 --0.0200188 --0.003494 --0.00866481 --0.0320476 -0.00216219 -0.0206755 -0.00594975 --0.00757634 -0.0386501 --0.0304075 --0.11887 --0.0250131 -0.0236734 --0.0282043 --0.040437 --0.0890501 --0.102919 --0.028277 --0.0608368 --0.021288 --0.125932 -0.000775441 --0.0493882 --0.0150684 --0.079438 -0.064948 -0.00951296 -0.0357952 -0.0559721 --0.107586 --0.0211707 --0.0111487 -0.033858 --0.0191464 --0.00935871 -0.0117812 --0.0203202 --0.00283685 --0.0305018 --0.0943797 -0.0419739 --0.0363971 -0.0433166 -0.0384531 --0.0222643 -0.0365936 -0.03026 --0.0154801 --0.0514547 -0.0422223 -0.139989 --0.00158128 -0.13421 -0.00258245 -0.0238063 -0.061399 --0.0103759 -0.041856 -0.00172355 -0.0272426 -0.0188128 --0.0294872 --0.00745226 --0.137608 --0.0554446 --0.00701622 --0.105783 --0.0253129 --0.0212576 -0.0129159 -0.0129688 -0.0361729 -0.0212668 -0.0282491 --0.0916097 -0.0186799 --0.0477537 --0.000746745 --0.0167945 --0.0159996 --0.0131416 -0.0735302 --0.0374139 -0.01564 -0.0760902 -0.0560913 --0.0168907 --0.047456 -0.0489318 -0.0483093 --0.0228779 --0.0364995 --0.00840871 --0.060877 -0.0119046 --0.064213 -0.0186821 --0.00486365 -0.0457585 -0.016903 -0.0113254 --0.0330514 -0.0954248 -0.00183872 --0.0527253 -0.101908 -0.0162794 -0.0462397 --0.0249353 --0.0531544 -0.0138595 -0.0570421 --0.0188045 -0.0156188 -0.0470614 -0.0544872 --0.00223942 --0.0743863 -0.0504351 -0.071401 -0.0455287 --0.0960784 -0.0811592 --0.0566724 -0.00505807 --0.0349213 -0.00294724 -0.0226531 --0.0278685 --0.0505575 --0.0292898 -0.010509 --0.00805785 --0.0664833 --0.0323559 --0.0364487 --0.0445682 --0.0372404 -0.00740151 -0.105343 --0.0485267 -0.0287049 -0.0545656 -0.0192561 -0.0222744 --0.0166531 --0.011336 --0.0232833 -0.0364384 -0.0668279 --0.0448273 -0.0930648 --0.0328572 -0.053937 -0.0248342 --0.040152 -0.0581853 -0.0776517 --0.0544431 --0.0623781 -0.00899188 -0.0320839 --0.0700729 -0.0194675 --0.0413684 -0.0291336 -0.0394059 -0.00525179 --0.108176 -0.00906513 -0.0581868 -0.0425081 -0.0157437 -0.0453076 -0.0154849 --0.0467498 -0.0480221 --0.00313799 -0.00418631 -0.0647279 --0.013788 --0.068069 --0.033622 --0.045377 -0.0100611 -0.0226647 -0.0680782 --0.0660765 --0.0159892 -0.0389891 --0.0113831 --0.0321982 --0.0889044 -0.0295804 --0.0632579 --0.00299077 --0.00775467 --0.0983093 -0.0648526 --0.00212077 --0.0156415 -0.0344076 --0.058147 --0.0295149 --0.0542967 -0.027461 -0.0618879 -0.0199462 -0.0278257 --0.000397546 --0.0587496 -0.0572175 -0.0406638 -0.0723026 --0.00541511 --0.00628739 --0.0617425 -0.0157407 -0.026491 -0.060939 --0.00634953 -0.0316052 --0.0163823 -0.0382047 --0.0128676 -0.091104 --0.0302222 --0.0801239 --0.0158835 --0.0534638 -0.0669638 -0.00582047 --0.0108642 -0.0304559 --0.0137062 --0.048674 --0.0351953 -0.00546537 -0.0266047 --0.0408896 -0.00961687 --0.0629836 --0.0234768 --0.0529453 -0.0531778 --0.0341539 -0.0261624 --0.0976671 -0.0278047 -0.0400903 --0.0180132 --0.0148096 -0.0809057 -0.0280536 -0.0125604 -0.00537806 -0.033943 -0.00985206 --0.0473585 --0.0482004 --0.0944622 -0.00163601 --0.054499 -0.0712818 -0.0241528 --0.00674741 -0.0599357 -0.0551558 -0.00508733 -0.00416907 --0.00488328 --0.0828257 --0.0405775 -0.00530695 -0.0165062 --0.031002 --0.0220739 --0.0977757 --0.0061985 -0.0134205 --0.0400121 --0.080234 --0.0180974 --0.157161 --0.0404881 -0.0597654 --0.0528541 --0.0807632 -0.0314672 --0.0750229 --0.0679242 --0.0210542 -0.0225396 -0.0681174 --0.0888354 --0.00800006 --0.024458 -0.0168324 --0.0304054 -0.0851629 -0.0980434 -0.0282401 --0.0730447 -0.00642408 -0.0434555 --0.095692 -0.019439 -0.0263532 --0.0217787 -0.0170518 --0.00163942 -0.0353232 -0.0387569 -0.00968297 --0.0049489 -0.0236129 --0.110415 -0.0135929 --0.0106874 --0.0161352 --0.0475247 --0.0288756 -0.0778876 -0.0156476 --0.0230152 -0.0539646 --0.0517804 -0.0386011 -0.000801723 -0.00118111 --0.0420627 --0.0629809 -0.0208727 -0.0451637 -0.0837696 --0.0611876 --0.0143457 --0.0524181 --0.0033114 --0.0246119 -0.143898 --0.0286353 --0.0546981 -0.0885604 -0.0561044 -0.00333736 -0.0160782 --0.0290882 --0.0486491 -0.0191738 --0.0576589 -0.0523428 -0.0549754 --0.0265236 -0.0347006 --0.0107694 --0.0549225 -0.0883097 --0.0142982 --0.0895588 --0.0111439 --0.0481698 --0.0155642 -0.0613868 --0.015091 --0.0583171 -0.000610036 --0.10114 --0.000412612 -0.00659743 --0.00760573 -0.0582459 -0.0120687 --0.104889 --0.0891941 -0.00522005 -0.00457641 -0.040877 --0.0529577 --0.00587124 -0.075493 -0.00419631 -0.00666881 -0.0503815 -0.0313585 --0.00391115 --0.0322299 --0.0852408 -0.0773211 -0.029528 -0.0245523 -0.0081733 --0.0325742 -0.0117921 -0.0407824 --0.00025945 -0.0445202 -0.00719552 -0.035156 --0.0107841 -0.00869308 -0.0420256 -0.0588297 -0.00938035 --0.153553 -0.0346145 --0.0705262 --0.0377164 -0.027317 -0.0155155 -0.105021 -0.0929983 --0.0310588 -0.0132389 --0.00289596 --0.0477715 --0.0240047 --0.047133 -0.0474284 -0.0310582 -0.0653851 --0.018941 -0.0358102 -0.0148694 --0.0395905 --0.0432933 -0.0271986 -0.0624765 --0.0379201 -0.0511127 --0.0435644 -0.0306223 -0.0524283 -0.00290202 -0.00833474 -0.0257306 --0.141366 --0.0341222 -0.0212877 --0.0212693 --0.00224098 -0.00285212 --0.0173012 -0.00363253 --0.0446147 --0.0662786 --0.030783 -0.0659672 -0.0352868 -0.048496 -0.0389534 -0.0412505 -0.0425276 -0.0359669 -0.0486581 --0.0781937 -0.0239578 -0.026307 -0.0599495 -0.0214989 -0.0944006 --0.0777047 --0.0256389 -0.0256198 --0.0596346 --0.0215797 --0.0497575 -0.0221655 -0.0324881 --0.0117818 -0.037262 -0.0349498 -0.026768 --0.0724242 -0.0603441 -0.0505302 --0.0926192 -0.024078 -0.026764 -0.0511092 --0.00249767 -0.00549904 --0.0520094 -0.0980594 --0.0523108 --0.0208284 -0.0165162 -0.0164396 -0.083701 --0.0533018 -0.0581046 --0.00326566 -0.0263939 -0.0281585 --0.0779127 -0.032886 -0.0344879 -0.0320111 -0.0293417 --0.029343 -0.00436257 -0.00286594 --0.0434886 --0.0588907 -0.0160718 -0.0326261 --0.00158162 --0.0392206 --0.0304139 --0.0210439 --0.102764 -0.0308101 -0.00514671 --0.0118458 --0.0287297 -5.78666e-05 -0.0227635 --0.0158095 -0.055439 --0.00291233 -0.0614811 -0.0392284 --0.0415359 -0.0198881 --0.0562737 -0.0353156 -0.012944 --0.0112764 --0.0221105 -0.0237713 -0.0214872 --0.0225386 --0.000471481 -0.0447612 -0.00759804 --0.0181023 --0.0149648 --0.000731674 --0.0162885 --0.00070934 --0.00599792 -0.0203208 -0.029207 -0.00838845 --0.0679078 -0.0218394 --0.00322322 -0.00771666 -0.077108 -0.0730406 -0.0155082 --0.0318544 --0.000984547 --0.00775014 -0.0309504 --0.00556894 --0.0331421 --0.0160866 -0.0634734 -0.0125864 --0.0340042 --0.0244552 --0.0318392 --0.0532131 -0.0254966 -0.0143363 -0.0453328 -0.0308611 -0.051063 --0.0205794 --0.00568485 -0.0587283 -0.0149038 -0.055922 --0.0048781 -0.0476567 --0.0458745 -0.0853551 -0.0854753 -0.0238667 --0.0321833 -0.0368716 --0.0446721 -0.0285306 --0.0553607 --0.00881158 --0.0197942 --0.0379262 -0.0551781 --0.0558834 --0.124869 -0.0272756 --0.0616918 -0.073802 --0.00261749 -0.0520245 --0.101537 --0.0388592 --0.0386402 -0.032795 -0.0764372 --0.0407157 -0.0398196 --0.030268 --0.0766051 --0.0276801 -0.00502217 -0.0628009 -0.00365716 -0.0146808 -0.0628827 --0.0391802 --0.0903182 --0.0127746 -0.0139017 -0.0451983 --0.00951388 -0.0300724 -0.0111627 --0.01139 --0.0216467 --0.0380871 --0.0426103 -0.040651 -0.0748163 -0.0229426 --0.060047 -0.00410496 -0.0986 -0.0661636 -0.0448103 -0.0273784 --0.00505232 --0.00991869 -0.0235808 -0.0178162 --0.0196874 --0.0969781 -0.038163 --0.0318039 --0.0201524 --0.0111612 --0.0379994 --0.00257419 --0.0657118 --0.0192038 -0.0839714 --0.0339604 --0.0540187 --0.00358428 --0.0724429 --0.0364065 -0.00493975 -0.0253508 -0.0434059 -0.0646275 --0.0572191 --0.097178 --0.0345065 -0.0517893 -0.0248374 --0.0787583 -0.0751333 -0.0612806 --0.0299277 --0.0201349 -0.0274747 --0.0252652 -0.0835697 --0.0408753 --0.0531785 --0.05112 -0.0042389 -0.0071722 -0.0228775 -0.058272 --0.0936008 --0.0745494 -0.104003 --0.0050016 -0.0527578 --0.0157093 -0.0343232 -0.0568871 -0.043182 --0.0456473 --0.052137 -0.0270033 -0.0311733 -0.00527341 --0.0232534 --0.0131187 --0.0637446 -0.0305897 --0.001231 -0.00301936 -0.0159899 -0.101775 --0.0244874 -0.0612051 -0.0401718 --0.0960764 --0.032394 -0.00969752 -0.0980595 -0.07551 -0.0189238 --0.0255641 --0.0726197 --0.113502 --0.018552 -0.00863384 --0.0351033 -0.0250232 --0.0269203 --0.0128212 --0.0156512 -0.0397011 -0.00993699 --0.0528899 --0.00148819 --0.11163 -0.0428342 -0.00168157 -0.0396487 -0.0438646 -0.000193842 --0.0300641 -0.0566055 -0.0134133 --0.0857397 -0.0154935 -0.0288285 -0.0901621 --0.0635093 -0.0292564 -0.0221042 -0.0263895 -0.0695828 --0.00232066 --0.0387192 --0.0229961 --0.0362579 -0.0231796 --0.0430763 -0.00551432 --0.00453532 -0.0392759 --0.0139089 --0.0311861 -0.0119769 -0.107248 -0.0294569 -0.0944596 --0.0221984 -0.0280803 --0.0412601 --0.0545471 -0.0303783 -0.0741636 --0.0139333 -0.00652533 -0.0423087 -0.0122459 -0.0201087 --0.00574679 -0.0637114 --0.0275874 -0.142128 --0.00660776 -0.00362675 --0.0688088 --0.03066 -0.0556691 -0.0544564 -0.0547246 -0.00660093 -0.0318825 -0.0236455 --0.00470763 -0.0686664 -0.0107879 --0.022398 -0.0294809 -0.0264035 -0.0562129 -0.0136284 --0.0565996 -0.0139268 -0.116234 -0.0381362 -0.118122 -0.00222617 -0.00652182 -0.0249165 --0.00702003 --0.0203819 --0.0276219 --0.0193134 -0.0785057 --0.0118166 -0.0741641 -0.0296791 --0.00838199 -0.031707 -0.014263 -0.00614419 -0.0276191 -0.00368755 -0.0139839 --0.0799563 --0.0649639 --0.0438761 -0.0749361 -0.0359305 --0.0519741 -0.0212692 --0.0578811 -0.0141759 --0.0290694 --0.059125 -0.040107 --0.0792458 --0.0519133 --0.0375751 --0.0422774 --0.0269501 -0.0560756 --0.0131459 --0.0404176 -0.00458573 -0.0408216 --0.0183038 -0.0800169 -0.00656392 --0.0544793 -0.1046 --0.0354098 --0.00319721 --0.0407932 --0.066212 --0.0132915 --0.0329799 --0.0503706 -0.0347023 --0.00939173 --0.101936 -0.0435854 -0.00633263 -0.00850754 -0.0245121 -0.025911 --0.0567717 -0.0422554 --0.0711115 --0.0493034 -0.0794102 -0.0647193 --0.0322696 --0.0164177 --0.0238949 -0.0232799 --0.0611871 -0.0774031 --0.0595126 -0.02618 --0.067565 -0.0493316 -0.0785532 --0.0272859 -0.0152125 --0.0138975 --0.0536758 --0.057513 --0.0613538 --0.0107567 --0.0251503 --0.0254289 -0.0197129 --0.0507543 -0.0681361 -0.00914167 --0.0323839 -0.0831195 -0.0178089 --0.0254549 --0.00202609 -0.0778062 -0.0975084 --0.00640848 --0.00600931 --0.00319379 --0.0111055 -0.038957 -0.0431852 -0.10243 --0.0459554 -0.013614 --0.0450405 -0.00233137 -0.0259988 --0.0319726 -0.0435976 --0.0742841 -0.0166959 -0.0367754 --0.00388354 --0.08541 -0.00270749 --0.0116201 --0.0455807 -0.00693986 -0.0338178 -0.082041 -0.065112 -0.123357 --0.0700269 --0.050033 -0.0653752 -0.0220729 --0.0350168 -0.120424 -0.0497299 -0.015789 -0.0571727 -0.0396227 -0.0102579 --0.0178852 -0.020237 -0.0736438 -0.00654749 -0.0969507 -0.024353 --0.0913835 -0.06678 --0.00743599 --0.0173508 -0.060217 -0.0682465 --0.0718285 -0.0146093 --0.0424332 -0.0932948 -0.00634314 --0.024248 -0.0456295 -0.07139 --0.046025 -0.029986 -0.133338 --0.0733103 -0.0033843 -0.0881157 -0.0193433 -0.0140152 -0.00690284 --0.0657116 --0.0670312 --0.0205191 -0.000792778 --0.0688034 --0.0292176 --0.0602122 -0.0375195 -0.0488364 --0.0340035 -0.0875278 --0.0408185 -0.0702993 -0.0238278 --0.0195061 --0.0356532 --0.00443205 --0.022906 --0.026836 -0.00131799 --0.0382656 -0.0397966 --0.156361 -0.0327292 --0.0116718 -0.0594936 --0.0929831 -0.0381208 --0.0265783 -0.0232092 --0.0556231 --0.0386535 --0.0151173 -0.00139371 --0.0487515 -0.0966131 --0.0235644 -0.100809 -0.04305 --0.0300986 --0.0153441 --0.0100871 --0.0580848 --0.0868394 --0.0252084 -0.0201882 -0.0253751 --0.0105134 --0.128538 --0.0729616 -0.0569543 -0.0566551 --0.0109836 -0.0494982 -0.0382189 -0.0470578 -0.0619525 -0.0805123 -0.0334474 --0.00958733 -0.0159404 -0.0786387 -0.0128034 -0.00527553 --0.114247 -0.0443535 -0.0501342 -0.0172466 -0.0773354 -0.0420845 -0.0365281 -0.0173423 -0.115696 -0.0205947 --0.0938176 --0.046184 -0.0400496 --0.0157527 -0.0253912 -0.0072561 --0.0343455 --0.000201962 --0.0848684 --0.0680621 -0.116638 --0.0607622 --0.047927 -0.0406248 --0.0022414 -0.0236685 --0.0692755 --0.0231461 --0.00114899 -0.064618 --0.024791 -0.0298326 --0.0152288 --0.0338614 --0.0331422 -0.0137081 --0.0276311 -0.0339391 --0.0118009 --0.162124 -0.113093 -0.0157009 --0.088027 --0.049183 -0.115925 -0.024166 -0.0263355 -0.0752748 -0.0227898 --0.00542907 -0.0347373 -0.00560224 -0.106333 -0.00450972 -0.0566742 --0.0961074 -0.0857393 -0.0510691 -0.0285044 --0.00713335 -0.0230316 -4.86416e-05 --0.0701227 --0.0755555 -0.0358066 --0.0189703 --0.0573207 --0.118019 --0.0574396 -0.0709883 -0.0158696 --0.0212327 --0.0585253 --0.0176093 --0.0100643 --0.000280095 --0.0491947 --0.0348397 -0.0440477 -0.0682846 -0.0766643 --0.010486 --0.111811 -0.0670942 --0.0865725 -0.0255535 --0.00427471 -0.0892868 -0.0487051 --0.0451069 -0.00905236 --0.045553 -0.023589 -0.0181123 --0.042728 -0.0360156 -0.0169864 --0.0183575 --0.0540895 --0.0981227 --0.0275685 -0.0660463 --0.0279913 -0.0194783 --0.124923 --0.0376567 -0.0390642 --0.0701624 --0.00959223 --0.0178921 -0.0275969 -0.0308751 --0.0178574 -0.03456 -0.0721604 --0.0542832 --0.0586392 -0.07505 -0.0571965 --0.0487499 --0.0238891 -0.0301248 -0.0207824 --0.00681579 -0.102493 --0.0025032 --0.0254389 --0.0511379 -0.0378958 -0.0554271 -0.0340722 --0.0700178 --0.140336 --0.0497303 --0.0996241 --0.0317319 --0.0428426 -0.0158027 -0.103952 -0.070515 --0.027155 --0.113083 -0.0634474 -0.0150138 -0.0689527 --0.110582 -0.0223561 -0.0424681 -0.00381474 --0.0600376 -0.0225712 -0.0442837 --0.0351209 -0.0366761 -0.0431762 --0.0440807 -0.00584696 --0.0812667 --0.0228789 -0.0400205 --0.0605309 --0.0436033 --0.0531288 --0.0908309 -0.11499 --0.00707696 --0.0371368 --0.102167 -0.054095 -0.00163704 -0.0509341 -0.0730712 --0.0222844 --0.0385337 --0.0233748 -0.0533599 -0.0479892 -0.0177633 -0.0197053 --0.0805949 --0.0601556 --0.0254053 --0.00184474 --0.0221785 --0.158411 --0.0342015 -0.0306785 --0.0758277 --0.0215358 -0.0357014 -0.0565498 --0.0863424 --0.0224393 -0.0659452 -0.0399599 --0.0230759 --0.031518 --0.042683 --0.000747019 --0.0252437 -0.0549015 -0.0553297 --0.0190629 --0.0207262 -0.00237348 -0.0753408 -0.0597329 -0.0557955 -0.0529767 --0.139927 --0.0920538 --0.0552975 --0.0304003 --0.0291229 -0.0548257 -0.0790078 --0.0875551 --0.0158 --0.0070245 -0.0816809 -0.0301364 --0.0722661 -0.0392054 --0.0552267 -0.0263569 --0.110429 -0.0562528 -0.0423694 -0.0504659 --0.0828894 --0.0126162 -0.0663457 --0.0246781 --0.00222622 --0.0482699 -0.0321647 --0.0209291 --0.0675759 -0.0631978 --0.0623942 -0.0294685 --0.024974 -0.0421806 -0.0454001 -0.0399263 --0.0657352 -0.0154691 --0.0587176 -0.051864 -0.0884437 -0.012578 -0.0211905 -0.0627904 -0.0268538 --0.0757656 -0.0102341 --0.0811455 -0.0225379 --0.0631516 -0.0446767 --0.00228415 -0.0547708 --0.0725254 --0.0137211 -0.0546374 --0.116704 --0.0370153 -0.0559374 --0.0176425 --0.0262643 --0.0300111 --0.0465119 -0.00628839 --0.0490444 --0.00814839 --0.0349926 -0.0751558 --0.02412 --0.034433 -0.0447844 --0.0574011 -0.0358302 --0.0879072 -0.0859985 -0.0391122 -0.0283587 -0.0677519 -0.0456798 -0.0370383 --0.0198111 --0.00839509 -0.123325 --0.0198749 -0.105136 -0.0138153 --0.0225895 --0.0244912 -0.0313955 -0.000730661 --0.0216867 --0.063096 --0.0491835 -0.00365339 -0.0230103 -0.0810429 -0.00356117 --0.0379094 --0.02441 --0.0181062 --0.0288527 -0.0302977 -0.0200138 --0.00170647 --0.113246 -0.0295529 -0.0539129 --0.108433 --0.0406891 -0.0583119 -0.0698485 -0.0407176 -0.00301902 --0.0188969 --0.0346588 --0.065263 --0.0633209 -0.0415122 --0.0360257 -0.068181 -0.0813625 --0.025459 -0.044522 -0.045579 --0.0652772 --0.0484072 -0.0549233 -0.0247573 --0.0129075 -0.0562689 -0.0168077 --0.0333703 -0.0368949 --0.0286833 --0.0211167 -0.0977453 -0.0155957 -0.0669623 -0.000297539 --0.0406896 --0.00942682 -0.103272 -0.00913871 -0.0528347 -0.0573147 --0.0544481 --0.0587169 --0.173302 -0.0343638 --0.114272 -0.0309511 --0.0742712 -0.00971269 --0.0408997 -0.0265184 --0.0291075 -0.0161692 -0.0798694 --0.0128519 -0.0281649 -0.0383121 -0.0596486 -0.0227309 --0.0102975 -0.0102276 -0.0127468 --0.00544071 -0.0907932 --0.133347 --0.0390094 --0.0399121 --0.0450901 -0.0156162 --0.000222686 -0.00904207 -0.0890847 -0.0550298 -0.0336378 --0.0122391 -0.0375573 --0.0158138 -0.0186182 --0.14775 --0.0151248 --0.0482179 --0.113071 --0.000176777 --0.0159687 -0.0807164 -0.0615616 -0.0395819 --0.0153327 --0.0615347 -0.0404138 --0.0127524 --0.0357476 --0.0662018 -0.0335316 -0.0497422 -0.0516109 --0.0409644 -0.115651 -0.0798019 --0.0206715 -0.0124297 --0.04036 -0.00262437 -0.109206 -0.062786 -0.0149181 --0.0199713 --0.00467248 -0.00295006 --0.0711102 -0.055781 -0.0179165 -0.027716 --0.0226624 -0.0587746 --0.0226232 -0.0433897 --0.00260354 --0.0173786 -0.111795 -0.0175277 --0.0239689 --0.0552204 -0.0187391 --0.00273609 -0.00379878 --0.0405871 --0.00307135 -0.0648781 --0.0273637 --0.00510196 --0.0132509 --0.0214998 -0.121985 --0.053072 -0.0157723 -0.0480921 -0.04417 -0.0371932 -0.0160567 -0.0032046 --0.0359205 --0.0559561 --0.0285582 -0.0268722 --0.0404286 --0.00694953 -0.0454825 --0.0131817 -0.00953581 --0.0440286 --0.0889743 -0.00865217 -0.0690273 -0.00877664 --0.0561167 --0.0055494 -0.00730839 -0.00215546 -0.0112704 --0.0519827 -0.0332385 --0.00106003 --0.0231451 --0.00823331 -0.0256424 -0.036643 -0.038792 --0.0516868 -0.00184908 -0.0211414 --0.0938676 -0.00733439 --0.0215463 -0.0628917 -0.0406405 -0.018778 --0.0264743 --0.128128 -0.0403156 -0.0984461 -0.0047462 --0.0226517 -0.0336327 -0.0334272 -0.00348944 --0.00915415 -0.0740392 -0.0437128 -0.104845 --0.0155194 -0.0108864 --0.0137675 -0.0652764 -0.089163 -0.0410991 -0.0345044 --0.0274141 --0.0437731 --0.0200158 --0.0194063 --0.0722367 --0.0176537 -0.012815 --0.0177445 --0.0592709 -0.10764 --0.000563291 -0.00376091 -0.0111923 -0.0748533 -0.0125812 --0.019738 -0.0179982 -0.0376574 --0.0626441 -0.0215948 -0.0701517 -0.0705469 -0.0755997 -0.0851976 --0.0253839 -0.0130802 -0.0617082 -0.0105585 -0.0912907 --0.0346731 -0.0532085 --0.00443283 --0.0057151 -0.0793374 -0.076516 -0.0303929 -0.0789278 --0.0388647 --0.0039869 --0.0638854 -0.00063469 --0.101158 -0.112242 --0.0266675 --0.0576719 -0.0389532 --0.0628443 -0.0366751 -0.0102739 -0.0269227 --0.0582789 --0.0299121 -0.0614583 --0.0819881 -0.0555872 --0.0153836 --0.0588885 -0.0223228 --0.0132964 --0.138953 -0.0538166 --0.0409544 -0.10576 -0.0334018 --0.0106168 -0.0572207 --0.0235588 --0.0380755 -0.028346 -0.0395081 -0.0588721 -0.0419971 --0.0465111 --0.0560205 --0.00651986 --0.0159349 --0.0831733 --0.0708727 -0.0884498 -0.0471423 --0.0180087 -0.0253991 --0.0191569 --0.0172255 --0.130695 -0.0410303 --0.0117811 --0.0406631 -0.0639533 -0.0812159 --0.00781182 --0.107533 --0.0248085 --0.00768038 --0.0731968 -0.0150685 --0.0146487 -0.0320714 --0.020214 -0.0752579 -0.0208191 --0.126027 -0.0235034 -0.085405 --0.0673163 -0.027132 --0.0868955 --0.0802589 --0.087708 --0.0722045 -0.0197083 --0.0415888 --0.0119887 --0.0127486 --0.0178515 -0.0227687 --0.0130552 --0.03906 --0.00931117 -0.00532213 -0.0383233 --0.0754977 -0.0214982 --0.0718343 -0.0957038 --0.0728525 --0.0268069 --0.0760022 -0.0337531 --0.100115 --0.000706056 --0.0317813 --0.0748826 --0.0711881 --0.0101116 -0.0637544 --0.018447 --0.0281727 --0.0310441 --0.0218555 -0.06556 --0.0932947 -0.00421184 --0.00651413 -0.0470887 -0.0402024 --0.0349991 -0.0381652 -0.0174063 --0.0291829 -0.0449892 --0.0424208 --0.0213202 -0.0804321 --0.0366708 --0.00389556 --0.0428497 -0.0265426 -0.0365479 --0.011059 --0.0501137 --0.0325875 --0.0407675 --2.92258e-06 --2.32242e-05 -0.0299428 --0.0418021 --0.0062338 -0.084533 -0.0173357 --0.00695863 --0.0283138 --0.0568555 --0.0139303 -0.0948611 --0.0298776 --0.0707094 --0.0608488 -0.120757 --0.00358206 --0.0186366 --0.0172569 -0.0378546 --0.0094563 --0.0351394 -0.0252244 -0.0179434 --0.066638 -0.0657388 -0.0298036 -0.00553796 -0.0692666 --0.0492529 --0.0125265 --0.14231 -0.0669468 --0.046168 -0.0406047 --0.0212426 --0.0105606 -0.0585925 -0.0362527 -0.0163183 --0.00125301 -0.0369085 -0.0310561 --0.0625768 --0.0950336 -0.0682269 --0.0369159 -0.0331781 -0.0515525 -0.051326 --0.0421299 -0.0720862 --0.107484 --0.0545744 --0.0505737 -0.00217448 -0.02626 -0.0660214 --0.000651034 -0.0571474 --0.0167825 --0.0527427 -0.0193133 -0.0322998 -0.0389812 --0.0525555 --0.0416376 -0.00720011 --0.057157 -0.0176298 -0.0649088 -0.0894325 -0.0158944 -0.00928406 --0.039026 --0.0145563 -0.0603695 --0.0528951 -0.0904926 -0.0367982 --0.109035 -0.0214087 -0.00603939 -0.0201117 -0.0379391 --0.0120116 -0.0267983 -0.124649 --0.0615074 -0.0455472 -0.0896039 --0.0107041 --0.0199854 --0.0049156 -0.00143644 -0.0183572 -0.0204339 --0.000707934 -0.0373633 -0.0122789 --0.0401073 -0.0798597 --0.0228626 --0.0473396 --0.0557291 --0.028932 --0.0581018 -0.113367 -0.0156858 --0.00719987 --0.0166535 -0.0548852 --0.00621179 --0.0267161 -0.0923596 -0.0266379 -0.0121853 --0.0258655 -0.0842582 --0.0275161 --0.0421242 -0.000414699 --0.0155329 --0.00429008 --0.0529266 -0.0119129 -0.0354188 -0.0166644 --0.00443645 --0.0349492 --0.0404579 -0.0856659 --0.006596 -0.0340851 -0.0560947 --0.0406738 -0.0187034 --0.0347144 --0.0414141 -0.0970686 -0.107511 --0.089171 -0.0360609 --0.0370002 --0.016021 -0.0117514 --0.0766337 -0.0677585 --0.0426854 --0.0165606 -0.0457185 --0.0107517 -0.0481543 --0.0255409 -0.00962024 -0.0231221 -0.0565994 -0.0924499 --0.0786492 --0.0341822 --0.00180457 --0.0376839 --0.0697004 --0.0495646 --0.0206417 -0.0436083 -0.0440839 -0.014045 --0.0299084 -0.0184806 -0.0770754 --0.0338255 -0.01348 -0.119852 -0.0473711 --0.0196383 --0.054045 --0.0214559 -0.0686608 --0.109524 -0.071628 -0.0176283 --0.0175791 -0.0786826 --0.037643 -0.026212 -0.0142455 -0.0276336 --0.0416552 --0.0112794 --0.0479026 -0.0180089 --0.024894 -0.00347519 -0.0507914 --0.0945414 -0.0705 --0.0979026 -0.0237979 -0.0117401 --0.0663478 --0.067119 --0.050258 -0.00957307 --0.0124635 --0.0610001 --0.0861058 -0.0101902 -0.130029 -0.0168673 --0.0246388 --0.048864 --0.0289509 --0.093635 -0.00311668 -0.0147639 --0.00665561 --0.039423 -0.00430099 --0.0338432 --0.0187025 --0.141682 -0.050348 -0.114664 -0.0915705 --0.0438719 --0.0268106 --0.0359865 -0.0743311 -0.0822687 --0.0819658 -0.0145871 -0.00468433 --0.00184058 -0.0338172 -0.0338289 --0.0399074 -0.0310301 --0.0661433 -0.0324588 --0.0286918 --0.0210245 -0.0540354 --0.0445236 -0.0162149 --0.0272704 --0.0305299 -0.0300238 -0.0774733 --0.0514892 --0.0443516 -0.00522756 --0.034885 -0.0284661 -0.00827869 --0.0523284 -0.0248389 -0.00676369 -0.0150353 --0.0127769 --0.0048686 -0.0519989 -0.0167704 -0.0323161 --0.00531709 --0.0958439 -0.0382519 --0.0376158 --0.0221029 -0.0309662 -0.00667121 --0.00487173 -0.0295382 -0.0489952 -0.0509346 -0.0509528 -0.0824426 --0.000335882 -0.0402492 --0.0475104 --0.0672216 -0.0554838 --0.0343059 --0.0156534 --0.150809 -0.00192139 -0.0774305 --0.0326144 --0.0384512 --0.0516755 -0.0296228 --0.0809113 --0.0296393 -0.0472077 --0.0353685 -0.0722875 -0.0424875 -0.0457703 --0.0783668 -0.159477 --0.0223309 -0.00309533 --0.0293996 --0.0847161 -0.0981471 --0.0473287 --0.0549975 --0.110546 -0.117348 --0.0747605 --0.0743923 -0.00519402 -0.0375944 -0.0102157 --0.023007 -0.0474115 -0.0290567 -0.00358813 --0.0781353 -0.0179367 -0.0551997 --0.0287154 --0.0282096 -0.0614832 -0.0427458 --0.0392029 -0.116964 -0.0231123 -0.0660052 -0.027215 --0.0293579 -0.0205859 --0.0111383 -0.0507554 -0.0513273 -0.0688079 -0.0426908 --0.0292957 -0.00402039 -0.0857643 --0.0521875 -0.0300208 -0.0665462 --0.0312663 --0.0462535 --0.0250544 -0.0413193 -0.0512677 --0.0518708 --0.0328859 -0.0723039 -0.0534605 --0.0374872 -0.0572123 --0.00207974 --0.027249 --0.020206 --0.0898118 -0.0676315 -0.0333659 --0.0235304 -0.0238432 -0.0280222 --0.0238216 --0.0195255 -0.0201712 --0.036287 --0.0222707 -0.0444395 --0.00465019 --0.000748645 -0.0508472 -0.0290077 --0.038997 --0.0303162 --0.0625545 --0.0230992 -0.0923677 -0.107076 --0.0549146 -0.0165821 --0.0591508 -0.0202553 -0.0636878 -0.0930246 -0.0678752 -0.0327225 --0.0139707 --0.0272682 -0.103109 --0.0159798 -0.0562661 -0.0463125 --0.00776652 --0.0728558 -0.0541761 -0.0344086 --0.0219538 -0.0314077 --0.0213158 -0.0210698 --0.0457569 --0.0518442 --0.0613443 -0.0548178 -0.0383619 -0.0455082 --0.0730473 --0.158303 --0.0334338 -0.00379193 --0.0870746 -0.00147022 --0.00841073 --0.0173428 --0.0161297 --0.0893751 -0.00395229 --0.017852 --0.0294218 --0.0443472 -0.0912628 -0.0499377 --0.00726837 --0.00698983 -0.10851 -0.0305192 -0.034589 --0.0311624 --0.0370458 -0.0623437 --0.00332749 --0.00619301 --0.0501285 --0.0381971 -0.0042371 -0.0407641 -0.0222201 --0.0426422 --0.000580743 --0.093465 -0.0375654 --0.0732241 -0.0215374 --0.0250285 -0.0673708 -0.0465746 --0.0117906 -0.0175765 -0.0181364 --0.0101962 -0.0241825 -0.00224916 --0.0346969 -0.0242295 --0.043255 --0.0609981 --0.0361394 -0.0735833 --0.016586 -0.0592338 -0.121542 -0.0459789 -0.04791 --0.00446001 --0.0106367 -0.0245079 --0.0253304 --0.00234336 --0.0888163 -0.0656793 --0.0138288 -0.00790238 -0.0461873 -0.0228948 -0.122231 -0.0742779 -0.0116017 --0.0656565 --0.0670472 -0.0863436 -0.0500276 -0.0448351 --0.0393257 --0.0665352 --0.0532658 --0.0274592 --0.067734 --0.0199751 -0.0536309 -0.0716334 -0.0502429 --0.0266079 --0.0353992 -0.010622 -0.0384945 -0.0203014 -0.0290815 --0.063915 --0.00939636 --0.0401247 -0.0891639 --0.0120976 --0.0374854 --0.0632326 -0.00593846 --0.0108226 -0.0220823 -0.0486265 --0.029765 --0.0560106 -0.0704327 --0.0551786 --0.0250049 --0.0953982 --0.00755765 -0.0579897 --0.101825 --0.109607 -0.0235277 --0.0162146 -0.0374731 --0.0697238 -0.064836 --0.0633432 --0.0850541 -0.0211228 --0.0190803 --0.0351315 --0.0381519 -0.102165 -0.0325618 -0.0741473 --0.0647761 -0.0281699 -0.0554291 -0.0394947 --0.00757437 --0.0267678 --0.0497867 --0.0268551 --0.0695429 -0.037373 --0.0093864 -0.028952 -0.0925874 --0.0933935 --0.0196832 --0.054168 --0.0452687 -0.0632299 --0.0414339 --0.0362675 -0.0924763 -0.0558297 -0.0460124 --0.0267723 -0.0214035 --0.0311903 --0.121082 --0.0547506 --0.0116298 --0.0557337 --0.0944458 --0.0488199 --0.0127582 --0.086218 -0.04873 -0.0158307 -0.0792827 --0.071072 -0.0674666 --0.0570815 -0.0240809 --0.0183493 -0.0343748 --0.0564014 -0.055757 --0.00902909 --0.0250937 -0.0386811 -0.0598853 -0.0163606 --0.0252053 -0.00670754 -0.0249081 -0.0105453 -0.0250787 --0.0565774 -0.0157913 -0.0449051 -0.0230038 --0.0292816 --0.00956204 --0.0435031 -0.0274471 --0.0719395 -0.0439014 -0.0651895 --0.0457885 --0.0802727 -0.0364655 --0.0304274 --0.00232512 --0.0189956 -0.038916 -0.03096 -0.121953 --0.0119417 -0.018602 -0.0451586 --0.0518601 --0.10594 -0.00227861 --0.0704417 --0.00134752 -0.0283151 --0.0516528 -0.0608335 -0.0500745 -0.0383539 -0.0213477 --0.0348511 --0.0219241 -0.123089 --0.0769704 --0.0585793 --0.0232987 -0.0775409 --0.0194088 --0.0379184 --0.0353849 --0.0229584 -0.0368147 --0.0241218 -0.0487944 --0.0542294 -0.0120278 -0.0253761 -0.00410182 --0.0567866 -0.0402446 -0.0322406 --0.01291 --0.0467585 --0.046955 -0.0522812 --0.0195473 --0.0615477 -0.0155809 --0.129552 --0.0180102 --0.059798 --0.16366 --0.0376817 -0.0723378 --0.0233753 --0.0749876 --0.0576153 --0.0494059 --0.10142 --0.0902036 --0.0763341 -0.0687126 --0.0410245 --0.00504955 -0.0638192 --0.071607 --0.00236713 --0.0106845 --0.0169122 -0.0173968 --0.0662626 -0.0176886 -0.0539947 --0.0127022 --0.0450394 --0.00287668 --0.0955141 -0.0326017 --0.0179269 -0.0095865 -0.0321032 --0.0706356 -0.0738475 --0.00782208 -0.00630213 -0.0244963 -0.0466498 --0.0101238 -0.0640008 --0.0293747 -0.00189115 -0.0626944 -0.0142799 --0.0245555 --0.022152 --0.0427901 -0.0578141 -0.0129644 -0.0157277 --0.0160022 -0.0430959 -0.0107798 -0.0395329 --0.0678338 --0.00864713 --0.0151558 -0.0148559 --0.0229416 --0.107897 --0.0157513 -0.133713 -0.0618429 --0.00354064 --0.0564121 -0.0229478 --0.0447436 -0.034267 --0.0273987 -0.00745436 --0.0024451 --0.0253182 -0.0789295 --0.0588395 --0.0493126 --0.0226402 --0.0296531 -0.00781994 --0.0579297 --0.0322235 --0.0519713 --0.0394506 -0.0406082 --0.00730982 --0.038779 --0.00261675 -0.0673811 -0.0115478 -0.0743513 --0.0310319 --0.00276673 -0.0628376 --0.00586333 -0.0635189 --0.0126551 -0.0279254 -0.128921 --0.0100678 -0.0175692 --0.0881614 --0.00333376 --0.020695 -0.011085 --0.0681698 -0.0534576 -0.00818118 -0.057043 -0.0483485 -0.0477198 -0.0220535 --0.0347208 -0.0194621 -0.0108479 --0.0408739 -0.0148143 -0.0242407 -0.0201976 -0.0357707 --0.0718819 --0.00360734 --0.0643023 --0.0571025 -0.0100956 --0.0559954 -0.0653352 -0.0032502 -0.0531163 -0.0439338 -0.0188054 -0.00308261 -0.0409965 -0.00873512 -0.00978857 -0.054522 --0.0348 --0.0504254 --0.0382744 --0.031225 --0.136595 --0.0511034 --0.0387634 --0.0673733 -0.0304495 --0.0457999 --0.0401166 -0.0215378 -0.00910457 --0.0270609 --0.0813655 -0.0775921 -0.0664609 -0.0116984 -0.0415247 --0.0573032 -0.0559324 -0.0728757 --0.00315781 -0.0492447 -0.093056 -0.0762153 -0.0198336 --0.043178 --0.120813 --0.0530434 --0.00801433 -0.0299807 -0.00605067 --0.0214406 -0.07717 -0.0336551 -0.0375404 -0.00761336 -0.127793 --0.0351936 --0.0671526 -0.0988659 -0.016817 -0.106355 -0.0445772 --0.0175123 -0.0129793 --0.0074879 --0.0252648 -0.0263595 -0.112266 --0.0288599 -0.125853 -0.0435079 --0.0319112 -0.0660039 -0.0481476 --0.0253472 --0.0448402 --0.00986011 --0.120554 -0.0951973 -0.00274954 -0.0100685 --0.0828565 -0.021101 -0.0172312 --0.00529714 --0.0213141 -0.0234286 -0.0495712 -0.0473181 -0.0201212 --0.041537 --0.101093 -0.0265623 -0.0365556 --0.0237165 --0.050403 -0.0307915 --0.0748241 -0.0633114 -0.0148705 --0.021499 -0.103094 -0.0303637 --0.0846535 --0.0096566 --0.0524182 --0.0380212 -0.0775405 -0.0421633 --0.0357504 --0.0837767 -0.0330138 -0.0427924 --0.0604395 -0.0572436 -0.027096 -0.0748955 --0.0187306 --0.0511368 -0.0418238 --0.0524248 --0.0552934 --0.00147715 -0.0369565 --0.0115274 -0.0337523 --0.0410421 --0.0376812 -0.0110537 -0.0180474 -0.0118009 --0.0334213 -0.105898 -0.0475703 -0.0979787 --0.0555501 -0.0347125 -0.0173844 --0.023382 --0.0278491 -0.0514988 -0.0233109 -0.0292564 -0.00720984 -0.072357 --0.0522097 --0.041852 --0.0265214 --0.0542193 --0.0455773 --0.0247615 -0.0786552 -0.0498001 -0.0395476 --0.131093 --0.0659752 -0.0840399 --0.00589539 -0.0509471 -0.0251329 --0.0215151 --0.0233311 --0.11042 -0.040955 -0.0699252 -0.0392986 --0.101312 --0.0792764 --0.00908105 -0.0402129 --0.0344711 -0.00428957 -0.0184642 --0.132474 --0.0206164 -0.0717602 -0.00649947 --0.0467717 --0.0734485 -0.0696008 --0.0244893 --0.0180745 -0.0565778 --0.03987 --0.00989569 --0.00611204 -0.00185208 --0.0646177 -0.0358645 -0.110742 -0.0355131 --0.0160311 --0.0218104 -0.0672141 --0.085132 -0.0212864 -0.0170162 --0.00355298 --0.0587141 -0.0200835 --0.0406065 -0.0228776 -0.0248808 --0.0808761 -0.0111148 --0.0203436 --0.00953204 --0.0671392 -0.12539 -0.00329998 -0.0758453 --0.0119274 -0.0420541 --0.0333414 -0.0273321 -0.0177504 -0.0704269 -0.0751582 --0.0308958 -0.125494 --0.0651062 --0.0496775 --0.0495696 -0.022463 --0.00430071 -0.0130783 --0.0246986 -0.0239401 --0.0651961 -0.0200811 -0.0927544 -0.0303803 --0.0954936 --0.0197106 --0.104164 --0.00368722 -0.0217645 -0.0537376 -0.0397365 -0.0307436 --0.0126159 --0.00444202 -0.0409618 -0.0538066 --0.0234291 --0.00519745 --0.0743431 -0.0698808 --0.0206434 -0.108596 -0.00651192 --0.0870301 -0.0403499 -0.0237972 --0.0432325 --0.0551012 --0.00217564 --0.0224082 -0.0347431 --0.0323103 --0.072918 -0.0388224 --0.0519148 --0.0127346 --0.0502291 --0.000959023 -0.0381748 --0.0271884 --0.03613 -0.0631972 --0.00332386 -0.0503408 --0.0404905 --0.0142764 -0.0201722 -0.0397963 -0.134307 --0.0049076 -0.104034 -0.013099 -0.0124466 --0.0394549 -0.0435069 --0.0475938 --0.0789179 --0.0420555 --0.0106137 -0.0127327 --0.0626302 -0.0821 --0.00714563 --0.00197422 -0.0138835 --0.00972479 --0.0713977 -0.0149082 -0.079863 -0.00179184 --0.17228 --0.0475095 --0.00503257 -0.00285109 --0.022651 -0.0123351 --0.047248 -0.0214752 --0.0379351 -0.0440019 --0.0165416 --0.0158067 --0.0559149 -0.0174753 --0.0155578 --0.00279413 -0.0168053 -0.0766407 --0.00968858 --0.134435 -0.0658914 --0.0338604 --0.0456001 -0.0771681 --0.147693 --0.0582881 --0.0207172 --0.0479855 -0.0146955 --0.0532443 -0.168031 --0.0508092 --0.0715133 -0.0795431 -0.0792251 -0.0761449 --0.0725549 --0.0950862 --0.0475981 --0.0305582 --0.0297474 -0.00626181 -0.0145173 -0.0352486 -0.0455514 -0.0546327 --0.0128475 --0.0191776 -0.0389259 -0.00928482 -0.0331514 -0.0260625 --0.0244863 --0.016405 --0.0481223 --0.0116513 -0.00326083 -0.116492 -0.0478704 -0.0562298 --0.0729581 --0.0371037 --0.0232732 -0.0682983 -0.072941 --0.0598704 -0.0356084 --0.0368695 --0.0206033 --0.0659498 -0.0252678 -0.0229624 --0.0310334 -0.0633864 -0.075077 -0.0136519 --0.0818265 -0.0610152 -0.0253779 --0.0151544 -0.034056 -0.00414973 -0.00906515 -0.0472026 -0.123542 --0.0312757 --0.0409944 --0.0509157 --0.0418847 --0.0121707 --0.0123697 --0.0213135 -0.0124955 --0.0326955 --0.0189365 -0.0251815 --0.0286342 -0.0976788 --0.038616 -0.0807104 --0.0420665 -0.0148554 --0.0182146 -0.00924424 --0.00704573 --0.0581762 -0.0803685 -0.0409821 --0.0343688 --0.0288501 --0.0246715 --0.0333018 -0.0466995 --0.105999 --0.00518618 -0.00318348 -0.0140479 -0.00939752 -4.06017e-05 --0.0317459 --0.0194111 -0.117991 --0.100305 --0.00644528 -0.0465466 --0.0187361 -0.0535089 -0.0321543 --0.0354982 -0.0216768 -0.00788886 -0.0554982 --0.00660328 --0.0446555 --0.00844832 --0.0798707 --0.0452399 -0.0584809 -0.00225836 -0.013494 -0.0259963 -0.0686616 -0.0454763 -0.0274622 --0.00251365 --0.0560095 -0.0314059 -0.0366848 --0.0731199 --0.00859481 --0.0454113 -0.0400719 -0.00688573 -0.00576957 -0.0536335 -0.0286632 -0.00604642 --0.0365161 -0.0774464 -0.0244455 --0.0359399 --0.0952025 -0.044839 --0.0589783 --0.101073 -0.0867611 --0.0133885 -0.0660784 --0.0228128 -0.0267014 -0.0460823 -0.107598 --0.0559986 -0.011583 -0.0123289 --0.0557623 --0.0911459 -0.0319672 --0.103078 -0.0537382 --0.0277061 -0.0722438 -0.0592495 --0.0963226 -0.0220787 --0.0626661 -0.0158581 --0.0423298 -0.0414549 -0.00607861 --0.00240967 -0.116958 --0.00385151 -0.120281 --0.0538215 --0.0562814 --0.0145526 --0.0305296 --0.0186015 --0.0187041 --0.0296758 -0.00542449 --0.088304 --0.0298617 --0.0437003 -0.0169816 --0.0556742 -0.0104668 -0.0114415 --0.0630653 -0.00449781 -0.115021 -0.0114503 --0.0890939 -0.0487245 --0.0214173 -0.046131 --0.0446419 -0.0444974 -0.0501955 -0.0346589 -0.0287381 --0.0154413 --0.0646584 --0.0332268 --0.117514 -0.075179 --0.022417 --0.0177199 --0.0307652 -0.0492863 --0.021765 -0.0607492 --0.0239977 -0.0680547 --0.111499 -0.030832 --0.072553 --0.0611222 -0.077461 -0.0166902 --4.83599e-05 -0.0170619 -0.0294324 -0.00870701 -0.000113252 -0.00444567 --0.0611281 --0.0209383 --0.139381 --0.0264017 -0.0417271 -0.0134412 -0.0205417 --0.0115822 -0.027585 -0.0203299 --0.0571005 -0.0021999 -0.0423816 -0.0365939 -0.0538389 --0.0600166 -0.0338809 -0.0579864 -0.0564552 -0.00806192 -0.0508804 --0.034596 --0.0066111 --0.0189719 -0.03618 --0.0795815 -0.0228057 -0.0450689 --0.0134862 --0.0126316 -0.020549 -0.0200985 --0.0302911 --0.0188943 -0.0585109 --0.0191918 --0.0610056 -0.147652 -0.0165133 -0.0547183 --0.0692788 --0.0114006 -0.115125 --0.0426095 --0.0808976 --0.0381468 -0.0108935 --0.010391 --0.0138561 -0.0119915 -0.0459399 -0.0328495 -0.0762172 --0.0281407 --0.0419755 -0.0464962 --0.0192257 --0.0253105 --0.0186407 -0.00174338 -0.0608123 -0.000694187 --0.101918 --0.000365324 -0.0617352 --0.021023 -0.0161607 -0.0662487 -0.00760913 --0.0138122 --0.0128019 --0.0119615 --0.0387457 --0.0975483 --0.0277917 -0.0696464 --0.0228403 --0.0159603 --0.111269 -0.0292408 --0.00392785 -0.0570437 -0.0424398 --0.00956917 -0.00265739 -0.0552711 --0.04003 -0.0287018 --0.038769 -0.00982772 -0.0252118 -0.116993 --0.0396003 --0.0624168 -0.128875 --0.0349594 --0.0733782 -0.0212874 -0.0336491 --0.0688469 --0.048346 -0.0177298 --0.00691161 -0.0616199 --0.0669637 -0.0584475 -0.0537141 -0.100672 --0.0691973 -0.0373118 -0.0432287 --0.0399517 -0.00358438 -0.052426 --0.028978 -0.00561622 --0.0675223 --0.0205969 -0.0192936 -0.0959861 --0.0453869 -0.111159 -0.00568553 --0.0445305 -0.0155822 -0.022983 -0.0924486 -0.104132 --0.0366455 --0.0109321 -0.114839 -0.0343498 -0.0110118 --0.0693408 --0.00300898 --0.0369871 --0.0166787 -0.0178302 --0.0457066 -0.0138243 --0.0243129 -0.00125631 --0.0459816 -0.0593204 -0.000730553 --0.0144901 --0.00645476 -0.0263218 -0.00918144 --0.12517 -0.0557381 --0.0177046 --0.0280251 --0.00506399 --0.0820583 -0.0753464 -0.0261253 -0.0581749 -0.00710972 -0.0783386 -0.0197841 -2.94837e-05 --0.0438089 --0.00516119 -0.0622728 -0.0368493 -0.0453871 --0.0164944 --0.0748588 -0.0915316 --0.0392938 --0.0787185 -0.0726928 --0.0662266 -0.125629 -0.0271836 --0.0647221 --0.0564672 -0.0160444 -0.0159526 --0.100696 -0.0316245 --0.0276331 -0.00630555 -0.0156348 --0.0185277 --0.0768997 -0.0347788 -0.0813805 --0.0990807 --0.0355176 -0.089412 --0.0581756 -0.0632275 -0.0272315 -0.000409084 --0.0762171 --0.0199985 -0.00341944 --0.0726035 --0.0289456 --0.0292165 --0.0241603 --0.0223592 --0.0278889 --0.0203977 -0.107482 --0.000619195 -0.111125 --0.0213836 -0.0191436 --0.0147127 --0.0202417 -0.0102175 --0.0439786 -0.0109278 --0.00132489 --0.0465361 --0.007802 -0.0724798 -0.0121214 -0.114211 -0.00215293 --0.02975 --0.00921154 --0.0287523 --0.0216255 --0.00611288 --0.00533524 --0.0244185 -0.115008 -0.0391707 --0.0173543 -0.0693762 -0.0576227 --0.0320504 --0.0680261 -0.00886816 --0.046397 --0.0282151 -0.025502 --0.0135531 -0.108891 --0.0698283 --0.0701893 -0.0798493 --0.110086 --0.00133064 --0.0391715 --0.0953495 --0.031015 -0.047224 --0.0143218 -0.116202 -0.0396263 -0.029324 --0.0455718 --0.00668284 -0.00267262 -0.0481377 -0.0480972 --0.00964627 --0.0168308 -0.0178954 -0.00800021 -0.0587054 -0.0524383 --0.00186662 --0.0623766 --0.0114808 -0.0561781 -0.0758744 --0.126812 -0.0665085 --0.0348714 --0.0451803 --0.0174053 -0.042391 -0.0232769 -0.0656231 -0.0475113 --0.00293999 --0.00389536 --0.0165307 --0.0821472 --0.0855005 --0.0500437 -0.0772753 -0.00230322 -0.000849593 --0.0620437 --0.0125027 --0.0134503 -0.0191702 --0.064979 --0.0172832 --0.103623 -0.00820442 --0.0771426 -0.107645 --0.0181536 --0.0169918 -0.0739403 -0.0405334 -0.0319212 -0.0681448 -0.0464299 --0.0802267 --0.0308704 -0.12866 --0.0812379 --0.108968 -0.0106035 --0.0150262 -0.0314413 -0.00294056 -0.00740344 --0.0594208 -0.0242813 -0.0211435 --0.0394764 --0.047959 --0.0280018 --0.000666834 -0.0106659 -0.0268797 --0.0585831 -0.0573295 -0.0111613 --0.0587336 --0.101632 -0.0391626 --0.0438723 --0.0168507 -0.0264268 --0.0315218 -0.123737 --0.0164342 -0.0165449 -0.00785665 -0.0151518 --0.105062 --0.0123202 -0.00176569 --0.00895732 --0.016182 --0.0599971 --0.022966 -0.0125509 --0.104698 --0.11591 -0.0588232 --0.00541252 -0.0289333 -0.0157827 --0.00189871 --0.0132502 -0.0114042 --0.00405763 --0.011891 -0.0300931 -0.0369946 -0.0404599 --0.0794212 --0.00830756 -0.0824923 --0.0312402 -0.0733484 --0.0180419 --0.0443431 -0.088957 -0.000820968 -0.0496085 -0.0108782 -0.00947037 --0.0919806 -0.0416342 -0.00860895 -0.0119028 -0.0130821 -0.0199132 --0.0608412 -0.0191128 --0.0163223 --0.0195289 -0.00998923 -0.0737261 --0.0382318 -0.0535042 --0.0301928 -0.0200539 --0.132202 -0.0294924 --0.0795365 --0.0318888 -0.0579538 --0.0257168 -0.0857682 --0.0476053 -0.087438 --0.0163828 -0.0177702 -0.0313293 --0.000976401 --0.0216073 --0.0397308 -0.0461976 -0.0384438 -0.0305988 --0.0179604 --0.0209974 --0.0349518 -0.121391 -0.054394 --0.048957 -0.0718661 -0.00721403 -0.00684247 --0.0716607 --0.0058869 -0.0415734 --0.0116048 --0.00391229 --0.00816445 -0.0159742 -0.0129912 --0.0381472 -0.0654412 --0.0134234 --0.0263521 --0.0708796 --0.025632 --0.0868578 -0.0573181 -0.0220729 -0.02203 -0.0916327 --0.0787203 -0.029879 --0.019075 -0.0697546 --0.0566581 --0.00997104 --0.0174557 -0.014601 -0.0657423 --0.0177874 -0.0156876 -0.0138685 --0.0342839 -0.00630088 -0.0338998 --0.101663 -0.0543998 --0.0532347 -0.0231342 -0.0149586 --0.0172615 --0.020778 -0.00838788 -0.0108424 -0.019581 --0.0553981 --0.0350294 --0.0910183 --0.000814401 --0.0428686 --0.0216156 -0.0605019 --0.0534445 -0.0642426 --0.00789664 -0.0243183 --0.096875 -0.0288374 -0.0524902 -0.0126217 -0.00679021 --0.0291191 -0.0222341 --0.00458732 -0.0924135 --0.0267873 -0.0592915 -0.0721899 --0.0590669 --0.0607621 --0.0405184 --0.0244724 -0.0100277 --0.0445814 --0.0340972 --0.0280367 --0.0149895 --0.0604624 --0.0264269 -0.103888 -0.0666657 -0.0118623 --0.0392797 --0.00696246 --0.0233623 --0.0213771 --0.0444357 -0.0433145 -0.0572447 -0.0116919 --0.0229331 -0.0350158 -0.04725 -0.0237281 -0.0152356 --0.0400238 --0.0380441 --0.143478 --0.0477222 -0.0307865 --0.0259238 --0.00404605 -0.000335026 -0.0124029 -0.0166256 -0.0369179 -0.0221104 --0.0166509 --0.0113616 -0.0133218 -0.0647862 --0.0472658 -0.0324564 -0.0317118 --0.0955331 --0.0148108 -0.03599 --0.0350659 --0.0509775 --0.0831011 -0.0132551 --0.00698443 -0.00594698 --0.0679663 -0.0118414 -0.0544615 -0.042234 -0.0976884 -0.0585088 -0.00383094 -0.078135 -0.0227359 -0.000157735 --0.0419803 --0.0928715 -0.0159374 --0.0011659 -0.0921577 --0.0387 -0.0181686 -0.0533775 -0.0630671 --0.0173886 --0.0243288 -0.0149995 --0.0358622 --0.0638495 --0.115886 -0.00193528 -0.0307567 -0.0229936 --0.0393481 --0.0397974 --0.0225537 -0.00234269 -0.027678 -0.0426599 -0.0404505 --0.0125949 --0.0269844 -0.0265993 --0.0444091 --0.0222447 -0.00462334 --0.00814622 -0.0306556 --0.0194247 -0.000754156 --0.0861167 -0.063511 --0.0702223 -0.00328608 -0.0138171 -0.0371843 -0.0208216 --0.0777428 -0.00723982 -0.0313808 --0.0152524 --0.0138812 --0.0221341 -0.0389522 -0.0254553 --0.0356401 --0.0043824 -0.0338348 -0.0675273 -0.0467507 -0.0149701 --0.0740112 -0.022021 --0.0909968 --0.0366999 -0.00238869 --0.0751036 --0.029525 -0.0493791 --0.0428212 --0.0239806 -0.0363189 -0.00709816 --0.0804639 --0.0161477 --0.0764852 --0.0160956 -0.048552 -0.0152951 -0.0641617 --0.0634845 --0.085589 -0.0283911 -0.0679574 --0.0331918 --0.00392718 -0.0325553 --0.0655624 -0.0106254 -0.125227 -0.063296 -0.0342141 -0.113995 --0.00580818 --0.0750407 -0.0285802 -0.00974716 --0.00850147 -0.0501923 -0.0254109 -0.0536159 --0.0453964 -0.0595107 -0.0310588 --0.0654797 -0.00271314 --0.00618346 -0.0422381 -0.0171934 -0.12807 -0.00848823 --0.0707538 -0.0425748 --0.0191656 --0.0132256 -0.00760121 -0.00659139 --0.0455526 -0.00125045 -0.0595687 -0.00343687 -0.0507634 -0.0121905 -0.0639522 --0.0477006 --0.0327601 -0.0798032 --0.0396407 -0.0458223 -0.0281382 -0.0675514 --0.0688883 -0.0275241 -0.0442018 --0.0478588 --0.0188667 --0.0144317 -0.0185972 -0.00207942 --0.0481785 -0.0297352 -0.0742305 --0.00466067 --0.0492167 --0.00906881 --0.0921403 -0.0648747 --0.00515756 --0.0515534 --0.0999441 -0.0690042 -0.0667655 -0.0317445 --0.102141 --0.0167316 -0.0415492 --0.0659075 --0.0386922 -0.00513637 --0.0154362 --0.000799827 --0.0126662 --0.019374 --0.0455625 -0.032493 --0.0281192 -0.00432448 -0.0177481 -0.0195423 -0.0834503 -0.0143875 --0.014087 --0.00759893 --0.0580939 --0.010893 --0.039855 --0.119227 --0.0761941 --0.0503676 -0.0353506 -0.0406727 --0.0218828 --0.0778381 --0.0151238 --0.015074 --0.00887316 -0.0124008 -0.025807 --0.0302503 --0.0282348 --0.056074 -0.0471255 --0.000457524 --0.0111641 -0.0493046 --0.0323095 -0.0491185 -0.00123142 --0.00173744 -0.0321123 --0.0604892 -0.0459071 -0.0193557 --0.00212612 -0.0132342 -0.06308 --0.00164168 -0.127365 -0.136832 -0.0477367 --0.0552248 -0.0627097 --0.00592183 -0.0416483 -0.0429565 -0.0925479 --0.0106488 -0.0262001 -0.0223876 --0.0271881 -0.0658776 --0.0309185 -8.39879e-05 -0.0662296 -0.0239865 --0.00184843 -0.104075 -0.00175235 -0.0289413 --0.0478485 --0.0346564 -0.0410009 -0.0191382 -0.011084 -0.0818444 --0.00989545 --0.0258854 -0.00181424 --0.00300098 -0.0718649 --0.0203674 --0.0516197 -0.0075877 --0.0237639 --0.0474375 --0.0373473 -0.0350032 --0.0230677 --0.0433476 --0.0630235 --0.138901 --0.106175 -0.0529759 --0.0531038 --0.0161222 -0.0611479 --0.00600257 --0.0159477 -0.0391554 -0.0245479 --0.0145113 --0.0181247 --0.0324154 -0.0697092 -0.0684893 -0.0273494 --0.00484104 -0.0525629 --0.0131343 --0.0433985 --0.0428844 -0.0683992 -0.0177704 -0.00440281 -0.0301286 -0.015355 -0.101437 -0.0330133 --0.00296252 --0.0116586 --0.00132845 -0.00842176 --0.0241936 --0.00563083 -0.0288767 -0.0348219 --0.0350285 -0.0504766 -0.0267564 -0.0342018 -0.0363942 -0.0276249 --0.0495615 -0.0408034 --0.0119309 --0.0221608 --0.0870542 --0.0530328 --0.0321418 --0.0550902 --0.1236 --0.0100184 -0.00551775 -0.028351 -0.0576514 --0.00350648 --0.0248119 --0.0392448 --0.0269158 --0.0354591 -0.027716 -0.00411085 --0.0688819 --0.0483115 -0.0486172 --0.000572323 --0.061433 --0.056384 -0.0478709 -0.0563626 -0.039933 --0.0287492 -0.0251236 --0.000740159 --0.0427561 -0.0187881 -0.0370296 -0.0541428 -0.0304673 -0.00794125 -0.0257639 -0.0104623 -0.0537347 --0.0521608 --0.0706035 --0.077893 --0.140039 --0.00443261 -0.00307511 --0.0247034 --0.0161884 --0.0228618 --0.102667 -0.0628337 -0.056 -4.85078e-05 -0.0111637 --0.06847 --0.0645821 --0.0382113 -0.0522447 --0.00736432 -0.0550795 -0.031803 --0.0923616 --0.0369753 -0.00217865 -0.0531093 -0.0640529 --0.0155617 -0.0142415 --0.042816 --0.0525389 -0.0517248 -0.0589131 -0.0273482 --0.0248524 -0.03183 --0.012497 -0.0397145 --0.0330779 -0.101517 -0.0326959 --0.0814812 --0.0674993 -0.00194799 --0.0709246 -0.0517302 -0.0244754 --0.00288985 --0.0495933 --0.00957482 -0.023781 -0.018628 -0.0891168 -0.0773148 -0.0276696 -0.0263308 --0.0113783 -0.00999652 -0.0047705 -0.0560349 -0.0192785 -0.0529884 --0.0379589 --0.11765 -0.00259923 -0.058555 -0.0574495 --0.0920886 -0.0109137 --0.0122549 -0.00881967 --0.011705 --0.0994852 --0.0444859 -0.0194317 -0.012335 -0.0288926 --0.0526689 --0.0544607 -0.00796683 -0.00495442 --0.0512577 --0.0233279 --0.0612864 -0.0553205 --0.0172677 -0.0842538 -0.0305491 --0.0222112 -0.0248018 --0.00256865 -0.0877753 -0.0495292 --0.0182975 --0.0550576 --0.0877554 --0.0369258 --0.071096 -0.0325065 --0.0151133 -0.0382064 -0.00902415 --0.013241 -0.0802088 --0.0257249 -0.0586662 --0.0228682 -0.0685165 --0.022175 -0.0409182 --0.0201732 -0.0675741 --0.087966 -0.0498838 --0.0116988 --0.0378363 --0.0151323 --0.0242531 --0.0371961 -0.0573634 -0.0948964 -0.0157038 --0.00165242 --0.0982604 -0.00397301 --0.00888485 --0.0600621 -0.0344671 -0.0219076 -0.0575493 -0.0130879 -0.0865419 --0.0165568 --0.040379 --0.0827543 -0.00255577 -0.0128324 --0.0116585 --0.0674422 --0.0425109 --0.0398634 --0.0531835 --0.05243 --0.0691099 -0.036574 -0.0651994 --0.0155029 -0.0555064 --0.0327804 -0.0182907 -0.0166352 -0.00912913 --0.0754672 --0.0392159 --0.0111949 -0.00938729 --0.0275624 --0.0893494 --0.0224215 -0.00967344 --0.0906737 --0.0103626 --0.00262047 -0.00152452 --0.0405506 -0.0545249 --0.00595934 -0.0340505 -0.00744254 --0.018336 -0.0610065 --0.0521819 --0.0221709 -0.00392248 -0.0448022 --0.0217511 --0.00366649 --0.0701667 --0.00333286 -0.0294194 --0.0544205 -0.0391567 --0.0382435 --0.0111665 -0.00113424 -0.0846073 --0.0191305 --0.0326415 -0.0205999 -0.0458219 --0.0524747 -0.0565041 --0.0216917 -0.060571 --0.0333948 --0.0367079 --0.0485342 --0.0569813 --0.0580468 -0.0208197 -0.0409353 --0.046074 -0.0403463 --0.0202087 --0.0117276 --0.0512299 -0.0711022 --0.0424474 -0.0332793 --0.0587868 -0.00633621 -0.0712389 --0.0301066 --0.0833016 --0.0543486 -0.0288213 -0.0314193 -0.0552354 --0.027379 -0.0485338 --0.0022624 -0.0950212 --0.0601669 -0.0406885 -0.0240953 -0.0782341 --0.0598057 --0.0188473 --0.0306269 --0.0314776 -0.121289 --0.0849696 -0.0492416 --0.0188083 --0.0299177 -0.0135608 -0.0902191 --0.0780798 --0.0705808 -0.00523211 -0.0337756 -0.0460782 --0.017586 --0.0517757 --0.104517 -0.0402861 --0.00628888 --0.0270516 --0.0473796 --0.00247243 -0.0824114 --0.0175907 -0.00101381 -0.0524845 --0.00841059 -0.109546 -0.0228899 --0.0268366 -0.0193243 --0.0231967 -0.00398089 -0.0826362 --0.0884839 -0.0159461 --0.0420479 --0.0687688 -0.00677194 --0.0350536 -0.0620674 --0.0280286 --0.0499964 --0.0887836 -0.00693343 --0.0221271 -0.0765232 --0.0199976 -0.0153256 --0.169247 -0.0519018 --0.10342 -0.0292525 --0.00671891 --0.00473747 --0.00838013 -0.041048 -0.118026 -0.0323612 --0.021615 --0.000517995 -0.068013 --0.0509767 -0.0515046 -0.0154623 --0.0213926 --0.0298817 --0.00453736 -0.00592846 -0.0502849 --0.0567293 --0.112973 -0.0233414 -0.0316077 -0.0811278 -0.046108 -0.0175676 --0.0729494 --0.00164775 -0.0157624 -0.0368461 --0.0334965 -0.00775661 --0.0501085 --0.0200639 -0.0370346 -0.0540547 --0.0125048 -0.0115868 -0.0448282 --0.0494347 --0.0160261 --0.108588 -0.0469966 --0.0123161 -0.107256 --0.0562196 --0.0670091 --0.0274788 --0.00581534 --0.0174449 --0.10103 -0.00572217 --0.0179126 -0.104003 --0.0509564 -0.0122289 -0.0494048 --0.0389504 -0.0247455 --0.0408632 --0.0136797 --0.0247703 --0.00596017 --0.0112213 -0.00946885 --0.0138327 -0.10604 -0.0227831 --0.0226739 --0.0329087 -0.0327993 -0.0757124 --0.00941645 -0.0706231 --0.0402427 --0.0409321 -0.0593636 -0.0588326 -0.00973775 -0.0559922 -0.0115327 -0.00158803 -0.0769671 -0.0918873 --0.0303447 --0.0354694 -0.0011564 --0.0139013 -0.0315475 -0.000795672 --0.0483103 -0.0957459 -0.0194696 -0.051469 --0.0633083 -0.00698036 --0.0315583 --0.0668193 -0.0405375 --0.0396155 --0.0616679 --0.0576703 -0.0545437 -0.0559885 -0.0528447 -0.0488045 --0.0110375 --0.0365498 --0.0153299 -0.00150123 --0.0513137 --0.0202917 -0.0663251 -0.134499 -0.019035 -0.0229516 --0.032805 -0.0456032 -0.0489763 --0.0123439 --0.0404978 --0.0118635 --0.0183489 -0.0439957 --0.0321823 -0.0423983 --0.0633676 --0.0359255 --0.0212472 --0.124052 -0.0260052 -0.0367869 -0.0405214 -0.00670286 -0.00598314 -0.0153122 -0.0358514 -0.0911168 --0.0647294 --0.0314803 -0.00450239 --0.0373229 -0.0605465 -0.00709071 -0.0453109 -0.0228511 -0.021067 -0.0536143 -0.00448601 --0.0821808 --0.00843207 -0.055934 --0.019238 --0.0172849 --0.105043 -0.0271801 --0.0327632 -0.0741008 -0.0491873 -0.0284617 -0.00485798 --0.0356481 --0.0192323 --0.0548299 -0.0136958 -0.047187 -0.0682287 --0.034919 --0.00426504 -0.0198226 -0.0634851 --0.0159355 -0.0195203 -0.0564298 --0.0227872 -0.0659144 -0.0139402 -0.0654956 --0.0339494 --0.0574629 --0.0867644 --0.0467254 -0.034164 -0.0391276 --0.049476 --0.00573053 -0.0505425 -0.0110785 -0.0841392 -0.0271141 --0.13653 --0.00989238 -0.0259036 -0.106943 -0.0439225 --0.0140493 --0.00147441 --0.0117671 --0.0137053 -0.064632 --0.0792859 --0.00163079 -0.0352092 -0.0224624 -0.0206567 -0.115873 -0.0396271 --0.0252404 -0.052163 -0.027853 -0.060241 --0.0148412 -0.00811442 --0.0114945 -0.0315776 -0.0577415 -0.0703026 -0.00549913 --0.0783241 -0.0175958 -0.0815019 -0.0156013 -0.0551634 --0.0488853 --0.0384579 --0.0482124 -0.0454689 --0.0254572 --0.0496029 --0.102733 --0.0388697 --0.0558212 -0.0220557 -0.0472038 --0.0247579 -0.0437811 -0.0769459 --0.040836 --0.067417 --0.0639352 --0.122759 -0.0119221 -0.0340243 -0.0220748 --0.0382289 -0.000605291 --0.00725759 --0.0725601 -0.0733289 -0.0901035 -0.0775647 --0.0221916 --0.0494117 --0.0762916 -0.0579404 --0.0745012 -0.00712724 --0.0811213 -0.0249034 --0.0225904 -0.035369 -0.11303 -0.0458134 -0.165298 -0.0389821 -0.074127 -0.0357659 --0.0766109 --0.0329677 --0.132411 -0.047269 -0.0199064 --0.0120392 --0.0538989 -9.49002e-05 --0.00421408 -0.0158882 -0.103696 --0.0400117 --0.0697362 -0.0341006 -0.0356838 -0.0607022 --0.0136985 --0.0408019 -0.0534034 --0.0102578 --0.0728517 -0.00780226 --0.0266419 -0.0324573 --0.0222651 --0.0425947 --0.00850287 --0.0279942 -0.0231418 --0.00545116 --0.0322533 --0.0232058 --0.0283301 --0.0602385 -0.037352 -0.00125708 -0.0637639 -0.0357107 -0.0526789 --0.0156527 -0.0560419 -0.0242624 -0.0154359 -0.0470021 -0.0509131 -0.0213149 -0.0320023 -0.0853117 -0.00676328 -0.0151403 --0.00726717 --0.00262696 -0.0166359 --0.0427763 --0.0690163 --0.0687419 --0.0278296 -0.0303124 --0.00423463 -0.0338954 -0.0133289 --0.0602122 -0.0564264 --0.0237327 --0.00717417 --0.0647984 --0.00514749 -0.0538098 --0.00423755 --0.0464726 -0.0526274 --0.000683789 -0.0823233 --0.0311527 --0.0190652 --0.0415299 -0.0221798 --0.0182698 -0.00988894 --0.0659133 --0.0393911 -0.049913 --0.0488299 --0.0559155 --0.041007 -0.0182576 --0.0388739 --0.00850767 --0.10328 --0.00142778 --0.0854841 --0.0190077 -0.0797215 -0.021026 --0.0149658 -0.0157782 --0.0470051 --0.0208422 --0.00945111 -0.0595166 -0.0212748 -0.0117885 --0.0287524 --0.108725 --0.0101425 --0.0041369 -0.0514892 --0.124897 --0.0183443 --0.0178369 --0.0145805 --0.0414572 --0.0524395 -0.00342781 --0.0248554 --0.0489044 --0.0156017 --0.0170128 --0.0261334 --0.0109679 --0.0572406 -0.0356131 --0.0350959 -0.0168314 -0.0605943 -0.0312483 --0.0205602 -0.0483225 --0.0905763 -0.109491 -0.00667246 --0.0398399 -0.0402075 --0.0257191 --0.0199764 -0.0618145 --0.016006 -0.00574369 -0.00375843 -0.0300851 --0.0667627 --0.016412 -0.00173977 --0.0342488 -0.0146364 --0.0362823 -0.0700497 --0.108575 -0.0225894 --0.0150268 -0.0515751 -0.0752382 -0.0580582 -0.0520227 --0.0351186 -0.0488749 --0.0311582 -0.0140429 -0.010934 -0.0354331 --0.0399774 --0.0335695 --0.0314479 --0.00081635 -0.00176819 --0.00405224 -0.0347482 -0.0931293 -0.0441723 --0.0271718 --8.20486e-05 -0.0387767 -0.00712997 --0.0291606 --0.0584906 -0.0493719 --0.022285 --0.049572 --0.0133355 --0.0675226 -0.0512877 --0.0560396 -0.00901035 -0.0787192 --0.00285916 --0.0752905 --0.0486998 --0.0505627 -0.000257169 -0.00578079 --0.0309344 --5.96307e-05 --0.101082 --0.0111241 -0.0033677 -0.0607582 --0.0283202 -0.0183853 --0.00931347 -0.0215394 --0.0417905 -0.0807982 -0.0679444 --0.0501434 -0.0578513 -0.0635239 --0.0285744 -0.0775431 -0.0885057 -0.065454 --0.0356108 -0.0307145 -0.0388492 --0.116029 -0.0265412 --0.00417516 --0.0224936 -0.0184088 -0.0246003 --0.000331321 -0.0495306 -0.0803036 --0.00361699 --0.0126614 -0.0192011 --0.0303297 -0.0654177 --0.0341571 -0.0565779 --0.0103844 -0.0606909 -0.0024081 --0.0636242 --0.0803186 --0.0163799 -0.0373487 -0.0505222 --0.0138249 --0.0572815 -0.118749 -0.0826902 -0.018628 --0.00656231 -0.0405989 --0.00625508 --0.040388 --0.00357253 --0.0256621 --0.0589082 -0.0422664 -0.0187519 --0.0186396 -0.0991312 --0.0851737 -0.0258835 -0.0695052 --0.0231525 --0.0426816 --0.0161319 --0.0315383 -0.0372353 -0.0096593 -0.0547439 -0.0113738 -0.0603793 --0.0129522 --0.0107063 -0.00773719 --0.040282 --0.0251353 --0.0182858 -0.0526522 --0.0495124 -0.0684808 --0.0382075 --0.0554155 --0.0157159 --0.0227729 --0.0259662 -0.0486206 -0.0156873 --0.0676117 --0.0641042 --0.0660397 -0.105934 --0.113679 -0.046617 -0.0136234 -0.0367251 --0.0306481 -0.0850859 -0.065384 -0.0749506 --0.0160689 -0.043963 --0.0266473 --0.0155562 --0.0753214 -0.0207836 -0.0376532 -0.00706247 -0.0105832 -0.00329868 -0.0219332 --0.0120442 --0.0318131 --0.100804 -0.0315618 --0.0176262 -0.0118699 -0.0100314 --0.0135507 --0.000891035 --0.10512 -0.0696102 -0.0560123 -0.0355679 --0.0114458 -0.105851 --0.0536683 -0.0856087 -0.00918146 --0.0517371 -0.022977 --0.0192047 -0.0750467 --0.0175582 -0.0745985 --0.0149058 --0.0860021 --0.036381 --0.0248288 -0.0195574 -0.0735009 --0.0210867 -0.0285255 --0.0276585 -0.0421703 -0.077446 -0.0419173 --0.0731225 -0.0201842 --0.0318426 --0.0148657 -0.0018661 --0.00267648 -0.0503808 -0.0362871 --0.035103 --0.0208859 -0.0683801 -0.097555 --0.0511984 --0.00292322 --0.123889 -0.0248281 --0.0496353 -0.0389608 -0.0155279 --0.0178449 -0.00968432 --0.0650842 --0.043011 -0.0434939 -0.0109103 --0.0134379 -0.039514 -0.00317301 --0.0113229 -0.00185585 --0.0251784 -0.00458636 -0.0863913 -0.0193618 --0.0738024 --0.0136959 -0.00469991 --0.0766041 --0.0304181 --0.000539717 -0.00387734 -0.0916616 -0.0803499 -0.0122659 -0.00415788 -0.0439742 --0.0536845 --0.0735997 --0.0109212 -0.0569361 --0.0664542 --0.00168131 --0.0224474 --0.0153474 -0.000187071 --0.000681393 --0.0166042 -0.0121672 -0.0725167 -0.0915679 --0.0399188 --0.0607454 -0.000366485 --0.00623758 -0.0648773 --0.0129734 --0.0100542 --0.00531537 -0.017538 -0.0231188 --0.0583554 -0.0244653 --0.0563538 --0.00290287 -0.0371067 -0.010075 -0.000713765 --0.00222223 --0.013296 --0.0242983 --0.0573207 -0.00434428 --0.00864097 -0.0287433 --0.0766561 --0.0654766 -0.0945939 --0.0434994 -0.0394365 -0.0981027 --0.0618177 --0.0771809 -0.0283519 --0.0187787 --0.0675996 -0.0591836 --0.0276984 -0.0308913 --0.0552344 --0.00732585 --0.0173021 --0.0154776 --0.0488933 -0.0598803 -0.104117 --0.0703863 --0.0127108 --0.0241699 --0.0487433 --0.00755308 -0.0728241 --0.0194782 --0.0493008 -0.0241261 --0.130892 -0.0138217 --0.0360588 --0.0125039 --0.0091496 -0.0822338 --0.158946 -0.0426237 -0.0114844 -0.0966238 -0.00841514 --0.0348544 -0.0355114 --0.0529672 -0.104864 -0.055148 --0.0823935 --0.0687296 -0.0838031 -0.0208512 -0.0162124 -0.065444 --0.00128632 -0.021787 --0.00679642 -0.0494993 -0.030988 -0.00769038 -0.0194834 --0.0482215 -0.104573 --0.0154422 --0.0142889 -0.109575 --0.0809512 -0.0651121 -0.0115344 -0.000349122 -0.100933 -0.203069 -0.0784537 --0.041557 -0.00249121 -0.0266923 --0.0270338 --0.0580272 --0.159451 -0.0665625 -0.00931003 -0.0402582 -0.0201973 -0.0260412 -0.0703049 -0.00158253 -0.037246 -0.0633862 -0.00734873 -0.108875 -0.0609634 -0.00793097 -0.0122762 --0.0428032 --0.0520298 -0.0109591 --0.0130288 -0.0193933 --0.0182593 --0.000677093 --0.0187224 -0.0289502 --0.0566005 --0.0418175 --0.0606093 --0.0484892 -0.0292106 -0.031144 --0.0153595 --0.00096297 -0.0527386 --0.0742189 -0.00805306 --0.00151734 -0.066603 --0.0150268 -0.0546953 -0.00329591 -0.0201881 --0.0290285 -0.049507 -0.095758 --0.022436 --0.0330048 --0.0352455 --0.0704239 --0.0850268 --0.0634067 --0.087144 --0.0534295 --0.0823573 -0.021066 --0.084725 --0.0391184 --0.0483156 -0.020873 --0.0360994 --0.020979 -0.00404354 --0.158867 --0.0491304 --0.021602 --0.00658113 -0.0366738 -0.0632878 --0.0769069 -0.0267766 -0.00835639 --0.118181 -0.0586229 --0.019644 --0.120258 --0.033452 -0.0304605 -0.0241571 --0.0154704 --0.0732237 -0.141528 --0.0495804 --0.0737272 --0.0233 --0.0143493 --0.0165916 -0.0542255 -0.0154554 -0.00279517 -0.105231 --0.0955197 -0.0246332 -0.0586758 -0.0238668 -0.00549068 --0.0450206 --0.00971519 --0.0812497 --0.123107 --0.0486748 --0.035498 -0.00238312 -0.0231383 -0.102201 --0.110378 -0.00306669 --0.0270746 --0.0594047 -0.0103119 -0.0281216 --0.0230291 --0.0579792 --0.0328766 -0.0210708 -0.0400573 --0.00857936 -0.0568766 --0.047236 --0.0869201 -0.120779 -0.0264696 --0.0983173 -0.0235554 --0.0393399 --0.0751675 --0.0849003 --0.00963854 --0.0815832 -0.0780428 -0.0574238 -0.00691166 -0.0735234 --0.0517378 --0.00986244 --0.0296468 -0.0223444 -0.114523 --0.00486041 --0.0612355 -0.0290071 --0.0282013 -0.130613 --0.00637939 --0.044366 -0.0182617 --0.0432888 -0.0359759 --0.00686364 -0.0122766 --0.0851656 -0.0431394 -0.039207 -0.0412938 --0.0248541 --0.0150994 --0.0350417 --0.0493383 -0.0395346 --0.0111999 --0.000495893 -0.0322071 --0.105762 --0.0398636 -0.00633331 -0.0854073 --0.00733046 -0.029402 -0.060248 --0.00873453 -0.0438067 -0.0131648 --0.0354791 --0.0274271 -0.0456383 --0.000711679 -0.0242955 -0.039809 --0.0516595 -0.0370142 -0.0184072 --0.007065 --0.0987402 -0.023831 --0.00851459 --0.0276471 --0.0114865 --0.0242085 -0.00918373 --0.0472321 -0.101853 -0.0567118 -0.0281598 --0.0613338 --0.021133 -0.0276999 -0.0239165 --0.118007 --0.0218871 --0.0368363 --0.00997551 -0.00487683 -0.0420238 --0.0340432 --0.0192823 -0.0550792 -0.0365142 -0.0082082 --0.0497227 -0.0504208 --0.036744 -0.0949193 --0.0128835 -0.0555778 -0.00825919 --0.100018 --0.0118634 --0.05725 --0.0852074 --0.0526763 -0.0626938 --0.0234351 -0.0529764 -0.0544878 --0.0538459 --0.0592941 --0.0268153 -0.106732 -0.0290357 -0.0182919 -0.0270827 -0.0129453 -0.0278431 -0.010126 --0.0294364 -0.0314234 --0.0605011 -0.0499004 --0.00364327 -0.0417681 -0.0398177 --0.104355 --0.0102496 -0.0192734 --0.0593757 --0.022737 --0.044075 --0.057929 -0.194982 -0.0560982 -0.040585 --0.0251504 --0.00448456 -0.00946654 -0.0384149 -0.00998312 -0.0327206 -0.0223077 --0.0284792 --0.000766355 --0.0371639 -0.0495754 -0.015099 -0.0520939 -0.0810771 -0.0484899 --0.101793 --0.0175311 -0.0642496 --0.00706479 --0.0111619 -0.0701583 -0.025406 -0.0107497 -0.0378436 --0.00878423 -0.0056493 -0.0324956 -0.0527364 -0.0168508 --0.0577268 --0.0074867 -0.0867927 --0.0795822 --0.0494088 -0.00679595 --0.0539002 --0.107045 -0.0604543 --0.00671015 -0.0129346 -0.0412918 -0.0565815 -0.032561 --0.00598493 -0.0411479 -0.00278237 -0.0098571 --0.0462983 -0.0212196 --0.065114 -0.0819622 -0.0736152 -0.0132839 -0.024387 --0.0440569 -0.0638483 -0.0378122 -0.0110241 -0.0324031 --0.0431437 --0.0395117 -0.0336672 --0.00355114 -0.0369372 -0.0672152 -0.00973308 --0.0368213 --0.0713449 --0.0236498 -0.017604 -0.025304 -0.0448121 --0.033276 --0.00578895 --0.0900333 -0.0260386 -0.0777144 --0.0788628 -0.0513288 --0.0301515 -0.0395152 --0.0886003 -0.0584209 -0.0221092 --0.00105357 -0.0581161 -0.0686855 --0.000430558 -0.0666208 -0.0344472 -0.12793 --0.0533762 -0.0180634 -0.127616 --0.0651094 -0.112931 -0.0189881 --0.0787676 -0.0859762 --0.0444282 -0.00868176 -0.00598006 -0.0794239 --0.041868 --0.0129784 -0.0659884 --0.0493451 --0.0170526 --0.0672568 --0.10643 -0.0389394 -0.040099 -0.0264097 --0.0492632 -0.0462704 --0.0220689 --0.050681 --0.00916457 --0.0841107 -0.0586478 -0.0702795 --0.0701529 --0.0538891 -0.0209655 -0.00930088 --0.104488 -0.0216606 --0.0676592 --0.179125 -0.0566545 -0.0246655 --0.0366117 --0.0392865 --0.0112275 -0.0630329 --0.00270912 -0.0143154 --0.00274781 -0.00190014 -0.0370576 -0.0414258 -0.0384573 --0.0272884 --0.0352552 -0.024257 --0.0681583 -0.0338474 -0.0440782 -0.0016562 -0.0336462 --0.0418734 -0.00452452 -0.0680286 --0.0715545 -0.00344447 -0.108323 --0.00617545 --0.0891435 -0.00990142 --0.106406 -0.0206217 -0.0332467 -0.0481459 --0.0102545 -0.0436872 -0.00628274 -0.128918 -0.0457875 -0.080352 -0.0368423 -0.00415703 --0.0189961 -0.00591885 -0.0367636 --0.0382987 --0.0217557 --0.0654074 --0.0584189 --0.0284063 -0.00453129 --0.00882054 -0.0343061 -0.0337032 --0.0348581 -0.0234602 --0.0371815 -0.0256737 -0.020406 --0.0286608 --0.03811 --0.0233543 -0.00558387 --0.0843023 --0.0372036 --0.0167864 -0.0540955 --0.106341 --0.00670305 -0.0641467 -0.00460203 -0.0822707 --0.0469603 --0.0227736 --0.062516 --0.00827191 --0.0504438 -0.029791 --0.0135805 -0.0455656 --0.0141477 -0.0706425 -0.0511115 --0.114506 -0.11551 -0.0408273 --0.0147126 --0.016868 --0.0852793 --0.0278438 --0.0673657 -0.000687794 --0.0277948 -0.0688265 --0.0584736 -0.0464031 --0.0248382 -0.0485472 --0.0500579 --0.00992155 -0.0487637 --0.0214727 -0.00768665 --0.0886805 --0.0028801 --0.0184952 --0.00438713 -0.0176716 --0.113144 --0.0648896 --0.0484216 -0.0283695 -0.102859 -0.0920784 -0.0021824 -0.0522061 -0.0195353 --0.00542224 --0.0551078 -0.00330767 -0.0299223 --0.0461995 -0.0473956 --0.0349537 -0.0219231 -0.0127556 -0.0122574 --0.0630881 -0.0192777 --0.0344321 --0.0144184 --0.00724054 --0.0976701 --0.0215934 -0.00629072 --0.0284264 -0.00429267 --0.0781069 -0.0430631 --0.0679255 -0.0818432 --0.043555 --0.0308173 --0.0877117 -0.0394005 -0.0433017 -0.152255 -0.0362683 --0.0196907 -0.0331706 -0.024577 --0.0375367 --0.0450213 --0.115397 -0.0369955 -0.0477994 -0.0552519 --0.0142359 --0.034612 --0.0605364 -0.0370456 --0.022944 -0.0143555 --0.0234259 --0.0346199 -0.0672674 --0.0360205 -0.0324672 -0.0754493 -0.0970168 -0.00348036 -0.101235 -0.00410962 --0.0690675 --0.0642586 -0.0315097 -0.106472 --0.116713 -0.0331935 -0.0673213 --0.0369318 --0.00204596 -0.102056 --0.0844902 --0.00123898 --0.0771502 -0.0309793 -0.0736331 -0.0919916 -0.0366533 -0.0350274 -0.025812 -0.00254514 --0.0271121 -0.0156223 --0.0684797 --0.00876964 -0.0289942 -0.0340048 --0.0428142 --0.0765989 -0.0350238 --0.0357638 -0.0445802 -0.0123874 -0.019919 --0.0358412 --0.0663593 --0.0561269 -0.0350982 --0.0283941 --0.0760347 -0.0230354 --0.00710275 -0.00645056 --0.101904 --0.00685341 -0.0138852 --0.0529659 -0.093153 --0.00765789 --0.00654855 --0.0363873 -0.0340837 --0.0193234 -0.00370128 -0.0824683 -0.0725446 --0.108095 -0.0169239 --0.0933232 --0.012626 -0.0137045 -0.00121357 -0.0156242 --0.0599897 -0.0715705 -0.0203433 -0.0139804 --0.0221468 -0.0297072 -0.00775111 -0.0151183 --0.00901443 --0.00365303 -0.0633816 --0.0389834 -0.0525188 --0.0100128 -0.00382542 -0.0503457 --0.00861587 --0.0247338 --0.0297352 --0.0201363 -0.0257718 -0.0641536 -0.0099282 -0.0124435 -0.011585 -0.0106933 -0.0173298 -0.00673276 --0.0509353 --0.0385148 --0.0120366 -0.0254919 -0.102347 --0.0216665 -0.0387166 --0.0932853 -0.0160518 --0.00628113 --0.0551544 -0.0165548 --0.0676933 -0.0542799 -0.0218421 --0.0638901 -0.00789358 -0.140211 -0.0330041 --0.0247604 -0.0409116 --0.0276589 -0.028738 --0.0373336 -0.0148621 --0.107412 -0.0326873 -0.00355567 --0.00273909 -0.0105876 -0.0546711 -0.0198846 --0.0702241 --0.00977926 --0.0232621 --0.00404993 --0.131435 -0.0134028 --0.112772 --0.0714928 --0.0321737 -0.0371472 -0.0759927 --0.0735178 -0.0191304 -0.0607963 --0.00749143 --0.0301056 --0.00804527 -0.0315179 -0.00253723 --0.0396442 -0.0266907 -0.0612525 -0.0547959 -0.064169 -0.0261 -0.0565541 --0.0441685 -0.0699121 -0.0703243 --0.0133843 -0.0244188 -0.0585077 -0.100296 -0.0950457 --0.0941488 --0.00774909 -0.0561509 -0.0428646 -0.0168144 --0.0302738 -0.105451 -0.130846 --0.0637491 -0.0420559 -0.00674652 -0.0133134 --0.0160303 -0.0884686 --0.0233044 --0.00855802 -0.0610333 -0.0430626 -0.00793868 --0.0573246 -0.025598 --0.143425 -0.0526062 --0.0342207 -0.0171699 --0.0246617 --0.0558681 --0.0397712 -0.0232473 --0.043606 -0.0131873 -0.0631697 -0.0377334 -0.00409753 -0.0103547 --0.0689576 --0.0968631 -0.0581939 --0.0839858 -0.000813218 -0.0173946 -0.0637643 --0.0862701 --0.0757277 -0.0519249 --0.0440267 -0.0419596 -0.0908387 --0.0126996 -0.0419913 -0.013079 -0.0270273 -0.0839438 -0.0266999 -0.00159737 --0.0696343 --0.0398796 --0.00469377 -0.0858488 -0.0550644 --0.00468178 -0.0317773 -0.0229798 -0.0278737 --0.00107016 -0.0856328 -0.0539885 -0.0276557 -0.0579833 --0.0744846 -0.0311346 -0.0703478 --0.0313845 -0.00429556 --0.000547215 -0.00598692 -0.0548402 -0.0698044 -0.112687 --0.0485271 --0.0092848 -0.0111999 --0.0148396 --0.0509748 --0.0313794 -0.0607236 --0.024337 -0.0176638 -0.0477574 --0.0535115 -0.0149347 --0.0593851 -0.0638118 --0.0685481 -0.0293423 --0.00870826 --0.0207803 --0.0932547 --0.0792888 --0.0093163 --0.0217803 --0.0822588 -0.0243119 -0.0553149 -0.0595764 -0.0892537 -0.0432787 --0.0567425 -0.0793643 --0.00373277 --0.0266653 --0.06445 --0.00633522 -0.010298 -0.0576901 --0.0076835 --0.0396042 -0.023759 -0.0293955 -0.0370681 --0.0202511 --0.00715059 --0.0328288 --0.0476365 -0.00568505 -0.00473381 --0.0631125 -0.00489755 -0.0946966 -0.0334845 --0.0771503 --0.0516038 --0.00693376 --0.0157002 --0.0228662 -0.0379918 -0.0162298 --0.024252 -0.0218888 -0.00182512 --0.00424781 --0.0127413 --0.0599355 --0.0354965 -0.028875 -0.0708166 -0.0200357 --0.0880781 --0.0115465 -0.125567 --0.0855043 --0.0090313 -0.0324949 --0.0324759 -0.0450629 --0.0742353 --0.0313341 -0.0553077 --0.0366598 -0.0160551 -0.037546 -0.0602401 -0.0172482 --0.00419709 --0.00662752 --0.0373866 --0.0937747 --0.0747785 --0.0349437 --0.0185244 -0.108466 -0.0447066 --0.0462204 --0.0596612 -0.0342443 -0.0354801 --0.0373304 --0.0205304 -0.0153442 -0.0190026 --0.0282339 --0.0441252 -0.00171681 --0.00504101 --0.0227759 -0.0485694 --0.0175133 --0.0306982 --0.0304984 --0.0447177 --0.00383587 -0.00416811 -0.0477288 -0.0444942 -0.0510551 -0.0154404 --0.0190175 --0.0135789 --0.0210358 -0.0299742 --0.0485678 -0.0769299 -0.0247073 --0.0166398 -0.00502028 --0.0260251 -0.0346752 --0.0382993 -0.0498415 -0.0342709 -0.00236039 -0.0442691 --0.110944 -0.0130926 -0.0803689 --0.085891 --0.00627842 -0.0104498 --0.00698086 -0.108658 --0.0424463 -0.0556582 --0.0161895 --0.0246632 -0.0528332 -0.0791382 --0.00389393 --0.0361965 --0.0321391 --0.0330908 --0.0635254 -0.0396627 -0.0372773 -0.0648657 --0.0249357 --0.00663598 --0.0124897 --0.0443316 -0.0525057 --0.0605618 --0.0158153 --0.0617281 --0.0113816 --0.0245593 -0.00929869 --0.00694842 --0.075554 --0.00505713 -0.0397014 -0.0348076 -0.014557 -0.0123479 --0.0563767 --0.0124206 -0.0218923 -0.0247956 -0.0422329 --0.000224844 -0.0469856 --0.0210168 --0.0128127 -0.0144132 --0.0157932 --0.112869 -0.00157664 --0.0528551 -0.0954075 -0.0267781 -0.0575508 --0.00986524 -0.00726117 -0.034816 -0.00345074 -0.0123421 --0.047752 --0.114543 --0.00607229 --0.040596 -0.0457824 -0.00727639 -0.0558 -0.0453569 -0.00438578 --0.00451175 -0.00407956 -0.0707536 -0.0407909 --0.0955835 -0.129596 --0.0322459 --0.0755873 --0.0237425 -0.0156486 --0.0243162 -0.0316817 -0.0709651 -0.000525198 -0.0471155 -0.0329445 --0.0352966 --0.0328134 -0.0682558 --0.0418085 --0.0945425 -0.0526 --0.0124947 --0.02472 -0.0235176 --0.0765682 --0.140034 --0.0208515 --0.0744537 -0.0108167 -0.0314499 -0.0492234 --0.032698 -0.00375163 -0.0149254 -0.0294285 --0.0171397 --0.00884848 --0.0670011 --0.0704952 --0.005143 --0.0969216 --0.0801479 --0.0224966 -0.0646341 -0.037774 -0.102976 --0.0603299 --0.0838355 -0.056964 -0.0886514 --0.111528 --0.0616028 --0.0224145 -0.0296254 -0.0270995 --0.0680601 -0.0190604 --0.0409403 -0.0385528 --0.0148357 --0.0479935 -0.0319178 --0.037205 --0.0902313 -0.114174 -0.0408646 --0.0685344 -0.00697362 -0.0107811 -0.0401561 --0.0394625 -0.0109921 --0.0202083 --0.0671421 -0.0115687 -0.0049406 -0.0494041 --0.00891927 --0.0375351 --0.0110426 -0.0948972 -0.100525 --0.0376617 -0.0291251 -0.0347537 --0.0542752 -0.0248743 --0.0116805 --0.000709659 -0.0494598 -0.0254564 --0.0471489 -0.0161002 -0.0958221 -0.0839523 --0.0176147 --0.00624635 -0.0373425 -0.0415502 --0.0218945 -0.010913 --0.0687137 -0.0747007 --0.0634026 --0.00117118 -0.00743964 -0.0145767 --0.0638562 --0.0523408 -0.0865645 -0.0518238 -0.0306055 -0.0173779 -0.0471308 -0.0345905 -0.0301711 -0.0277448 -0.0509124 --0.0714122 --0.0106581 -0.053456 -0.0679478 -0.00551433 --0.0317644 -0.0384439 -0.0329767 --0.00954934 --0.0323626 --0.053316 -0.00180115 -0.0162591 --0.0892099 --0.000691107 --0.112721 --0.0405226 -0.0636303 -0.0109756 -0.0791721 --0.0139016 -0.0548121 -0.0498841 -0.0585891 -0.0457807 -0.0364748 -0.0412964 -0.0728398 -0.0532988 -0.0336247 -0.0221741 --0.0934263 --0.0499807 -0.0432383 --0.0631359 --0.180685 -0.087572 -0.0479269 --0.0495046 -0.0133144 -0.0269726 -0.0515321 -0.101172 -0.0153788 --0.0347242 -0.0183046 --0.0529856 --0.038854 -0.0273321 --0.0112416 -0.0325473 --0.00388613 --0.00116022 -0.0576706 -0.0324261 -0.0431258 -0.0201958 --0.091881 -0.0240478 -0.00479363 -0.0252527 --0.06324 --0.0120513 -0.0345417 -0.0160637 -0.00643526 -0.134779 -0.0306933 --0.037462 -0.00633281 --0.0207956 -0.118244 --0.0426182 -0.0306553 --0.050168 --0.0656679 -0.0364196 --0.0240612 -0.00670768 -0.0434187 -0.0491871 -0.0286642 -0.00695428 -0.0372636 --0.0822615 -0.0266736 --0.0442887 -0.00853232 -0.0149386 -0.0255226 -0.0306767 -0.00670242 -0.0405041 --0.0670007 --0.0756664 --0.00829711 --0.00771729 -0.0347111 --0.0223423 -0.000196214 -0.0296998 -0.0300012 -0.033933 -0.123568 -0.0059918 --0.0128456 --0.0479237 --0.0628941 -0.0246851 --0.0486442 -0.00908254 --0.0293589 -0.00944166 -0.0345426 --0.0466422 -0.0187646 -0.0977779 -0.0163956 -0.0647182 --0.0349986 -0.105593 -0.000645186 --0.074567 --0.127986 -0.083393 -0.000813188 -6.83234e-05 -0.0554671 -0.00950634 -0.0399192 -0.0672418 -0.0554808 --0.000334109 --0.050264 --0.0318543 -0.0808589 -0.060504 -0.128427 --0.112474 --0.00969334 -0.0457402 -0.00540376 -0.0154063 --0.0830927 --0.0124401 -0.0161282 --0.0876881 -0.0290202 -0.0172991 --0.0784703 -0.0525469 -0.0466877 --0.0925774 --0.0742472 --0.0324302 -0.0109037 -0.162698 --0.0404534 --0.0527629 -0.0115525 --0.0605264 --0.0507503 --0.0223481 -0.0537973 --0.0109383 --0.0333252 -0.0596314 --0.020353 --0.0027191 --0.0171886 -0.0317041 --0.00793923 --0.0176835 --0.0213615 -0.0150444 --0.0394417 --0.0248782 -0.010381 --0.0601783 -0.0275107 --0.0620914 --0.00340271 -0.0145691 -0.00664908 --0.0138746 --0.0224468 --0.0136686 --0.0565881 --0.0122891 --0.0535581 -0.0370862 -0.0120542 --0.0118098 -0.0199871 -0.0521229 --0.0509067 -0.0112789 -0.029793 --0.0386855 --0.0442481 -0.0886712 --0.0609444 -0.00491907 --0.0135845 -0.0387984 -0.0394258 -0.0158889 -0.0320532 --0.0358992 -0.0100431 -0.00166967 --0.105458 -0.0224143 --0.0869969 -0.00685657 -0.0114656 --0.0864553 -0.0703406 -0.0636432 -0.102124 -0.0787005 --0.0480223 --0.00105785 -0.0503985 --0.0178665 -0.00502687 -0.0212795 -0.0807332 --0.00552521 -0.0401275 --0.0665463 --0.054011 -0.0151858 -0.0460269 -0.0212176 --0.0440421 -0.0467073 --0.00379428 --0.0097073 --0.0502792 --0.0228951 --0.0065356 -0.0894059 -0.0677465 -0.0833421 -0.0827341 --0.040559 --0.0381885 -0.012463 -0.0682036 -0.0338692 -0.00801282 --0.0638822 --0.0355919 --0.0188926 --0.0140597 -0.00952421 --0.0411922 --0.0411574 -0.0295741 --0.0101603 --0.0333067 --0.0095767 -0.0394462 -0.0148825 --0.00965237 --0.0441337 --0.00809196 --0.0491784 --0.00713148 -0.0347795 --0.025569 -0.0406227 -0.0679673 -0.0134471 --0.00477261 -0.032083 -0.0646194 -0.0755386 -0.00243395 -0.0477883 --0.0757855 --0.00346009 --0.00682662 -5.34592e-05 -0.0734271 -0.0175898 -0.0234008 -0.0427872 -0.0132936 --0.0236886 --0.00582477 -0.0204894 -0.0607252 --0.0282404 -0.0658734 -0.00960791 --0.00260297 --0.0728893 -0.0901856 --0.0326827 -0.0133324 -0.033379 --0.100031 -0.0716543 -0.0294737 --0.0472724 -0.0425656 -0.0652125 --0.0122106 -0.0228618 --0.0244335 --0.0554374 -0.00253105 -0.0464337 -0.0388624 --0.0572638 --0.0329697 --0.0387758 --0.0365593 --0.0355064 --0.0650118 --0.0450823 -0.0344283 -0.0617546 --0.0159823 --0.104744 --0.00982905 -0.0373206 --0.0198987 --0.0411234 --0.13657 -0.0483722 -0.0753164 -0.0177697 -0.0294158 -0.0745172 --0.109662 --0.0358348 -0.0188949 -0.00749293 --0.0600296 -0.0119394 -0.0800113 -0.0709859 -0.00690281 --0.158524 -0.022777 --0.00930329 -0.0158071 -0.00748573 --0.0846378 --0.033453 -0.0878181 -0.0742714 -0.00546187 --0.0566088 --0.0842244 --0.0291908 --0.0126918 -0.0598052 --0.0267222 --0.0117916 --0.004436 -0.00687038 -0.0273031 -0.0362532 -0.0177979 -0.0413826 --0.0737349 -0.0269828 -0.00272015 --0.0127811 --0.0445253 -0.0292113 --0.00549452 -0.0114993 -0.0165608 -0.00625032 --0.0256273 --0.0235358 -0.0781848 -0.0958851 -0.0255963 -0.100777 --0.0238838 -0.0413828 --0.00684974 -0.0501725 --0.0708326 --0.0176968 -0.0201533 --0.0265202 --0.0933884 -0.0110888 -0.0652825 -0.0348466 --0.0333235 --0.00962928 --0.0643228 --0.0155984 -0.0514286 --0.0125677 -0.0350033 -0.00782825 -0.00601138 -0.0198991 -0.0267112 --0.051934 -0.0605934 -0.010533 --0.00198024 --0.116394 --0.0108904 --0.0142434 -0.00262676 -0.0486161 -0.0226679 --0.0926732 --0.0249681 -0.0784995 --0.0532629 -0.0247582 -0.063331 --0.0507307 -0.00168958 --0.0579257 --0.0911048 --0.00119241 -0.0296501 --0.0475529 -0.00830292 --0.111672 -0.00816638 -0.00975531 --0.00134532 -0.00268887 --0.022737 --0.00448118 --0.124554 -0.0228741 --0.0372287 --0.0754874 -0.0508194 -0.0786717 --0.035921 -0.101767 --0.00427039 --0.0487285 -0.1085 -0.0294767 --0.0488454 -0.0234596 -0.0736935 --0.131439 --0.0233546 --0.0776658 --0.0450258 -0.0341567 --0.032021 -0.0379699 -0.0139921 -0.00595266 --0.0136019 -0.040954 --0.0167647 -0.0222619 --0.0559063 -0.000790368 --0.0370209 -0.0476302 --0.0144747 -0.0219796 -0.0167749 -0.0184852 -0.000504809 --0.0367174 --0.0484059 -0.0990615 -0.0347193 --0.0268796 --0.0222411 -0.0164194 -0.0414902 -0.0302703 -0.0129911 --0.0451047 -0.0436029 --0.00847125 -0.0958882 -0.0413146 --0.0140882 -0.0676394 --0.0523923 -0.0452196 --0.0730823 -0.0106427 --0.0364407 -0.0296861 --0.0164851 -0.0753776 -0.0335871 --0.10272 -0.0269777 --0.0285608 --0.0725887 -0.0211097 --0.0114622 -0.0230033 -0.0190247 -0.00517904 --0.014588 --0.069447 -0.0412942 --0.106576 --0.0819856 --0.0258616 --0.00382407 -0.0357891 --0.0472396 -0.062203 -0.0925024 -0.0076274 --0.0308495 --0.0240761 --0.01707 -0.0310052 --0.0189138 --0.0195039 --0.0182746 --0.00543062 --0.117727 --0.0390311 --0.0377143 --0.0236906 -0.00733846 --0.104465 -0.00451459 --0.0560156 --0.0563666 --0.0125014 -0.020749 --0.0347181 -0.0364034 -0.0205554 -0.0212591 -0.00715841 --0.0437798 --0.0869708 --0.0267577 -0.0178539 --0.0115315 -0.0890694 --0.0199735 --0.00840886 --0.0202732 --0.0248479 -0.0504546 -0.0385354 -0.108317 --0.0232864 -0.0611021 --0.0283174 -0.0849727 -0.0756522 -0.017584 --0.0891073 --0.0359273 --0.00810109 --0.0145569 -0.054726 -0.0490912 -0.0478567 --0.022636 --0.0660864 --0.0287383 --0.0199096 --0.0439899 -0.00426833 --0.0622933 -0.00936086 --0.0505016 -0.0648495 -0.0398144 --0.0641206 --0.0475851 -0.0157262 --0.0383407 --0.0784533 --0.0255273 -0.0732598 -0.0624279 -0.0275054 -0.00426671 -0.0640178 --0.0781543 --0.0223131 -0.0141678 -0.0471905 --0.0303944 -0.014591 -0.0834138 --0.0184766 --0.0146187 --0.0255865 --0.0295779 --0.00238215 --0.000389645 --0.0952263 --0.0253636 -0.0405386 -0.0406803 -0.00215089 --0.0210453 -0.0133905 -0.0681509 -0.0372727 -0.036191 -0.0357262 -0.0931725 --0.0185081 -0.0146106 -0.00758793 --0.057223 -0.0303563 --0.0193961 --0.0159897 --0.018491 --0.00612788 --0.00819232 -0.0840292 -0.0135991 --0.0261093 --0.0176602 -0.0535846 --0.0179434 -0.0505194 --0.026242 -0.021324 --0.00191058 -0.0662442 -0.0755917 --0.0709185 --0.0582172 -0.0303225 --0.0472077 -0.123364 --0.0606394 -0.0290715 --0.0457495 --0.0680115 --0.0242928 -0.068897 --0.0256894 --0.00305361 --0.00455527 -0.0310845 --0.0698656 -0.0772106 -0.00310063 -0.0467988 -0.0421344 -0.104045 -0.0248748 -0.00312281 --0.0386123 --0.0292383 -0.00323468 --0.024019 --0.0584284 --0.0447173 --0.0622998 --0.0494701 -0.067964 --0.0363573 -0.0165592 --0.0442285 -0.0287486 -0.0140099 --0.0242024 -0.0512266 -0.058559 -0.00370903 -0.0599435 -0.065354 -0.0144639 --0.0683486 --0.0214086 -0.054072 -0.0569704 -0.0739545 --0.0661606 -0.0288614 --0.0311881 -0.0575634 -0.00693014 -0.0496899 -0.120779 -0.000387514 --0.0035813 --0.0695442 --0.0586252 --0.0471364 -0.00183843 -0.00813127 -0.0271335 --0.0367771 -0.058332 -0.0391516 -0.0354245 -0.0228674 --0.0148209 -0.0283088 --0.0167669 --0.0301721 -0.0114048 -0.0601173 -0.0545752 --0.0587268 --0.0614774 -0.0800198 --0.0759564 --0.0398561 -0.0116158 --0.0685279 --0.0889761 --0.0243681 -0.148779 -0.150233 -0.0759378 --0.000972347 --0.0384077 -0.0535091 -0.0666406 --0.034294 -0.0128462 --0.00905662 -0.0551529 -0.0530209 -0.06991 --0.00898223 --0.0713836 --0.0860504 --0.0148052 --0.0264773 --0.0447658 --0.0605389 --0.00352737 -0.0160952 -0.00593889 -0.0446038 -0.0361801 --0.0358979 -0.0479383 --0.0501307 -0.0343995 -0.0441133 -0.0222729 -0.0143474 --0.0217966 --0.0180234 --0.0287845 --0.132604 -0.0789955 --0.0704291 -0.0754188 -0.0524674 --0.0660518 --0.0785391 --0.0156053 -0.0409786 -0.0924935 --0.0300864 --0.0205526 -0.0237827 --0.0584311 --0.0387918 -0.0345167 -0.0703075 -0.0193541 -0.0258477 -0.0385141 --0.0831929 --0.0892011 -0.027275 --0.0445738 --0.0722439 -0.00202363 -0.0314454 -0.0224951 -0.0589651 -0.0101901 --0.14077 --0.0769627 -0.00369097 -0.0131435 -0.0537298 --0.000856596 --0.0668291 -0.032504 --0.0812437 --0.0370509 --0.000331299 -0.0144799 --0.0213567 -0.0191029 --0.0228147 -0.0167547 -0.00643378 -0.0047726 -0.0218399 -0.0298452 -0.0266383 -0.00757228 -0.00702182 -0.0565365 -7.29884e-05 --0.00390235 --0.0288258 -0.0329069 --0.0379489 --0.0183773 --0.0232222 --0.0141551 --0.0213216 --0.052746 -0.0642239 --0.0248556 -0.0162448 -0.0938085 -0.0616259 --0.0567834 -0.0321072 --0.0646771 --0.0775166 -0.0114278 -0.000577391 -0.0434386 --0.00601186 -0.0233295 -0.00133466 --0.00794009 --0.0123345 -0.00117676 -0.0310643 --0.0167006 -0.042039 --0.0141017 --0.00781051 -0.00664228 -0.0298034 -0.0286045 -0.00397222 -0.0251505 -0.0380086 --0.0723029 --0.0384829 -0.0417988 --0.0825621 --0.0754854 --0.0749672 -0.0482775 -0.0204962 --0.0732827 --9.50677e-05 --0.027588 --0.0289549 --0.0282427 --0.0166493 --0.0240643 -0.0381076 -0.0488918 -0.0956869 -0.152523 --0.02124 --0.0933945 -0.0276882 --0.0386572 -0.053185 --0.0103115 -0.00961566 --0.116239 -0.0131858 -0.0726822 -0.0818622 --0.00945393 --0.0275422 --0.0308377 -0.0127925 -0.0419373 --0.0391026 --0.0462346 --0.00814729 -0.0346681 --0.042294 --0.0513659 -0.0125555 -0.020762 -0.0392934 --0.000856437 -0.0555446 --0.00139346 --0.00229217 --0.0467405 --0.0386951 -0.0664072 -0.0106484 -0.00470582 --0.0720595 --0.0474514 -0.0283733 -0.0590893 -0.0341436 --0.0224159 -0.00308038 -0.0386456 --0.0741231 -0.0396294 -0.0299775 -0.0263326 -0.111679 --0.0327264 --0.0535476 -0.014024 --0.00106521 --0.0142415 --0.0389247 -0.0189394 --0.0305007 --0.0646441 --0.0196336 -0.0490799 --0.044161 -0.051094 --0.0315047 --0.0799302 --0.0128745 -0.0307296 --0.09492 --0.0412567 --0.0270251 --0.0409905 -0.0757587 -0.0448361 --0.0582655 --0.0503262 --0.0160721 -0.103741 --0.0464289 --0.0313881 -0.0400367 --0.0625296 -0.020414 --0.0531252 --0.0201827 --0.108045 -0.059938 -0.0375506 --0.0840895 -0.0271267 --0.0211667 --0.0609823 -0.00639341 -0.0909263 -0.0442764 -0.0361479 -0.06783 --0.0787649 -0.0184231 -0.0366306 --0.0418597 --0.031091 -0.0166631 --0.0659415 -0.00424593 --0.0699517 --0.00245884 --0.0314088 -0.0254978 --0.0612022 --0.0526171 -0.00952665 --0.0863 -0.00507803 --0.0445109 --0.107453 --0.0179921 --0.0564576 -0.0275739 --0.0562312 -0.0336834 --0.00498238 --0.00085091 --0.0231058 -0.0396495 --0.0483698 --0.000519145 -0.0410787 -0.089217 -0.0794444 --0.0282317 -0.0388413 --0.0531609 --0.00258258 -0.108034 -0.0348122 --0.0470692 --0.0368325 --0.0820063 --0.0731638 -0.0377519 -0.009446 --0.0583731 --0.0608897 -0.0467819 --0.0710133 -0.0204456 -0.000974472 --0.0504403 --0.0226953 --0.0327166 -0.0732873 -0.103665 --0.0355824 --0.088269 -0.101071 --0.0275353 --0.0298615 --0.0204449 -0.0249967 -0.0611897 --0.0100846 -0.0370792 --0.0306898 -0.00969739 -0.0614322 -0.0810963 --0.039484 -0.00388868 -0.077731 -0.114577 -0.0638842 --0.0368815 -0.0946032 --0.0495858 --0.0354003 --0.0231366 --0.101636 -0.021167 --0.0273984 -0.00584378 -0.0272871 -0.0289544 -0.0821948 -0.0299698 -0.0892657 -0.0773066 --0.0246471 --0.135359 -0.0450918 -0.0888161 --0.0630492 -0.0168414 -0.0930502 -0.0523371 --0.0712733 --0.124457 -0.0331284 -0.0226056 --0.0293319 -0.0210437 -0.128136 -0.00509756 --0.0726499 -0.00868637 --0.0110809 -0.046886 -0.00650051 -0.0375203 -0.00319282 -0.0339853 -0.0429089 -0.132685 -0.00918909 -0.109728 --0.0240643 --0.0723483 --0.00977281 --0.0135808 --0.0132582 -0.0495707 --0.133892 --0.00422297 --0.0334529 -0.00440053 --0.0906213 --0.0625938 --0.156261 --0.00483176 --0.0603227 --0.0233536 --0.0961999 --0.00685884 --0.0417279 --0.0174818 --0.0217436 --0.0359775 -0.0376802 -0.0353344 --0.031183 -0.0337051 --0.0757772 -0.0402579 -0.0127067 -0.034616 -0.0921443 --0.00168155 -0.00774227 --0.0521984 -0.00027141 --0.0306468 -0.0124346 -0.0382972 -0.00307911 -0.0432868 --0.0101674 --0.098805 -0.00652184 -0.0425688 --0.00835045 -0.0182949 --0.039193 --0.0570292 -0.0215391 --0.108282 --0.0396632 -0.00308749 --0.0125259 --0.035853 -0.0374063 -0.0161556 --0.0689825 -0.0184598 -0.00795395 --0.0163685 -0.0155881 -0.0237766 --0.0580276 --0.0976684 -0.0137742 --0.0182551 --0.0762373 --0.0018984 --0.0623122 -0.0552577 --0.0169556 --0.0532084 -0.015406 -0.0552431 --0.0192641 --0.0136334 --0.0553311 -0.0819028 --0.0397929 -0.0702747 --0.0592926 -0.00421258 --0.0383873 -0.0104906 --0.0380938 -0.00218271 --0.0573074 -0.0527587 -0.025467 --0.00356423 -0.0335705 -0.0753002 -0.0291756 --0.00662912 --0.0227047 --0.0514357 -0.0105857 -0.0649116 -0.00573456 --0.102348 --0.0102626 -0.0939441 -0.00858292 -0.0330151 --0.106186 -0.0530798 -0.0519343 -0.054797 -0.0813123 --0.0539278 --0.0310465 -0.0404187 -0.0283309 --0.0119372 -0.00625814 -0.0519167 --0.0394529 --0.0350673 -0.127132 --0.0586656 --0.0618567 -0.0986609 -0.1104 --0.0149252 --0.085304 -0.0193193 -0.0680774 -0.0566755 --0.140569 --0.0738046 -0.0507896 -0.084525 -0.0835686 -0.0532945 --0.0343947 -0.0172155 -0.0801672 --0.0467993 -0.0480784 --0.0368274 --0.00627819 -0.0968517 --0.076615 -0.0224199 --0.080313 --0.010313 --0.0210293 -0.0304598 --0.0554511 -0.0838497 -0.05229 --0.0355155 -0.00238695 -0.0785574 --0.0127963 --0.039976 --0.0981498 --0.0323548 --0.0939307 --0.114126 -0.0449331 --0.0398498 --0.0215144 --0.0894295 -0.0799525 --0.055032 -0.0129041 -0.0827319 -0.0122711 --0.030279 -0.0416483 --0.0125951 --0.0433364 --0.00748745 --0.0557625 --0.076106 --0.0436786 --0.0432776 --0.00094251 --0.00630765 --0.0525933 --0.00294907 -0.0688404 -0.0674558 --0.00920168 -0.0446132 --0.0291048 -0.0103348 -0.0535549 -0.0441549 -0.0336881 -0.0261238 --0.0193751 -0.0580242 --0.043831 -0.0609847 -0.0427052 --0.0246213 --0.00386425 --0.0518978 --0.0177976 -0.0728565 -0.0751503 -0.000893659 --0.0443636 -0.0748449 -0.0783907 --0.0711942 -0.0398908 --0.0565634 --0.156583 --0.0297537 -0.0946827 --0.0448461 --0.00608554 -0.0160107 -0.0181339 --0.0149626 --0.0854603 -0.0189612 -0.0477314 -0.0246536 --0.00982609 -0.0666325 --0.0841386 --0.059733 -0.0611897 -0.011568 -0.0643083 -0.00157933 -0.00725057 --0.0169544 -0.0140665 --0.0278689 --0.0597735 --0.0179628 --0.0263356 --0.0749148 --0.0359753 -0.0558996 --0.0599358 -0.0418883 -0.0695321 --0.0618883 --0.0120003 -0.0292722 --0.0272223 --0.0352842 --0.0291398 --0.0930581 -0.00122922 --0.0144685 --0.00402381 -0.0203788 -0.000973033 --0.0303758 -0.0190026 --0.00619878 --0.012522 -0.0569774 -0.00724854 -0.015569 -0.0776623 -0.0909843 -0.0153728 -0.0104254 --0.0844181 --0.105674 -0.0168512 --0.0307862 -0.0711063 -0.0664531 --0.025706 -0.0319805 -0.00598067 --0.002074 --0.0163885 -0.0175197 --0.081409 --0.00863709 --0.0341693 -0.0470105 --0.0355503 --0.0720002 -0.0510088 -0.0759608 --0.113164 --0.00657116 --0.0545104 --0.0637054 --0.0186657 -0.00360816 -0.0332835 -0.0190548 -0.0369364 --0.0672202 --0.0609985 --0.0513892 -0.0222749 -0.0055351 --0.0161204 --0.0326308 --0.0263627 --0.0435624 --0.0340748 -0.0823965 --0.0060665 --0.0583923 -0.0208953 -0.00572983 -0.0789688 --0.0452203 --0.0545867 --0.105747 --0.0415833 -0.0747245 -0.0320903 --0.142669 -0.0243606 -0.10156 -0.0470683 -0.00737164 --0.0633739 --0.0525451 -0.00489749 --0.0143784 --0.0310132 -0.0451459 -0.0809347 -0.0030358 -0.0467147 -0.0119662 --0.0344091 -0.0554654 --0.135672 --0.0301744 -0.0197253 -0.0376333 -0.0557515 --0.0435087 -0.041239 -0.0453499 --0.0325847 --0.0597966 --0.0562005 -0.0317213 -0.0369477 -0.094837 --0.050679 --0.0347015 --0.04151 -0.0391381 --0.000356925 -0.0731538 -0.0145257 -0.022163 -0.0431757 -0.0189092 -0.0161812 -0.0218336 -0.0564073 --0.0995053 --0.0481836 --0.0913762 -0.00770408 -0.0631314 -0.0219891 --0.060659 -0.0138654 -0.0359569 -0.0913793 --0.0530608 -0.05078 -0.0596475 --0.0127041 --0.109661 --0.0142582 --0.0175278 --0.0408984 -0.0550951 --0.0448464 --0.0563542 --0.00634565 --0.0320743 --0.0116263 -0.00513052 --0.0626331 -0.0617538 --0.0642228 -0.0210734 --0.0460757 -0.0287155 --0.0114667 --0.0210541 -0.0885815 -0.0755317 --0.0537232 -0.0067867 --0.0109925 --0.0827755 --0.0300491 --0.0153935 -0.00319825 -0.0391786 --0.00947907 -0.0821767 --0.0614555 -0.0384997 -0.0175619 -0.0229124 --0.00220414 --0.125512 --0.0244044 --0.0224287 --0.0798537 --0.0205456 --0.0441108 --0.0196745 -0.00163641 -0.0294473 -0.0887739 --0.00812793 -0.070837 -0.0446801 --0.0234635 -0.0683186 --0.0130009 -0.0624431 --0.0184691 --0.123752 -0.0471472 -0.00272983 -0.0217802 -0.02726 -0.00821796 -0.00469563 -0.0849462 -0.06951 --0.00666507 --0.0717451 --0.0539754 -0.080647 --0.0290898 --0.00692858 --0.121484 --0.0564575 -0.00647188 -0.0173612 --0.0134496 --0.0501888 --0.00628283 --0.0705466 -0.0880093 --0.102797 -0.0189854 --0.0223318 --0.0981431 --0.0411612 --0.00147821 -0.0616994 -0.0611117 --0.00382961 --0.0546841 -0.0336336 --0.00292144 -0.0072848 -0.0320635 --0.064391 -0.0884925 -0.0402839 -0.0368241 -0.0742219 -0.077252 --0.0539633 --0.099407 -0.0405549 --0.0417466 -0.0383492 -0.0458219 -0.0474808 --0.0473011 --0.0557818 -0.0335108 -0.0504839 -0.050663 -0.00892507 -0.0400427 -0.00589186 -0.02869 --0.025416 --0.0819309 --0.0668254 -0.0027983 -0.00925534 -0.08082 --0.0194033 --0.00700902 --0.0377408 -0.000625168 --0.0858541 -0.0547959 -0.041952 --0.0887841 --0.0197563 --0.00219675 --0.0584404 --0.0415951 --0.0390612 --0.0257645 --0.00123195 --0.0599881 --0.012023 --0.0902643 -0.000149464 --0.0244682 --0.093555 --0.0780788 --0.0149613 -0.0294102 --0.0243199 -0.00569077 --0.0148224 --0.0956166 --0.0374038 -0.0639719 --0.0473702 -0.0737849 -0.08915 --0.000603803 --0.025824 -0.0286401 -0.0657062 -0.132581 --0.108063 -0.0835421 -0.0213741 --0.0791085 -0.0119276 --0.0991102 --0.0148329 --0.0378192 --0.00603976 --0.0052359 -0.0768897 --0.0290993 -0.045599 -0.0175168 -0.0624525 --0.00746034 -0.0252592 -0.0301254 --0.032675 -0.01351 --0.00302733 -0.0260968 --0.0210867 --0.017534 --0.0727083 -0.0221237 --0.0178073 -0.0180377 --0.0266908 -0.0121021 -0.012019 -0.0487721 -0.0431514 -0.0479694 --0.00266095 --0.0580378 -0.00143707 -0.0522114 -0.03205 --0.00381662 -0.0228737 --0.0790249 -0.0570369 -0.030628 -0.0611435 -0.0169441 -0.0305106 -0.0342426 --0.0563131 -0.0845806 -0.0199601 -0.0628286 -0.0135514 -0.0121773 -0.0431243 -0.0738044 --0.0497263 --0.0743078 -0.184175 -0.0158285 -0.0325467 -0.0147096 --0.0424318 -0.0690406 -0.0247441 -0.0504663 -0.00186113 --0.0380086 -0.0598524 --0.0226909 --0.0248256 -0.0227016 -0.0846115 --0.0363836 -0.0258771 -0.0379592 -0.0187428 -0.0108745 -0.0674002 --0.0819574 -0.0838705 -0.0392401 --0.0951761 --0.0424599 --0.0380448 -0.00837454 --0.00227701 --0.0838471 -0.0101702 --0.0135166 -0.0539148 -0.0252105 --0.00271608 -0.0407764 --0.039294 -0.0436168 --0.020674 -0.0545578 --0.0628552 --0.0112806 --0.0678366 -0.0198651 -0.0184996 --0.0161928 -0.0586226 --0.00971563 -0.125946 --0.0071093 --0.00690455 --0.037119 --0.0166041 -0.000134539 -0.0127079 --0.0642519 --0.0318364 -0.0463882 --0.0581416 --0.0271232 --0.00653832 -0.0191409 --0.0603187 --0.0700336 -0.0615855 --0.0230687 -0.0747409 --0.0172298 --0.00482533 -0.0552604 --0.0391417 -0.056976 -0.00553904 -0.0396798 --0.0406868 -0.0276767 -0.00388533 -0.00179656 -0.0133984 -0.0114055 --0.0107694 -0.0535201 -0.00492688 --0.00187916 --0.0640302 --0.00502289 --0.0679288 --0.0460236 -0.0156773 --0.0107342 -0.0261131 --0.00515281 --0.0994499 -0.0506519 -0.0384685 --0.0943196 -0.0181288 --0.0090935 -0.000324368 --0.114045 -0.00738183 --0.0391246 --0.0886615 --0.0320727 --0.046053 -0.0199259 --0.101895 --0.0377142 -0.051908 --0.0244262 -0.00803694 --0.0225515 --0.04619 -0.010599 -0.0224117 -0.00695991 --0.047803 -0.0952647 --0.0542998 -0.000497226 --0.0142686 --0.0963107 -0.0669601 --0.0513593 -0.0325019 -0.00287735 --0.0184463 --0.048549 --0.0376242 -0.0895734 --0.0385708 --0.0144293 -0.0518931 --0.0712727 --0.0394074 --0.030135 -0.00339256 --0.0101472 -0.0230167 --0.0280907 -0.0430344 --0.0749399 -0.0472254 --0.0378571 --0.0496168 -0.0349681 -0.0261393 -0.00360988 -0.0418421 -0.0544652 --0.00409113 --0.0285264 --0.0123695 -0.0411195 -0.023672 --0.0263842 -0.0274207 --0.040913 -0.0732899 -0.0374967 --0.0420173 -0.0611344 -0.0139148 -0.0222933 -0.0714397 --0.0494023 -0.048916 -0.00609132 -0.000487356 -0.0162859 -0.0729034 --0.0560753 -0.0243199 -0.0147701 -0.140607 --0.0311461 -0.0735214 -0.0327002 --0.0573652 -0.015435 -0.114928 -0.0183487 -0.142929 -0.0184312 -0.0410191 -0.0285351 --0.0494382 -0.0384786 --0.0143581 -0.0224937 -0.0308366 -0.00400883 -0.0886174 -0.0197565 --0.0282906 -0.015772 --0.0447622 -0.0104897 --0.012773 -0.0594869 --0.0533959 -0.0402357 --0.0532065 -0.0351455 -0.0149843 -0.0791387 --0.0931441 -0.0308128 --0.0790077 -0.0254512 -0.019327 --0.0050482 --0.0242368 -0.0514011 --0.0463109 -0.0246124 -0.0128786 -0.0456518 -0.0453854 --0.0984785 --0.00892461 --0.104728 -0.0323504 -0.0944744 -0.0721657 --0.0922931 --0.0290591 -0.00504282 -0.0411837 --0.0250137 -0.0494842 -0.0257015 -0.0574594 --0.0430565 --0.0542927 --0.0131349 -0.0491597 --0.00144743 --0.0403575 -0.0230352 -0.0379792 -0.0330936 --0.046191 --0.0476573 --0.00265231 -0.00315147 -0.00701191 --0.0328021 --0.0261943 --0.0407944 --0.0556689 -0.015421 -0.00448626 --0.0436047 -0.00588424 -0.0788128 -0.0311616 --0.00504325 --0.0331692 --0.00761659 -0.101299 -0.0182478 --0.0676382 --0.00851833 -0.0322357 -0.0169078 --0.0832067 -0.0347679 -0.0449063 -0.0510619 --0.0303946 -0.0137441 -0.0364514 --0.0507761 -0.0714716 -0.0611457 -0.0788184 -0.103095 -0.0163016 --0.0289268 --0.0194174 -0.00502636 -0.00727396 -0.0119958 --0.0104643 --0.0253604 -0.0547992 -0.0362375 -0.0154075 --0.0332068 --0.042165 -0.0788971 -0.0943649 --0.0277215 --0.0935402 -0.00648076 --0.0578582 -0.0473988 --0.0380923 -0.0433651 --0.0710025 --0.00480609 --0.128032 -0.0930054 --0.040387 --0.0322304 --0.0478397 --0.0167482 -0.0104573 --0.0217148 -0.00177113 --0.0901882 --0.0596863 --0.0765231 --0.0664403 --0.0375943 -0.00603957 --0.059729 -0.104419 --0.0148905 --0.0508194 -0.10231 -0.0174777 --0.0738921 --0.00732061 --0.00137855 -0.00279336 --0.0644785 --0.0603126 -0.0152302 -0.106093 -0.0518484 -0.070694 --0.0276805 -0.0638176 -0.026874 -0.000609819 -0.0371704 --0.0302046 --0.02474 -0.00600611 --0.0781406 -0.0128871 -0.0150041 --0.12279 -0.0513638 -0.0385052 --0.0463402 -0.0657989 -0.0449082 -0.0332998 --0.0612334 --0.052659 -0.0153587 --0.00741566 -0.014741 -0.0589478 --0.0611667 --0.0264482 --0.0597638 -0.0125206 --0.0445522 --0.0587796 --0.0394788 --0.0512498 -0.0211284 --0.0146718 --0.0213042 -0.0294979 --0.0471086 --0.0679164 --0.103641 -0.0426505 -0.0214795 -0.157901 --0.0833877 --0.0159241 --0.0079659 -0.00525288 --0.0627377 --0.00493322 --0.0057072 -0.016936 --0.0575703 --0.00633915 --0.0505639 --0.0556713 -0.0183388 --0.0196948 -0.0418141 --0.0427047 -0.0698739 --0.07588 --0.039254 -0.0429278 --0.0270063 -0.000446173 -0.0256775 --0.0588794 -0.0978704 --0.0242155 -0.0408014 --0.122522 --0.0902778 -0.0146965 --0.0179803 -0.123199 -0.0487707 --0.0627771 --0.0266781 -0.124228 -0.000391005 -0.0542947 -0.0912738 -0.0319172 --0.0281309 --0.0149474 -0.00166079 --0.0541473 -0.0177436 -0.0161582 -0.0240918 -0.0217243 -0.108545 -0.0720224 --0.0566592 --0.0344174 --0.00978573 -0.0170583 --0.033749 -0.137236 -0.043924 --0.0104807 --0.0080781 --0.0106198 --0.0359479 -0.016349 --0.0184776 --0.0356503 -0.00859756 --0.00881417 -0.120872 --0.0207267 --0.0323737 --0.00437722 --0.0327424 --0.0488079 -0.00124789 --0.0212689 --0.0352726 --0.0479038 -0.0254259 --0.0540865 -0.00155014 --0.0437914 -0.0416407 -0.0668529 --0.017809 --0.000413856 -0.00424577 --0.0258996 --0.0921276 --0.00740052 --0.0260243 --0.0394941 --0.0276075 --0.0270609 --0.121898 -0.00158615 --0.083763 -0.0680687 --0.0156208 --0.0185626 -0.0512271 --0.0551265 --0.0109596 -0.0621894 -0.0754464 --0.097163 --0.0770236 --0.0177204 --0.0293058 --0.0687996 -0.00585132 --0.0226864 -0.0285352 --0.0895003 -0.0964471 -0.0987724 -0.0708409 --0.00713917 --0.0649883 -0.0482301 --0.00819667 -0.0769713 -0.0279617 --0.0718507 -0.0789522 --0.0372845 -0.0621837 -0.0156665 --0.00076064 -0.0471326 -0.0554466 -0.0108667 --0.0312687 --0.0420929 --0.04152 --0.0232798 -0.0364839 -0.00590516 -0.0350594 --0.0173089 --0.0151985 -0.0842357 --0.00760541 --0.0166856 -0.0517002 -0.00764788 --0.0355654 --0.0243071 -0.00457437 --0.0064089 -0.0268509 -0.019233 --0.0102987 -0.0393226 --0.00118752 -0.0297829 --0.017745 --0.0159558 -0.0634753 -0.0260732 --0.00758843 --0.0321432 --0.028516 --0.0337643 -0.0174687 --0.0324492 --0.081809 --0.046682 --0.0044033 -0.0461141 -0.0706549 -0.046481 --0.0274441 --0.0678517 -0.0770497 -0.0387405 -0.0640104 -0.0438433 --0.0254089 --0.048464 --0.0407786 -0.0510741 --0.00904822 -0.0804585 -0.0100148 -0.073586 -0.000425817 -0.0533301 -0.0105368 --0.0606765 --0.0485137 --0.0375726 -0.0191541 --0.00523586 --0.0745221 --0.0512873 -0.0251348 -0.0099407 -0.00809605 -0.0929766 --0.0945395 --0.0289873 --0.0886935 --0.0760394 --0.0766469 -0.0607405 -0.0190056 --0.0179396 --0.0303713 --0.0127898 --0.0637567 -0.0141886 -0.0208066 -0.0294274 -0.030524 --0.00911771 --0.0624327 --0.0174722 -0.000106255 --0.00955543 -0.0690086 -0.0468601 --0.0428191 -0.0505406 -0.0141782 --0.104648 -0.0294837 --0.0645217 -0.00104507 --0.0450253 --0.00859243 --0.0319431 --0.0417044 --0.08528 -0.0114575 --0.0138976 --0.0569263 -0.0933437 -0.0144146 -0.0406254 -0.00471879 -0.0265275 --0.0380864 --0.0188215 --0.030121 --0.053123 -0.0298568 --0.0185381 -0.0265363 --0.0449471 -0.00807832 -0.0320106 -0.0382157 -0.0757096 -0.0133792 -0.0678706 -0.0178216 -0.058534 --0.106913 -0.00809929 --0.0145227 -0.0734445 -0.0529182 -0.0639997 -0.0321647 -0.00559806 -0.0438652 --0.0104355 --0.0612843 --0.00259771 -0.0712618 --0.0241316 -0.0940087 --0.108426 --0.0259257 --0.0539398 --0.037771 --0.0946097 --0.0460757 --0.0496888 -0.0703636 -0.0800773 -0.0183563 --0.0174591 --0.0482528 --0.0179578 --0.0219818 -0.0621241 -0.0129373 -0.00728571 -0.0421826 -0.0124478 -0.0205164 -0.00638471 --0.00418299 -0.00834796 --0.0357352 --0.0838839 --0.0392624 --0.021354 --0.0745139 -0.0219421 --0.0227528 --0.0718867 -0.0148676 -0.078486 --0.0144769 -0.0934022 --0.0200748 --0.00167071 --0.0346749 --0.105132 -0.0203861 -0.112508 --0.0122729 -0.00273507 --0.0244192 --0.0101994 --0.00193319 --0.0768261 -0.0410348 --0.057828 --0.0310251 --0.0365594 -0.0211729 -0.0815946 -0.000844852 -0.0828896 -0.0380027 --0.0958494 --0.0167018 -0.0469372 --0.00671734 --0.0102113 --0.0307752 --0.0135819 -0.0256968 -0.0217466 -0.00694707 --0.0167124 --0.0441364 -0.103544 --0.025317 -0.0151579 -0.0274264 --0.0220623 --0.105156 --0.00358684 -0.0827265 -0.0833505 -0.00522754 --0.0334627 --0.0128455 --0.0451616 -0.0041947 -0.0251392 -0.0219119 --0.0264642 --0.0150226 -0.0285351 -0.0353646 -0.00090434 --0.0586964 -0.0629888 --0.0542439 --0.171387 --0.0653998 -0.0113178 --0.0327287 --0.0374687 -0.044076 -0.0133928 --0.0481384 -0.0350624 -0.0627569 -0.045447 --0.0336804 -0.0533249 -0.00772771 -0.0253311 --0.036519 -0.0201705 --0.000604528 -0.0502642 -0.0151684 --0.00918863 -0.077007 -0.0785861 -0.0040572 -0.0661493 --0.0251872 -0.0263953 --0.0827608 -0.0239992 --0.0577145 -0.00746841 --0.0458866 --0.0141335 --0.0654844 --0.01797 -0.0552867 -0.0794845 --0.000479733 -0.0106784 --0.0408724 --0.0079315 --0.0127328 --0.00465723 --0.0158455 -0.031534 -0.0611634 --0.0178725 --0.167734 --0.0549504 --0.0540672 --0.0450878 -0.0876142 --0.0964878 -0.0238702 --0.0587205 -0.0595868 --0.022939 -0.0278249 --0.00146831 -0.00121516 --0.00956441 -0.0209661 --0.102757 --0.0486336 --0.0611685 -0.000776681 -0.00940841 -0.0306466 --0.0313048 -0.0451885 --0.048132 -0.0463443 --0.0690799 --0.0248572 --0.139333 --0.0801721 --0.0433792 --0.0874528 --0.0200485 -0.0213633 --0.0490859 -0.0325909 --0.0116646 --0.0403413 -0.104391 -0.0834627 --0.0197673 --0.0265231 -0.00111504 -0.0672018 -0.0382013 -0.0557874 --0.0148872 --0.0363844 -0.0217945 -0.162087 -0.0205581 --0.085583 --0.0605884 -0.0338298 --0.0212499 --0.0651215 -0.0352913 --0.126748 --0.048319 --0.0648466 -0.0836888 --0.0425984 -0.0526058 --0.0482566 -0.0296188 --0.0459693 --0.0466873 -0.127987 -0.0154121 -0.0369865 -0.0140081 -0.0637029 -0.0672435 --0.0321637 -0.00297947 -0.0170982 -0.0309398 --0.0423246 --0.00560198 -0.0686221 --0.00926975 -0.0343492 -0.0178784 -0.020364 -0.0277355 -0.0435096 -0.0138538 -0.0143785 -0.00394901 --0.0598183 --0.00573476 --0.144531 -0.0664443 -0.027074 -0.0977953 -0.0132007 -0.028572 --0.00927673 --0.0435706 -0.0687721 -0.044691 -0.0639368 --0.0548051 -0.120078 --0.0235736 --0.0559398 --0.0485589 -0.0189224 -0.0777812 --0.0687353 --0.0212482 -0.0376618 --0.0283994 -0.0171487 -0.071395 -0.0061887 --0.0682094 -0.0310367 --0.0464525 -0.00969457 --0.109901 -0.0094729 --0.0303297 --0.0421921 --0.0259976 --0.0638612 -0.0838554 -0.0174155 --0.040592 --0.0716959 -0.0686031 --0.00116695 -0.0470387 -0.0202748 -0.00485203 --0.0272853 --0.0956003 --0.0144578 -0.0723206 -0.0472763 -0.0986072 -0.0308374 --0.121166 -0.0161426 --0.0147108 -0.119844 -0.0248024 --0.0420139 --0.0284242 --0.0121424 -0.00582388 --0.0737547 -0.0576324 --0.0615698 --0.12562 -0.00358949 -0.0956725 -0.0340674 --0.118906 --0.0225162 --0.0110279 -0.000382818 -0.0129141 --0.000582155 --0.00305931 -0.0141601 -0.0328052 -0.0594752 --0.0077605 -0.00396717 -0.0470453 --0.0709573 -0.0177663 --0.0150564 -0.00648894 --0.0317455 -0.0378616 -0.0227429 --0.0295717 -0.0333972 -0.0185816 --0.0202978 --0.0470618 --0.0203027 --0.0828805 --0.0620294 -0.101802 --0.0411178 -0.0555308 -0.0479231 -0.0090553 -0.0372263 -0.0281303 --0.0341008 --0.0581038 -0.0379021 --0.0932434 -0.110185 --0.027088 --0.00177348 -0.0594735 --0.0249748 -0.0256368 --0.057628 -0.0357919 -0.0171838 -0.0244232 --0.00579566 -0.0556675 -0.076126 -0.0711436 -0.0373429 -0.0271094 --0.00115853 -0.0239819 --0.0576963 -0.0518045 -0.00110633 --0.0285254 --0.0239091 -0.0659618 -0.0142075 --0.0168477 -0.0365961 --0.0438154 -0.00228628 -0.0112511 -0.0334958 -0.0647734 -0.00930158 --0.0169991 -0.0422241 -0.0771889 -0.00211154 --0.018338 -0.00357553 -0.0174829 -0.034575 --9.36789e-05 --0.117274 -0.0425212 -0.000431568 -0.0483127 --0.137141 --0.0185614 -0.00501989 -0.0227399 -0.0767649 --0.0110663 --0.0423716 --0.0525143 -0.00768259 -0.00556443 -0.0618988 --0.117205 -0.0225742 -0.0196916 --0.0856766 -0.025001 -0.101906 --0.0268179 -0.00547413 --0.0638634 -0.0111525 --0.0168448 --0.0329124 -0.029022 -0.0339672 --0.0272899 --0.0733199 --0.00791089 -0.0577421 -0.046943 --0.0734761 -0.0318706 --0.00985316 -0.0138435 --0.0607231 --0.0513161 -0.091465 -0.00696135 -0.0221692 --0.00260852 --0.057075 --0.0184818 -0.120321 -0.0702229 -0.0363383 --0.0370495 --0.0258981 --0.0149691 --0.032255 -0.0338551 -0.0165551 --0.0272553 -0.0596834 --0.104415 --0.0784099 --0.0371401 --0.0135065 -0.110393 --0.004327 --0.0198664 -0.0213798 -0.0789571 --0.0637703 --0.0395169 --0.0986862 --0.0102955 --0.0428852 -0.0173886 --0.0282809 --0.119017 --0.0432167 -0.0123272 -0.00158222 -0.00238416 --0.0530859 --0.0209039 --0.0562021 --0.013652 --0.0670929 -0.0352245 --0.0368814 --0.0113863 -0.00730593 -0.0101316 -0.0329565 -0.0608104 --0.0813324 -0.0591467 --0.0263471 --0.00334995 --0.0729506 --0.00740829 -0.0452804 -0.0233343 -0.0528928 -0.00557031 -0.0825534 -0.0247429 -0.0915226 --0.0142532 --0.0412155 --0.020434 -0.00278325 -0.018747 --0.0244785 -0.00182881 -0.0374098 -0.0180507 --0.10014 -0.0110452 --0.025663 -0.0515534 --0.0351276 --0.0475212 --0.0394564 -0.0269632 --0.0267038 --0.0431722 --0.0416841 --0.0558888 --0.0157801 -0.0702944 --0.0745955 --0.0839695 --0.022743 -0.0321564 --0.0827466 -0.0706129 --0.0110544 --0.0730211 --0.0454519 --0.0157273 -0.0520761 --0.0380792 --0.0288439 --0.0179076 --0.0104152 -0.0657835 --0.0138919 -0.143628 -0.000373366 -0.143042 -0.0462344 --0.0396007 -0.0180945 -0.0157712 -0.0185186 --0.00772193 -0.0398359 -0.0334134 -0.0324467 --0.0631261 --0.0428774 --0.0368419 -0.0175932 --0.0247601 --0.0140777 -0.0361603 --0.0116564 --0.0787489 --0.0190552 --0.0350415 -0.00548042 --0.000782652 -0.000540086 --0.085166 -0.040767 -0.0536341 --0.0664834 --0.0495977 -0.0215608 -0.00857309 --0.00316641 -0.0201439 -0.0311286 -0.0132151 --0.0485543 --0.0432897 -0.0317323 --0.104895 -0.0453038 -0.0600678 --0.07498 -0.0278957 -0.0484277 -0.0290103 --0.0048374 -0.0075221 --0.0419572 --0.0751536 --0.0242413 -0.00234329 --0.0749382 -0.105654 --0.0766182 -0.0027095 --0.0174157 -0.0251285 -0.087749 -0.140737 --0.0681732 -0.0564156 --0.0430407 --0.0533578 --0.0380217 --0.0114358 --0.01045 --0.0200168 --0.0854149 -0.0710902 -0.0241029 --0.0490286 -0.0171159 --0.0162035 --0.00642627 -0.0764422 -0.0614592 --0.025574 -0.0898963 --0.0591963 -0.00824429 --0.000881636 --0.0424748 --0.134807 --0.0571575 -0.0196075 -0.0937649 --0.0625303 --0.0385927 --0.033684 --0.0427684 --0.0362123 --0.0532337 -0.0417402 --0.108176 -0.0229465 -0.0450542 --0.0406847 -0.00790156 --0.0223349 -0.100244 --0.0473619 --0.0262041 -0.0299223 --0.0909361 --0.011726 -0.0845089 --0.0372666 -0.0915276 -0.0933379 -0.0675233 -0.0724967 -0.0479583 --0.0183777 -0.0887823 -0.072509 -0.0640459 --0.00998173 --0.0887026 -0.0482041 -0.0745499 --0.0279655 --0.0161966 -0.00880074 --0.105503 --0.0175754 -0.0936481 -0.00951014 --0.0436539 --0.0155345 --0.0229398 -0.0482905 --0.017045 -0.0135921 -0.0469871 -0.011063 --0.0180056 --0.0139279 --0.0496272 --0.0224829 --0.114997 --0.0531292 --0.00422453 --0.016883 --0.0789223 --0.0257033 --0.0243493 -0.00137779 --0.0275906 -0.0363043 -0.00457302 --0.0902033 -0.031814 -0.0335374 --0.0679443 -0.00326764 -0.022543 --0.0215044 -0.019529 --0.0216493 -0.0112849 -0.0470235 --0.00486789 -0.0851241 -0.0816289 --0.0565635 --0.0110165 -0.0551749 -0.0342554 -0.0458256 -0.0336966 --0.0245348 --0.0704685 -0.00310566 -0.0241808 -0.0145454 -0.0112956 -0.0409163 -0.0433614 --0.0691877 --0.0465971 --0.032422 --0.0289111 -0.0931153 -0.0112377 --0.0363306 --0.0178662 -0.0255726 -0.0168789 --0.000326679 --0.0605066 -0.0705348 --0.0079035 --0.027471 -0.0312322 --0.0582192 -0.0326596 --0.0424612 -0.0422884 -0.0674636 -0.00573302 --0.0311719 --0.0717721 -0.0454559 -0.0455688 -0.00273017 -0.0354381 -0.0312298 -0.0584992 --0.0156887 --0.0222092 -0.00247968 -0.0678563 -0.0170547 -0.0218532 -0.000821994 --0.100268 --0.048481 --0.0196388 --0.0320665 --0.00755963 --0.11759 --0.0524539 -0.00417294 -0.0324663 -0.00844934 -0.0139239 --0.0152128 -0.0149575 --0.0149936 -0.0763325 -0.122859 -0.017868 -0.0492609 --0.0251489 -0.00914065 -0.0122517 --0.0200004 --0.0253418 -0.0701883 -0.0723338 -0.0320776 --0.0149367 --0.0454607 -0.0316554 --0.0221858 --0.0312913 --0.0127791 -0.0247599 -0.0631064 -0.0408754 --0.0367976 --0.0850314 -0.0432915 -0.00684787 --0.0778804 -0.0346272 --0.0462319 --0.0845663 -0.0184302 --0.0279603 --0.0484827 -0.00360815 -0.0185499 -0.0289646 --0.00532084 --0.0246782 -0.0522747 --0.0146808 -0.0135648 --0.00460767 -0.0346787 --0.0250697 --0.0580566 -0.00874964 -0.0477861 -0.0308676 -0.0760832 -0.00958378 -0.00249615 -0.0978582 -0.0538437 -0.0273468 -0.0336831 -0.00320864 -0.0289031 -0.00429327 --0.0938034 -0.065073 --0.0546371 -0.00907071 --0.0591825 -0.0227575 --0.0678009 -0.0511901 --0.128947 --0.0238895 -0.0283107 -0.0814358 --0.00503141 -0.059439 -0.0153761 --0.0564238 --0.0123218 --0.0670541 -0.0230168 --0.0151527 --0.00277219 --0.00481068 --0.0535599 -0.041909 -0.0507006 -0.00728203 --0.0984342 -0.0419845 --0.0682685 -0.00221438 -0.0125424 --0.0628209 --0.0701853 -0.0534901 --0.0470832 --0.00659491 -0.00023637 --0.00840985 --0.0589209 -0.0189679 -0.00902348 --0.0583057 --0.0520801 -0.0248498 -0.00379785 -0.0135947 -0.0680535 --0.0633801 -0.0624246 --0.0147019 -0.0674465 --0.0208884 -0.0336914 -0.037769 -0.0941023 --0.0463422 --0.0136529 -0.0201561 -0.018448 --0.0127151 -0.0347162 -0.0246543 -0.00517575 --0.0213454 --0.0102468 --0.0374489 --0.0233408 -0.0898534 --0.050377 -0.0312952 -0.0464912 -0.0179557 -0.00653924 --0.00245338 --0.0340727 -0.00376734 --0.00382978 --0.0192755 --0.0084511 -0.0407555 -0.0432699 -0.00350552 --0.0214035 --0.0203895 -0.0422232 --0.104547 -0.0754421 -0.0936794 --0.090085 -0.0689558 -0.0406922 -0.0673408 -0.0429861 -0.0204156 --0.0141274 --0.0424288 --0.0343571 --0.0633943 -0.0401294 --0.0112262 --0.0534719 --0.0747305 --0.0324461 --0.0196102 --0.0553702 --0.0577213 --0.111729 -0.0309672 -0.0152202 -0.0745603 --0.036785 --0.0484286 --0.00920156 -0.0383577 -0.00869026 -0.0182775 --0.0417025 --0.124472 --0.0501751 -0.0567316 --0.011513 -0.0171615 -0.0179324 --0.0348306 --0.0124905 --0.086559 -0.0217495 -0.0493095 -0.00830442 --0.045922 -0.0153682 --0.00129321 --0.0332875 --0.0363048 --0.0558773 --0.0900888 -0.00321152 --0.0137725 -0.00495104 --0.0046236 -0.0739008 --0.0519298 --0.0097626 --0.0197158 -0.0544134 -0.0862394 --0.00389597 -0.0507546 --0.0466406 -0.0236996 -0.0047766 -0.00343592 -0.0156216 -0.084039 -0.0439783 --0.02041 --0.0295064 -0.0410236 -0.0113589 -0.0478957 -0.0913857 --0.0339605 -0.0470526 --0.000423792 -0.00869223 -0.0121464 --0.0287003 --0.0137164 --0.00905954 --0.0127233 -0.0462038 --0.0810185 -0.0145316 -0.0343714 --0.0313079 -0.00906772 -0.0126716 --0.0596548 --0.00334275 -0.0115736 -0.0167236 -0.0387204 -0.0316981 --0.099661 -0.00301778 --0.0335279 -0.01015 -0.014193 --0.0369763 --0.0238239 -0.0434181 -0.00558565 --0.00895163 -0.0736813 --0.0364899 --0.0661563 --0.0518889 -0.014767 --0.000720323 -0.00538087 -0.0101691 --0.0273004 --0.036494 -0.0375186 -0.10438 -0.0840443 -0.175772 -0.0496261 --0.0137722 --0.03726 -0.058409 --0.0177928 -0.130939 -0.0419814 -0.0118541 -0.0405023 -0.0069949 --0.00229309 --0.000637433 --0.0651862 --0.00742602 -0.0706082 -0.0943952 -0.0578138 -0.00135365 -0.0431297 --0.00562083 --0.0799134 -0.0379873 --0.0492689 --0.043396 -0.0272073 --0.0881026 -0.0226421 --0.0442427 -0.0734953 -0.0355906 -0.00421196 -0.020935 --0.0360978 --0.000300325 -0.0544051 --0.0081778 --0.0201334 -0.0257681 --0.0928517 --0.0134774 --0.0792497 -0.0395722 -0.0127067 --0.0792747 -0.0525122 --0.0449985 -0.105922 -0.0496093 --0.0162649 -0.0210988 --0.0236028 -0.0349784 -0.0453085 --0.0782864 --0.0426301 --0.0296197 -0.015588 -0.0363584 -0.0101318 -0.0131565 --0.000714611 --0.0669322 -0.0494292 --0.0690299 -0.0120942 --0.169102 --0.102453 --0.00808941 --0.0249306 -0.0711994 --0.00801278 --0.113462 --0.03452 --0.0379862 -0.0346418 --0.0326274 --0.0318245 -0.0629458 --0.0299419 --0.0945178 --0.035916 -0.0432761 -0.0520791 --0.118603 -0.0481986 -0.0208286 -0.0650117 -0.0654639 --0.10547 -0.00157123 -0.00902648 -0.0279073 --0.021436 -0.0220711 --0.0121565 -0.00114425 --0.0906539 --0.0303065 -0.00291775 -0.0327557 -0.0426759 --0.0437421 --0.0407939 --0.0853492 --0.0523852 --0.00788149 -0.060255 --0.0462348 -0.0863675 -0.000870055 -0.0910237 --0.064933 --0.0541765 -0.0727887 -0.0247009 -0.0104374 --0.0569585 -0.0155254 -0.110557 -0.014956 --0.0393433 --0.0656242 -0.036428 -0.00751137 -0.0120771 --0.0145982 -0.0177683 -0.0678598 -0.0263345 --0.0240344 -0.00290488 --0.0136762 --0.040293 --0.00553805 --0.000866823 --0.0214296 --0.0243955 -0.055878 -0.0340117 -0.0658077 -0.0044402 -0.00131756 --0.0193539 --0.0589409 -0.0263047 --0.091305 --0.00173061 --0.00571876 -0.00117071 --0.0269888 --0.0105562 --0.0543134 --0.0516835 --0.00538425 -0.00876884 -0.0122908 --0.0647135 --0.0505246 -0.00319286 -0.0211211 --0.00417326 -0.0378996 --0.0357597 -0.114015 --0.0231643 -0.00699567 --0.0125456 --0.0153154 --0.0115619 --0.0218297 --0.0432321 --0.0543669 -0.0998028 -0.00740129 -0.0307638 -0.130816 --0.0187798 --0.00482959 --0.0596858 --0.0171355 -0.0333118 -0.0130975 --0.0269463 -0.0748414 --0.00978104 -0.148986 --0.0218958 -0.0261123 --0.036401 --0.0767756 --0.0359172 -0.0148751 --0.0195874 --0.0373 --0.0466842 --0.0358453 -0.0108522 -0.0276595 --0.052 -0.0366351 --0.0368036 --0.0855724 --0.0386217 -0.00463146 --0.00580989 -0.0017261 --0.10029 --0.000973028 --0.063517 -0.0134186 --0.0324224 --0.0415541 --0.0319364 -0.083254 --0.0147326 --0.0444939 -0.0123339 -0.0430726 --0.0639489 --0.0810514 -0.0582409 --0.0370266 --0.00865001 --0.0350405 --0.0156796 --0.050686 -0.0527474 -0.0573857 -0.0719158 -0.0671983 --0.0293066 --0.0533572 --0.0324594 -0.0658802 --0.0298232 -0.00306603 --0.105545 -0.0224321 --0.0201203 -0.00864032 --0.027457 -0.0611836 --0.0309309 -0.0373735 --0.0643039 -0.0938483 -0.0268296 --0.0371783 -0.0258461 -0.0572631 --0.0605321 --0.043657 -0.0417922 --0.00417276 --0.0304378 -0.0263143 --0.0654039 -0.0445914 --0.00662277 -0.003077 -0.091659 -0.0150502 --0.0498552 -0.0496241 --0.0255468 -0.0333452 --0.0344545 --0.050436 --0.0270702 --0.0599429 -0.0272602 -0.0678304 -0.028922 -0.062916 --0.050754 --0.0445821 -0.0156259 -0.0214413 --0.0925311 --0.0476343 -0.00761349 --0.0801279 -0.00912835 -0.0106814 -0.0457293 --0.0314521 --0.00731799 --0.0525532 -0.0478803 -0.0350305 -0.0959391 --0.0334438 -0.0850776 -0.0411499 --0.0190749 -0.0390484 -0.0439953 -0.118471 -0.0356146 -0.0158791 --0.113833 --0.0889401 --0.0414098 --0.0168969 --0.00887183 -0.0600711 -0.0501548 -0.005787 --0.0315325 -0.0302447 -0.0295652 -0.051384 -0.00159866 -0.0700827 --0.0041604 -0.011771 --0.0613144 --0.053946 -0.0187756 -0.0107439 -0.00862268 -0.0322706 --0.113371 -0.0276562 --0.0281436 -0.0602572 --0.00450723 --0.00138082 -0.0606992 --0.0808694 --0.0160036 -0.0190979 --0.0711243 --0.0450747 --0.0219946 --0.0328911 -0.0876269 -0.0200238 --0.00666549 -0.0422919 --0.0188743 --0.0388667 --0.0081791 -0.05514 --0.0309698 -0.021326 -0.0899982 -0.00776426 --0.0536573 -0.0708423 -0.0159516 --0.0397449 --0.0283647 --0.0265228 --0.0165747 -0.0278521 -0.0634655 --0.00199729 --0.125105 --0.0424799 -0.010548 -0.0120304 --0.0305204 -0.00803607 -0.0434759 --0.00392699 --4.0622e-05 -0.0147827 -0.00740225 -0.0408778 --0.00127465 --0.0447424 -0.0613474 -0.0426605 -0.0264003 --0.00573427 --0.026289 -0.0137667 --0.0218867 -0.00114979 --0.00298767 -0.0451198 -0.0572156 --0.0364842 -0.0844074 --0.0397053 --0.0467845 --0.000169324 --0.0183272 -0.00488398 --0.0107465 --0.0172651 --0.00060605 -0.0666128 --0.0776939 -0.0296517 -0.0538378 -0.00259224 -0.0915178 -0.0487508 -0.0116248 -0.0536911 -0.0175439 -0.0148095 --0.0089821 -0.0828857 --0.0301438 -0.0661483 --0.105508 --0.046243 -0.00536856 -0.0762428 --0.00866268 -0.0129991 -0.0540973 --0.0564073 --0.0444993 -0.0344097 --0.0712551 --0.0823058 --0.00857102 --0.0373216 -0.0323425 -0.0121922 -0.0339592 --0.0144476 -0.00591874 --0.0072289 --0.0563861 --0.0694874 -0.0277737 -0.00642767 --0.0845059 --0.0810831 -0.0941359 --0.0306721 --0.055971 --0.0157233 --0.0413727 --0.0618497 --0.0569057 --0.0238509 -0.00152931 --0.0164343 -0.0198291 --0.0446474 -0.0268991 --0.0521837 -0.0559532 -0.0222459 --0.0839401 -0.0622489 -0.0285282 --0.0200876 -0.00630804 --0.0623627 -0.0889681 --0.0113801 -0.00064958 --0.0875927 -0.0816105 -0.00373262 --0.0303056 --0.039381 --0.0418897 --0.0673131 --0.0839465 -0.045581 -0.0531606 --0.042752 -0.0130165 -0.0891537 -0.024346 -0.00716836 -0.0232679 -0.127261 -0.0136617 --0.00673623 --0.00573516 -0.0624026 -0.00843427 -0.0107735 --0.101249 -0.0492703 --0.0735175 --0.0423429 -0.0382698 --0.0344004 -0.00562556 -0.0848249 -0.0725694 -0.0499629 -0.0880358 -0.111942 -0.0613532 -0.00271857 -0.00784661 -0.0395828 -0.0360238 --0.00240891 -0.000424797 --0.0261262 --0.0444008 -0.0408784 --0.0295134 -0.0209616 -0.0939106 --0.00132032 -0.105657 --0.0415476 -0.0702506 --0.063104 --0.0722355 -0.0218304 --0.000762264 -0.0633528 --0.0642419 --0.0276425 --0.0151915 --0.0321788 --0.0820004 --0.0646344 --0.0809618 -0.0200075 -0.0619275 -0.0259572 -0.0253983 -0.0131308 -0.0271587 --0.0108769 -0.0371916 -0.00285787 --0.111092 -0.0187952 --0.0580207 --0.0177214 -0.055294 -0.0730277 --0.0590531 -0.0252229 -0.00415747 --0.0755838 -0.0504165 -0.0744915 -0.0379697 -0.0929265 -0.132044 -0.00806577 -0.0455969 --0.0485449 --0.0130524 --0.0141211 --0.0422821 -0.0731911 -0.108323 -0.0037353 -0.0309277 --0.0388621 -0.0305666 -0.0447679 -0.0737414 --0.0145003 -0.0423175 -0.0368601 -0.015065 -0.0982881 -0.114457 -0.0520299 --0.0704207 --0.0257318 -0.0343896 -0.0259621 -0.0496086 --0.00715169 --0.0148318 --0.00933817 --0.167801 --0.0237314 --0.0372288 -0.0101334 --0.0953421 -0.0333779 --0.0570299 --0.056786 --0.00625367 -0.0276289 --0.0871057 --0.0749762 -0.0363852 --0.0477355 --0.0192435 --0.0406638 -0.0565189 --0.0135992 --0.0667227 -0.0619113 --0.0364149 --0.002508 --0.0242399 -0.0291589 --0.0349074 -0.105125 --0.0179881 -0.03884 --0.0485278 --0.0265393 --0.0327338 -0.00287825 -0.0654839 -0.0017899 -0.0600423 -0.0514174 -0.0904556 --0.0474257 --0.0361486 --0.00770522 --0.074642 --0.0297032 -0.00301394 --0.0469304 -0.0641516 -0.0682111 -0.0179761 --0.110181 -0.0246182 -0.0171227 --0.0919431 -0.0325592 --0.0667393 -0.00739846 --0.0852669 -0.0247862 --0.0325039 --0.0304874 -0.064072 --0.0447785 --0.0386315 --0.0276617 -0.144219 --0.0119837 -0.113429 -0.0222604 --0.0240135 --0.0660116 -0.0899884 -0.0193315 --0.0674843 --0.0315884 --0.0514486 -0.092794 --0.0140066 -0.0123235 -0.0121497 -0.0200222 -0.0525625 -0.00926793 --0.0442093 -0.010879 -0.0475718 -0.048214 -0.0535606 -0.0155797 -0.0397843 --0.0300834 --0.024092 --0.0284369 -0.0401809 --0.0225305 --0.00736444 --0.0533576 --0.0239264 -0.0575484 -0.0131793 -0.0343689 --0.0203502 --0.106549 --0.0193766 --0.0582109 -0.0379741 -0.0274684 --0.00149725 -0.0133982 --0.0213392 -0.039549 -0.0439038 -0.041103 -0.0333329 -0.00869737 --0.0124458 --0.0472425 --0.086939 -0.025587 --0.0223374 -0.0343659 --0.0108434 --0.0351701 --0.0404183 --0.0302626 --0.0362226 -0.0420773 --0.0382839 -0.0895016 -0.0639947 --0.0257995 -0.0190017 -0.0788989 --0.0436228 --0.0151646 -0.0315399 -0.0071641 --0.0902314 -0.0245121 --0.0319247 -0.0389555 --0.0218507 -0.0869499 -0.107944 -0.0902354 --0.0485519 -0.0603787 -0.00223181 -0.0134973 --0.093479 -0.0369319 -0.0600853 --0.0237768 --0.0818702 --0.0501343 -0.021932 --0.0133801 --0.0454925 --0.0245056 -0.00684949 --0.0526981 -0.0393703 --0.0412347 -0.0576554 --0.0181155 --0.0555646 --0.00983314 -0.0624374 --0.0539664 -0.0564419 --0.0334171 -0.0808673 --0.0175571 -0.0484868 --0.0640796 --0.0394858 --0.0711159 -0.0464776 --0.0063196 --0.017029 -0.0175311 -0.0330337 -0.00739099 --0.0223594 -0.0142755 -0.00814078 -0.0178593 --0.042587 --0.0053438 -0.00701346 --0.0758319 -0.0536246 -0.0373216 --0.115333 -0.045449 -0.0552694 --0.0200336 --3.33484e-05 -0.00846334 --0.0505769 --0.0392792 -0.00403252 --0.01571 -0.0551879 -0.0146039 -0.045655 --0.00222251 --0.027141 --0.0478346 --0.0821456 --0.0426833 -0.0730332 -0.0022308 --0.0841373 -0.0255893 --0.018318 -0.0263965 --0.080987 --0.145907 -0.0258962 -0.0541232 -0.037388 --0.0751202 -0.0424349 -0.0549775 -0.0138902 -0.0486288 --0.0865051 --0.0340711 -0.105503 --0.00493483 -0.000477662 -0.0487225 --0.0288581 -0.0398919 --0.00103 -0.000872549 -0.0095439 --0.0170012 --0.00822793 --0.0877861 --0.0777101 -0.0580537 -0.00505743 --0.0260063 --0.0205069 -0.00798509 --0.0583306 --0.0881158 -0.0176952 -0.0110909 --0.0215268 --0.0370186 --0.0431627 -0.0828859 -0.0198138 -0.00635978 -0.016652 --0.0495179 -0.0615609 --0.0251739 -0.0159231 --0.0359492 --0.0888471 -0.0409194 --0.0437365 --0.00957369 -0.0217304 --0.000548663 --0.0243719 --0.0178804 -0.0233483 --0.0255726 --0.0302797 -0.0406512 --0.00728853 --0.0318201 --0.00921713 --0.00409582 --0.0401285 --0.0546061 --0.0700243 -0.00341338 -0.00204894 -0.0216121 -0.0254859 --0.0547987 -0.0931366 --0.0922977 --0.0159328 -0.115384 -0.00385874 --0.098799 -0.0469836 -0.121052 --0.0680686 --0.0819941 --0.0892456 --0.0609556 --0.0408934 -0.0363271 -0.0778341 --0.0736204 -0.0777017 -0.0798012 -0.0424752 -0.0127507 --0.0761695 --0.0470248 --0.0701905 -0.0217491 --0.04028 --0.00374826 --0.0269761 --0.0294789 --0.00938566 --0.0349233 -0.0461531 -0.0405751 --0.00263529 -0.027948 -0.0481001 --0.0419625 --0.0569219 --0.0233564 --0.0155826 -0.0573305 --0.00812323 --0.0252542 --0.08884 -0.00526535 -0.000768665 -0.016183 -0.0140839 -0.0378792 --0.0621468 -0.00263786 -0.00424188 --0.0973045 -0.0789367 --0.0235895 --0.0433802 -0.0458576 --0.0224633 -0.0042206 --0.084378 --0.0213392 --0.0126726 --0.0422838 -0.0428646 -0.018616 --0.013177 --0.048592 --0.020379 -0.0191771 --0.0462936 -0.0433934 --0.0260022 --0.0950792 --0.0978132 -0.111103 -0.0155184 --0.0453299 --0.00963673 -0.0503861 --4.23991e-05 --0.0112188 --0.0689513 -0.0287615 --0.0702757 --0.069181 -0.0485046 --0.0493698 -0.00673178 -0.0447621 --0.123228 -0.0354267 -0.0250418 -0.0395418 --0.140898 -0.0323684 --0.0761039 -0.0666738 -0.104361 -0.0116274 --0.011217 --0.00652245 -0.0793466 --0.0575012 --0.0296142 -0.084734 --0.0404371 -0.0769101 -0.0185941 -0.00855506 -0.00242838 --0.000902542 -0.0160749 --0.0189456 -0.0504453 --0.0276653 --0.0823428 --0.0335788 --0.0304688 -0.0373699 --0.0240886 --0.0325991 --0.052454 -0.100145 -0.0346948 --0.0866967 --0.00480776 --0.0497846 --0.0406545 --0.0838305 --0.11085 -0.0289822 --0.0170399 -0.0701593 --0.0558556 --0.0368151 --0.0108194 -0.0311798 --0.00876538 -0.0344426 -0.0458126 -0.00222539 -0.0469029 --0.00445853 --0.0448902 -0.0746403 --0.0590415 -0.012527 -0.0493346 --0.0835757 --0.0330809 --0.0158115 --0.026042 --0.0248589 -0.0045759 -0.0776511 -0.0465342 --0.0383132 -0.0321971 --0.00838171 -0.0571066 -0.00718802 -0.0542204 -0.0264663 -0.0483907 --0.0714011 -0.0821212 -0.0821649 -8.40063e-05 --0.00035857 --0.0674606 -0.0166709 -0.00428561 --0.0472841 -0.0430712 -0.00980768 -0.00496986 --0.0239318 -0.0960605 -0.0318987 -0.0128535 -0.0319045 -0.0044621 -0.0325529 -0.0539922 --0.0930002 --0.0409723 -0.00538169 --0.0629748 -0.0816906 -0.0102445 --0.017918 -0.0182093 --0.0286371 -0.00794778 -0.0099743 -0.0458736 -0.0311989 --0.088012 --0.0219939 --0.0264624 --0.0115479 --0.0349362 -0.0925634 -0.015623 --0.0791234 --0.0051717 -0.0108678 -0.0339424 -0.0275862 -0.0138433 --0.0130772 -0.0789547 -0.021366 -0.00569521 -0.0694743 -0.0244801 -0.00136009 --0.0278311 --0.0139583 -0.0441842 --0.0229635 --0.0512055 --0.0125026 -0.0440106 -0.03878 --0.0242671 --0.0630548 --0.125404 -0.00689321 --0.00108842 -0.00993119 -0.0985372 --0.0435572 --0.00179746 --0.0468868 --0.0282533 --0.0707276 -0.0398109 --0.00812768 -0.0795014 -0.016354 --0.0271081 -0.0549843 --0.106208 -0.023003 -0.0162673 --0.000176944 -0.020273 --0.0180202 -0.060942 --0.0135827 -0.00550654 -0.0131348 -0.058279 -0.0749749 --0.0265054 -0.0647673 --0.0428262 -0.0408779 -0.03877 -0.0136419 -0.0809239 -0.016191 --0.0401513 --0.0803874 --0.0697563 -0.0309217 --0.000114661 --0.0317546 -0.00380444 -0.0298062 --0.0194662 -0.0672199 -0.0573619 --0.0259844 -0.0059866 -0.00359217 --0.0297415 --0.04179 --0.0399475 -0.0813643 -0.0805165 -0.0844025 --0.0056164 --0.0492364 --0.00149329 -0.0219979 -0.133637 --0.023465 -0.012782 -0.0386719 -0.0110771 --0.108581 --0.0158189 -0.0367063 --0.0684889 -0.0168511 -0.0678638 -0.00971371 --0.062998 -0.0275664 -0.0153949 -0.0821163 --0.0574234 -0.0264342 --0.0136948 --0.00569021 -0.0332549 --0.0353176 --0.0665619 --0.0216431 --0.0690622 --0.0353068 --0.00632378 --0.0583503 -0.0259146 -0.0384988 --0.00555526 -0.0822834 -0.00871033 --0.0388716 --0.0629052 -0.0097641 -0.00131134 -0.0422459 -0.00299251 -0.0366565 -0.0977515 --0.0277301 --0.0524904 -0.0548652 -0.0592189 --0.0245413 --0.0439757 -0.0917853 --0.0314142 --0.0485554 -0.00630638 -0.00654493 --0.100165 -0.0364274 --0.0987676 -0.0154848 --0.000895727 --0.0745885 -0.0418002 --0.0400599 --0.0286049 -0.00418621 -0.0348494 -0.0457412 --0.10722 --0.0231661 -0.053378 --0.000780879 -0.0276488 -0.0509379 --0.0295753 --0.0461831 -0.0452492 -0.0394804 --0.01711 --0.0489057 --0.0426799 -0.0350066 --0.0287099 -0.00586814 --0.0369899 --0.0103113 -0.00424148 --0.00397476 -0.0539349 --0.0518772 --0.0293402 --0.00736373 --0.0243876 --0.0377786 -0.0332976 -0.0743577 --0.0155497 -0.090441 -0.0353015 -0.0378441 -0.0379098 --0.0332874 --0.042306 -0.0118371 --0.0112566 -0.00839569 -0.0106875 -0.0123863 -0.0353547 -0.00177652 -0.0325376 --0.0125637 -0.00636586 --0.0580023 --0.0795378 --0.0447148 --0.0433258 -0.0594152 --0.047259 -0.0722571 --0.0318329 -0.0560738 -0.0965004 -0.0699245 -0.0875259 --0.0184787 -0.0605626 -0.00343639 -0.0162174 -0.0682948 -0.0760354 -0.100522 --0.0523318 -0.0555739 -0.0241412 --0.0549172 --0.00498517 --0.0288726 --0.0450149 --0.0602433 --0.0435505 --0.0293945 -0.0148813 -0.0230963 --0.00360898 -0.0791548 -0.0128777 --0.027698 -0.0694737 -0.0993387 --0.00780487 -0.0278806 --0.0135063 --0.000716869 -0.00161167 --0.0580595 --0.0150039 -0.0331246 -0.0362759 -0.0348317 -0.0494767 --0.00335233 --0.00905867 --0.0269692 -0.0256782 --0.00996761 -0.0102446 -0.0125359 -0.021037 -0.0196621 --0.00896708 --0.00966295 --0.0284811 --0.0271944 --0.0011748 -0.0130072 --0.112456 -0.0127578 --0.0354846 -0.0197378 -0.10922 --0.00820801 -0.0405662 --0.0307811 -0.0850076 -0.0641802 -0.0624471 -0.0395553 --0.048519 -0.00753992 -0.0882295 --0.000161036 -0.00672087 --0.04175 -0.019509 -0.0932937 -0.013099 -0.0416906 --0.0356097 --0.0390864 --0.0459305 --0.00151285 -0.00222693 -0.0825989 --0.00516339 -0.0345954 -0.100812 --0.0335253 -0.0127675 --0.0211103 --0.0360659 --0.00102129 -0.00156291 -0.0221908 --0.0415987 -0.060818 --0.052013 --0.0534004 --0.00121124 -0.158355 -0.0637804 -0.0155066 -0.00175017 --0.0159851 -0.0459697 -0.0118004 -0.0181177 --0.0348177 --0.0145093 --0.0454556 -0.01609 -0.031674 -0.0251104 --0.0203424 --0.000887669 --0.0441863 --0.0678931 --0.00637313 -0.0105855 --0.0131597 --0.0122205 --0.0463855 --0.0343166 -0.021252 --0.0596067 --0.0196071 -0.00717528 -0.00712236 -0.0590823 --0.0600106 --2.15618e-05 -0.00531653 -0.0240801 --0.0369389 -0.0470384 --0.104621 --0.00811266 -0.00736196 -0.0543886 --0.0979591 --0.0986037 -0.0353705 -0.0272601 --0.0330111 --0.0955571 --0.0346798 -0.00557989 --0.0382449 --0.0797907 --0.0711822 -0.0538986 -0.0648373 -0.0596094 --0.0510802 -0.0267879 --0.0426936 --0.0379123 -0.0317836 --0.00479782 -0.0392012 -0.0343634 --0.00311996 --0.00294991 -0.0339737 -0.104921 -0.0146108 -0.0117446 -0.0251235 --0.0130594 -0.0755122 -0.0351174 -0.117708 -0.0622329 -0.0472342 -0.098271 -0.0983089 -0.0534539 --0.0611481 -3.43869e-05 --0.0105057 -0.012074 --0.0888875 --0.047171 --0.00890918 -0.0572515 --0.00451149 --0.032975 --0.0676909 -0.0780591 -0.00516897 -0.118049 -0.0342621 -0.0646568 -0.0916127 --0.0606874 -0.0143929 --0.0628274 -0.0290536 -0.0211274 -0.0144921 -0.0410556 -0.000912423 -0.0725533 -0.0230652 -0.00263658 -0.0703451 -0.0468311 -0.0525515 -0.020198 --0.0221978 -0.0391912 --0.0508218 --0.0106167 -0.00421599 --0.0593635 -0.0812704 -0.0459373 --0.0110815 -0.0248569 -0.0478944 -0.0284164 --0.0364661 --0.0270245 -0.0389158 -0.014656 --0.0213603 -0.0400391 -0.0672308 -0.0291138 -0.0103638 --0.0459572 -0.0259843 --0.0034272 --0.0759154 -0.050208 --0.0671185 --0.01374 -0.0633465 -0.0579907 -0.0352085 --0.0288622 --0.0160463 --0.0681657 --0.0120212 --0.0190581 --0.137458 -0.0373206 --0.0508572 --0.012342 --0.0838788 -0.0204542 -0.0890307 -0.0222392 --0.0233142 -0.0601306 --0.0276816 -0.0249791 --0.00759347 -0.024148 -0.0152466 --0.0511376 --0.0499952 -0.106621 -0.0492849 --0.0139407 -0.0128684 --0.0863962 -0.000796853 --0.0437401 --0.00668449 --0.0266448 --0.0580732 -0.00794936 -0.0163653 --0.0121866 -0.0175634 -0.0493106 -0.0624436 --0.0292888 -0.0690736 --0.0106071 --0.0496448 --0.110422 -0.0834425 --0.048449 --0.0555199 -0.0516576 -0.0110255 -0.0429791 --0.0280055 -0.0295242 -0.00291697 -0.0677781 --0.0122567 --0.104925 --0.0602385 -0.032015 --0.056404 -0.0325755 --0.0011275 --0.0411665 -0.0933168 --0.00360854 --0.0548566 --0.00779646 -0.0298439 --0.0477127 --0.00482977 --0.0114558 -0.00187758 --0.0385194 -0.0170897 --0.049088 -0.0288671 --0.0336805 -0.0123401 -0.00133741 --0.0305218 --0.0169974 --0.0346785 -0.0192683 -0.0154629 --0.00389389 --0.0545129 --0.0958195 --0.0138831 -0.0361429 -0.0321794 --0.0591002 --0.0811467 -0.0129742 -0.0256429 --0.152158 -0.0201495 --0.0297271 --0.0624054 --0.0270039 -0.030314 --0.048342 -0.0909341 -0.0423025 --0.0447067 --0.0722176 --0.0603377 --0.046946 -0.0150662 -0.0142593 --0.0336423 -0.147146 -0.0476961 --0.0377651 --0.00889413 -0.0496804 --0.0442522 -0.0588473 --0.0630222 -0.0591752 -0.0366926 --0.0893921 --0.00525352 --0.0060478 --0.0609271 --0.0365489 --0.0199951 --0.0217282 -0.0167803 --0.0176076 -0.148145 -0.00427189 -0.00856623 --0.0344071 -0.0196841 --0.0144923 -0.0329274 -0.0297295 -0.0688006 --0.0273027 -0.0301861 --0.0621372 -0.107278 --0.0156247 --0.0922286 --0.023799 -0.0565184 -0.101512 -0.0290175 --0.0440945 -0.0249686 --0.0776003 --0.0144543 --0.0204839 -0.00940514 --0.0552465 --0.0363462 -0.0135339 -0.0499094 --0.00534861 -0.0510824 -0.0594743 --0.0372262 -0.00501751 -0.0396046 -0.0101598 -0.0425557 --0.0102043 -0.00658005 -0.0795524 -0.0520023 -0.102148 --0.0289774 --0.00418487 --0.00181141 --0.0655025 --0.0193337 --0.0195566 -0.075052 -0.00368849 -0.012868 --0.0121272 -0.0807225 -0.0129261 -0.0632238 --0.00225016 -0.0227001 --0.0344714 -0.073226 --0.0206097 -0.0100296 --0.101127 -0.102214 -0.0130048 -0.0189404 -0.0227121 -0.0291666 -0.0584434 -0.0929734 --0.00355235 --0.0378872 --0.0578053 -0.0537581 -0.00107148 --0.0309648 -0.0524099 --0.0440468 --0.0444451 -0.0149046 -0.0433662 --0.0393958 --0.104647 -0.0145113 -0.0489187 -0.0270757 --0.0048612 --0.0262755 -0.0175405 -0.114519 -0.0559692 --0.0463358 --0.0330457 -0.0194625 --0.0691533 -0.0649994 --0.00373832 --0.0513162 -0.0665485 --0.084132 -0.0185356 --0.0230611 -0.0600692 --0.0168603 -0.0773674 -0.0307498 -0.00297921 --0.0188189 --0.0269337 -0.0569398 -0.0401084 -0.0969786 -0.0387015 -0.113117 --0.00227136 -0.081871 --0.0642729 --0.0125265 -0.0745741 -0.00400957 --0.0100136 --0.00053583 -0.0366712 --0.0371585 --0.00234634 --0.0836251 --0.021707 --0.0935107 -0.04668 -0.019608 -0.012382 --0.0205909 --0.0834102 --0.0454722 -0.0159747 --0.0664526 --0.0410661 --0.0122711 --0.0503922 -0.0111567 --0.00956235 --0.0812432 -0.0351603 -0.0104667 --0.00933105 --0.0347614 --0.0592565 -0.0581236 --0.0415836 -0.0929456 -0.0238589 -0.0401221 -0.0182119 -0.0276463 --0.125488 -0.0987909 -0.0360799 -0.0281797 -0.0546676 --0.0321506 -0.0366085 --0.117058 --0.0765848 --0.0148271 -0.0456427 --0.018355 -0.0509566 -0.0150318 -0.0396106 --0.0387472 -0.00283326 --0.0631372 -0.0319829 --0.0414872 -0.0182265 -0.0223582 -0.0784941 -0.0573672 -0.0410275 --0.0309544 --0.00746668 -0.0799114 -0.0546326 -0.0154492 --0.0106514 --0.0274045 --0.0403215 -0.0481972 --0.0511719 --0.000567074 -0.0404299 --0.000344843 -0.0599114 -0.0656209 --0.0363599 -0.0134431 -0.0198512 --0.0176081 --0.146127 -0.0419918 -0.00119844 --0.0388737 -0.0509116 -0.0256266 -0.0486217 --0.105265 --0.0245889 --0.0240493 -0.0170518 --0.0207644 -0.00984057 -0.0340175 -0.0472607 -0.00513641 -0.0536448 -0.00893011 -0.026808 -0.0796008 --0.0450751 -0.0610762 -0.0340933 -0.0736583 -0.016496 -0.0589235 --0.0258852 --0.064081 -0.0176112 --0.0495804 -0.0377133 -0.0927234 --0.0203594 -0.0108208 --0.0975774 --0.0256264 --0.0434636 -0.0163766 -0.118187 -0.00834046 -0.0565522 --0.00718689 -0.0235002 --0.0189003 -0.0111128 -0.0547109 --0.112593 -0.0668294 --0.0634839 --0.0588138 -0.0827888 -0.0493981 -0.116059 --0.0255847 --0.0237522 -0.0337489 --0.00753081 -0.0102055 --0.0079129 --0.022168 -0.0136141 --0.0122969 -0.0129405 --0.0475225 --0.0486838 --0.0222304 --0.00297596 -0.0491992 --0.0302188 --0.0637049 --0.0592957 -0.0489954 --0.044041 --0.0275358 -0.027028 -0.00982204 --0.0165538 --0.0226493 -0.0649566 -0.0010154 --0.0541052 --0.0181086 -0.0106525 -0.0984644 --0.0127046 --0.0287815 --0.0880785 --0.0140519 -0.0658711 -0.00681692 -0.00533048 -0.0293478 -0.0155677 -0.00212665 -0.00384338 -0.0157967 -0.0196583 -0.0600382 --0.0412109 -0.0788488 --0.0375474 -0.0549633 --0.158411 --0.0475239 --0.00124934 -0.0419827 --0.0455434 -0.0118348 --0.020409 -0.140365 --0.0989995 --0.0634637 -0.0413459 -0.0260235 -0.000696524 -0.00429778 -0.0280886 --0.0254972 -0.0413521 -0.016619 --0.0435699 -0.0206189 -0.0999683 --0.0381376 -0.0387017 -0.0191205 --0.0973968 -0.0505911 --0.0196133 -0.0576374 --0.045275 --0.0429565 -0.00963177 -0.0733414 -0.00821572 -0.0458468 --0.0990822 --0.0517325 --0.0497781 --0.0959906 --0.01325 -0.0750034 -0.00581599 -0.103313 --0.0286028 --0.0495691 --0.0595784 -0.10419 --0.0223764 -0.0592382 -0.0115682 -0.0118896 --0.0756069 -0.0328991 -0.0512927 --0.0204375 --0.0164413 -0.0294347 -0.0292309 -0.0653508 --0.0592645 --0.0564582 --0.0267485 -0.0323198 -0.0315995 --0.00281936 --0.0360409 -0.0647037 -0.0199704 --0.0580196 -0.0114938 --0.00756986 -0.0258705 --0.0118554 --0.0276944 --0.0176005 --0.0656444 -0.0586365 --0.028501 -0.0490792 --0.029556 -0.0206749 --0.0396356 -0.0774633 --0.0616473 -0.0091345 -0.0262911 --0.00614349 --0.0523012 -0.00809157 --0.0859706 -0.00914065 -0.14325 --0.0147654 -0.0282332 -0.00379569 -0.0490166 -0.00804305 -0.0334686 --0.0794572 -0.0991113 --0.0246551 -0.0847888 --0.0520811 -0.00915873 --0.18876 -0.0115177 -0.0237419 --0.00585951 --0.0261503 --0.0849829 -0.00193517 -0.000964211 --0.0311489 --0.019701 -0.00834711 --0.0461661 -0.0504181 -0.0573128 --0.0239171 -0.075732 --0.0471048 --0.000673436 -0.0638453 -0.175541 --0.0732659 -0.0326862 -0.0293509 --0.0605441 --0.0228354 -0.0494484 -0.0638815 --0.0253753 --0.0348987 -0.00156853 --0.0268942 -0.0246212 -0.00612187 -0.0831938 --0.0415215 -0.0735146 --0.0352915 -0.0200536 -0.0609029 --0.0748483 -0.0104452 -0.00815784 --0.0215695 --0.0672901 --0.0305029 --0.0683652 --0.0515068 -0.032917 -0.0229122 --0.0295543 --0.0598815 -0.0159989 -0.00446047 -0.128559 --0.0379148 -0.043682 --0.0548344 --0.074849 --0.0391315 -0.0846959 -0.0563857 -0.0381762 --0.0469067 -0.00461265 --0.0139061 -0.00335694 -0.0247776 --0.0200766 --0.0109619 --0.0855919 --0.00505585 -0.0166732 --0.0740547 -0.0459208 -0.0337249 -0.0357913 -0.0236691 --0.0340165 --0.0458958 --0.0535215 -0.00853748 --0.099527 -0.0418756 -0.00784446 --0.0197754 --0.0400278 --0.0130231 --0.119576 -0.0828553 -0.0333613 -0.0713931 --0.0239141 -0.00932673 -0.0537433 -0.0178086 --0.0689735 --0.00274352 -0.00506088 --0.0394246 --0.0451346 -0.00972201 -0.0333595 -0.0113949 --0.101925 --0.0352195 -0.0564264 -0.0337247 -0.0116186 --0.0460732 --0.00991027 --0.0871529 --0.143395 -0.051417 -0.0283644 --0.00355384 --0.115258 -0.0424029 --0.0242469 -0.0382484 -0.00123705 --0.0393684 --0.0672144 -0.110704 --0.00087587 --0.0249499 --0.00134975 --0.0239469 --0.0509696 --0.0521226 -0.0893836 -0.0707165 -0.0423422 --0.0353731 -0.080046 -0.0518091 --0.0263531 --0.0606401 -0.0168543 --0.0333674 --0.013402 --0.0230661 -0.00723541 --0.0418193 -0.00814698 --0.0319147 -0.00868674 --0.103187 -0.0912244 -0.0649308 --0.00113439 --0.0606085 -0.0149806 --0.0154338 --0.0542611 -0.0442843 -0.0227154 --0.0353304 --0.0355191 --0.0580985 --0.0223037 --0.00198987 --0.0568623 --0.00405922 --0.0289196 --0.0702656 -0.0558796 -0.0413838 --0.0038183 --0.0250306 -0.150899 --0.0184069 -0.0109202 --0.0551502 --0.00715508 --0.0360468 -0.00885662 -0.0102877 --0.0163201 --0.0335046 -0.0376449 --0.00543321 --0.0704222 -0.00749663 -0.0556591 -0.0364235 --0.0492387 --0.0711661 -0.0168823 --0.0163595 --0.0198322 -0.0358081 --0.116952 --0.0259846 --0.0734988 -0.0319816 -0.0539301 --0.0148298 --0.0549558 -0.102009 -0.0363225 -0.0299248 --0.113102 -0.0127426 -0.0249155 --0.0396066 -0.00383514 --0.0357531 --0.0244033 --0.0173764 --0.0131098 --0.0939608 --0.0209455 --0.0105225 -0.00353038 -0.0656966 --0.0105402 --0.0910299 -0.0208004 --0.0442952 --0.0434118 -0.0153882 -0.0500993 -0.0126279 --0.0566511 -0.0135274 -0.0367331 -0.128738 -0.047333 --0.0205445 --0.0262312 --0.0263208 --0.0618322 --0.00872752 -0.0370754 --0.0243394 -0.111963 --0.0422167 --0.0546374 -0.0612323 --0.0232596 --0.0264416 --0.0878733 --0.0576602 -0.0383001 -0.0304879 --0.0223555 -0.00597816 --0.0259746 -0.0428494 --0.00525112 -0.0161187 -0.051948 -0.00934333 --0.0673142 --0.0235197 --0.0595636 -0.00678028 -0.0404101 --0.0971245 -0.00409911 --0.0421484 -0.00858182 --0.022647 --0.0525218 --0.0188659 --0.0292957 --0.0340608 --0.0152384 -0.0191126 -0.104129 --0.0632434 -0.0137216 --0.0586611 -0.0677102 -0.111948 -0.00819309 --0.0123284 --0.000785705 -0.118607 -0.00563186 --0.0297199 --0.0254575 -0.0606887 -0.0489885 -0.113742 --0.0597148 -0.0731133 -0.122041 --0.0154756 --0.055591 -0.00736206 -0.0501492 -0.0408979 -0.0668702 --0.0992645 --0.0867931 --0.0990297 --0.0117663 -0.016138 -0.0401858 -0.0472084 -0.0416129 -0.0269397 --0.0575251 --0.0837526 --0.0594006 --0.0690835 --0.0961866 --0.00634262 --0.0425491 -0.0311724 --0.0553495 --0.0804436 --0.100387 --0.0843036 -0.122374 --0.0915605 -0.0488103 --0.00686781 -0.0153945 -0.0150803 --0.109899 --0.106439 --0.0284829 -0.0369233 --0.00402181 -0.0437958 --0.030995 --0.0475029 -0.104008 --0.0347421 --0.0217454 --0.00498094 -0.0338165 --0.0406652 --0.0189864 --0.0447304 -0.0279978 -0.0701919 --0.036181 -0.0683987 --0.0177099 --0.0377704 --0.0182827 --0.0467023 -0.0717989 --0.0518172 -0.140238 --0.0148206 --0.0378193 --0.0840883 --0.0677698 --0.0123891 --0.0227583 --0.0169506 -0.0739108 --0.0686589 -0.0427343 -0.00709746 -0.0320047 --0.00488084 --0.0287853 --0.00534141 --0.100081 -0.0950904 --0.0132098 -0.00412003 --0.0196285 -0.0908769 -0.0396403 -0.114736 --0.100214 --0.0517418 -0.0116948 -0.0497148 -0.0893339 --0.0285316 -0.0913972 -0.092255 -0.000929592 --0.0382856 -0.0470866 --0.023861 --0.0128821 -0.107199 -0.0119708 --0.0437047 --0.0176311 -0.0149748 --0.00253893 --0.00663653 --0.0280917 -0.00722548 --0.0339846 --0.067627 --0.0242713 -0.0681772 --0.0579697 --0.0857322 --0.0140186 -0.0631623 --0.030808 --0.0400547 --0.000721847 -0.0661105 -0.00960876 -0.0179058 -0.0449788 -0.005293 --0.001107 --0.0327018 -0.0245385 --0.0254322 --0.0125831 --0.0010549 --0.0188332 -0.0115744 -0.00333598 -0.00256762 -0.079579 --0.0183864 -0.00366356 -0.070083 --0.0422908 --0.109282 --0.0490379 --0.0764434 --0.015569 -0.0211572 --0.0846641 -0.020093 -0.061958 --0.0540202 -0.0312856 -0.0726505 --0.0534032 --0.0572216 -0.0216046 -0.0626601 -0.0853217 -0.0464443 --0.0108441 -0.0445741 --0.0345786 --0.0600204 --0.0538043 --0.0748783 --0.0584556 --0.0624658 -0.0769365 -0.0649301 -0.062657 --0.00138314 -0.0302679 --0.0578569 --0.0108959 --0.0451181 --0.021726 -0.0158111 --0.017632 --0.0144936 -0.0484067 -0.00814513 --0.0453859 -0.0238236 -0.00997486 --0.0237162 -0.020496 -0.105587 -0.00371031 -0.0444636 -0.0398573 --0.0232163 -0.0355132 -0.0252301 --0.0225619 -0.0652216 -0.0203454 --0.0135958 -0.0574767 --0.0275939 -0.0238104 --0.0489286 --0.0111189 -0.0890722 --0.087371 -0.094027 --0.0139846 -0.0184985 --0.0887415 -0.010712 -0.0414301 --0.078154 --0.0154142 -0.0355373 -0.033063 -0.00932832 --0.00870253 --0.0581038 -0.0697368 --0.126606 --0.0278142 --0.0523545 --0.0633731 -0.0108847 --0.00659745 --0.0379355 -0.0524019 --0.0410091 -0.0601057 --0.0654696 -0.0293594 --0.0165831 --0.0236489 --0.0913583 -0.0281585 --0.0253852 --0.0493612 -0.0385102 --0.00744432 -0.0155635 --0.0352467 -0.0362824 --0.0358562 --0.00126459 --0.0419787 -0.0418718 --0.0444528 --0.0245648 -0.0361989 -0.0572616 --0.028128 --0.05657 -0.0386831 --0.0630192 -0.0565126 --0.0864265 --0.0450109 --0.0831751 -0.0665923 -0.0222222 -0.0039468 -0.0462915 --2.47615e-05 --0.00582759 -0.00982952 -0.048662 -0.0248091 -0.0371138 --0.020828 --0.0128854 --0.0492129 -0.0198115 -0.0934646 -0.0176645 -0.00405623 --0.00322233 -0.0112017 -0.0330177 -0.040241 -0.0347547 -0.0173497 --0.0321444 -0.0235705 --0.0496472 -0.0261227 -0.0731991 --0.0168307 --0.0323245 -0.00608194 -0.0611256 --0.0237482 --0.0267653 --0.024333 -0.00465255 --0.0721932 --0.0604555 -0.0289595 --0.169719 -0.0299735 -0.0478993 --0.0605204 --0.0275513 --0.0581947 -0.0222481 -0.125131 -0.0107579 --0.0466585 --0.0517276 -0.0172165 --0.0097708 -0.047605 --0.0220964 --0.0101512 -0.00900946 -0.0759238 --0.00354646 --0.0148272 -0.0328686 --0.0181223 -0.00600917 -0.0817682 -0.00302032 --0.00104063 -0.0687009 --0.0157042 --0.0816751 --0.0145734 -0.0978158 -0.0872667 -0.0969281 -0.0422608 --0.00969369 --0.0136082 -0.0118895 --0.0116972 --0.0688419 -0.0421173 --0.0823165 --0.030215 -0.0318161 --0.0153041 --0.0337628 -0.0508644 --0.0287971 -0.0176878 --0.0302312 --0.00313697 -0.0282195 --0.00779483 --0.0573392 -0.00127088 -0.0527556 --0.0462332 --0.0189217 --0.0181115 -0.0282907 -0.00474387 --0.031604 -0.126804 -0.110266 -0.0203502 -0.0322007 -0.0291708 -0.0310078 -0.0259408 -0.0462334 -0.0621328 -0.0721271 -0.0534665 -0.0417466 --0.116939 --0.0776111 -0.00533806 -0.0376155 --0.0405651 --0.0244059 -0.0171151 -0.018866 -0.0630674 -0.0010347 --0.0176899 --0.0371902 --0.0557433 -0.0408605 --0.0411712 -0.0271941 -0.0460072 --0.0516376 --0.0340189 --0.0166046 -0.0220757 -0.00177934 --0.0506896 -0.0466319 -0.0374498 --0.0692426 --0.0491902 -0.0602066 --0.0646327 -0.0499473 -0.0710276 -0.0437696 -0.0164236 -0.0259265 --0.034393 --0.0316345 --0.0973929 -0.0391312 --0.0619808 --0.0100439 --0.0230978 -0.08028 --0.0340463 --0.0593478 -0.0392941 -0.0309196 -0.0926814 -0.000317608 --0.0304637 -0.0262145 -0.00322173 -0.0545383 --0.0280516 -0.0021758 -0.0187785 -0.0363765 --0.0208762 -0.0367182 -0.0816834 -0.00320984 -0.072494 -0.00720676 -0.041508 -0.0255842 -0.0302443 --0.019254 --0.000320649 -0.137495 -0.0100203 --0.00933179 -0.0216467 --0.00608257 -0.0277411 --0.00249284 --0.0175115 -0.0267931 -0.0278158 -0.00902428 -0.000374802 -0.0299244 -0.142801 --0.00614853 --0.033579 -0.00923861 --0.0361974 -0.0101954 --0.057809 --0.0137955 --0.0705621 -0.00895425 -0.0430287 --0.0567996 -0.0889362 -0.00911947 --0.0250541 --0.00553543 --0.00349406 -0.0458297 --0.00716797 -0.0699312 --0.126524 -0.00505257 --0.00819551 -0.0114007 --0.024797 -0.0206466 -0.0512597 -0.106054 --0.0373134 --0.0407349 -0.0417991 -0.0127252 --0.00968527 -0.0293759 --0.00617536 -0.0530667 --0.0135611 --0.0224304 -0.0449301 --0.0484008 -0.045827 --0.0640804 -0.0598501 --0.00870386 -0.0197419 -0.022157 --0.0471625 --0.0460448 -0.0904948 -0.0123098 --0.03237 --0.0262622 -0.038003 -0.0278915 -0.0462355 --0.063429 --0.0170553 -0.0358679 --0.051123 --0.0044451 --0.00147965 --0.0204774 -0.0758482 -0.0856536 -0.110709 --0.0648744 -0.0122407 --0.0442879 --0.0377955 --0.0326125 --0.00537921 --0.0499303 --0.0608324 --0.0311263 -0.103177 --0.0931658 --0.0259121 -0.0176873 -0.0381215 --0.0521608 --0.0326421 -0.0547886 -0.0730248 --0.0295004 --0.000779265 --0.00599852 -0.0575212 -0.0204253 --0.0215942 --0.0164171 --0.00360421 --0.0147507 -0.00482036 -0.0358196 -0.0333921 -0.0713388 --0.0182929 --0.020047 -0.00333484 -0.0427373 --0.0466435 -0.0634454 -0.0684948 -0.011772 --0.0225283 -0.0146193 -0.0251655 -0.00522675 -0.0319188 -0.019942 --0.011341 -0.106556 -0.0668678 --0.0459842 -0.017197 --0.0889587 -0.04291 --0.00792931 --0.0727773 -0.00613353 --0.0276195 --0.0358763 --0.0545963 -0.0235837 --0.0369579 --0.0416381 -0.0303447 -0.0177215 --0.0062753 -0.0281834 -0.0169464 --0.0445258 -0.0635793 --0.048032 -0.0286165 --0.0620912 -0.00320802 -0.00331709 --0.0502636 --0.0134872 -0.0624094 --0.0668719 --0.0577432 --0.104075 -0.0770876 --0.0587729 --0.0533996 -0.0117659 --0.0563725 --0.125777 --0.0179088 -0.00517236 -0.00799352 --0.11468 -0.0494391 --0.0280698 -0.0186596 --0.0453823 -0.00412002 --0.0330526 -0.104203 -0.0320048 -0.0315129 -0.0631896 --0.017793 -0.0550071 --0.0248522 -0.0605919 --0.0610789 -0.0388829 -0.104851 --0.0248643 --0.0453176 --0.00400237 --0.00976173 --0.0107272 --0.0876683 --0.0684867 -0.0467488 --0.0343409 --0.0362368 -0.0187697 -0.00324625 --0.038022 -0.111316 -0.0575432 -0.00429435 --0.0527471 --0.0687518 --0.111305 -0.0485125 --0.0418384 --0.0573615 -0.0124656 -0.0156459 --0.0534628 -0.00143162 -0.0223848 -0.0294003 --0.0690872 --0.0928738 --0.0616774 -0.0335965 -0.0380298 -0.0345118 -0.0163105 -0.0740291 -0.0389639 --0.00384561 --0.010194 --0.0378053 --0.031417 -0.0282194 --0.0544372 -0.0686855 --0.0362901 -0.0777714 -0.0345987 --0.0259624 --0.122309 -0.0230725 --0.00509948 -0.0222238 --0.0747808 -0.0994422 -0.0168912 -0.00324121 -0.00789667 --0.0522911 -0.00889308 -0.0186529 --0.0514964 --0.00647272 -0.0254636 -0.0100231 --0.024945 --0.0673466 --0.0780127 -0.0216684 --0.0134922 --0.0238354 -0.0177513 --0.03274 --0.0300445 --0.00748146 --0.00797136 -0.0223904 -0.0324171 -0.0483298 -0.00399431 --0.0629676 -0.0332745 -0.0200116 -0.0146458 -0.0317521 -0.0235426 --0.00886629 --0.020222 -0.00596902 --0.0212329 --0.111977 -0.04618 -0.0109176 -0.0312412 --0.0112624 -0.0507593 --0.0318502 --0.0294366 -0.046504 -0.0471171 -0.00908183 --0.0482979 --0.213201 -0.0589652 --0.081912 --0.00137561 -0.0648828 --0.0155724 --0.0289828 -0.0400493 -0.0615517 -0.0439681 -0.0202319 -0.0365047 --0.0578444 --0.0169915 -0.121117 --0.00965763 --0.108618 --0.0523454 -0.0506682 --0.00791368 --0.0464179 -0.018257 -0.0602036 --0.0374985 --0.0135296 --0.00341038 --0.0318389 -0.0627251 -0.017522 -0.0153831 --0.0268983 -0.0706917 -0.028592 -0.00679043 --0.0217695 --0.00554482 -0.0713222 --0.0185981 --0.0290548 --0.00338176 --0.0660428 --0.033727 --0.0387639 -0.0467309 -0.0159918 -0.071035 --0.140404 -0.00532436 --0.0335364 -0.00683024 -0.0570704 --0.0136126 --0.0454283 --0.0663334 --0.0386139 --0.0563184 -0.038574 -0.0875792 -0.0881709 -0.00168282 -0.00876658 -0.0132576 --0.0295628 --0.0306875 --0.017972 -0.0181138 --0.0272136 --0.00617583 -0.00520396 -0.0445895 --0.0303857 --0.0282785 --0.0342185 -0.0509651 --0.0644344 --0.0613209 --0.0323533 -0.0129164 --0.00890827 -0.0110902 -0.0186153 --0.0683781 -0.0477833 -0.0673788 -0.0124959 --0.0618926 -0.0190171 --0.010498 --0.0508475 --0.076871 -0.0581178 -0.0273391 --0.0568081 -0.00900714 -0.00890874 --0.0094312 -0.0175098 --0.0138018 -0.0803113 -0.0281618 --0.0509858 -0.0100876 -0.0604273 --0.0396534 --0.041242 -0.00973925 --0.035495 -0.00797475 -0.0034504 -0.00515173 --0.0714333 --0.0757596 -0.0216568 -0.00670954 --0.0140409 --0.00078272 --0.0793123 --0.035004 --0.0217469 -0.0457262 --0.076576 --0.0126446 --0.0788022 -0.102986 --0.0243278 -0.0220303 --0.0626731 --0.0353605 --0.0157794 --0.0635498 --0.0332142 --0.102128 -0.0606493 -0.0804221 --0.0396111 -0.0478028 --0.145059 -0.0594524 -0.0544877 -0.00452329 --0.0341505 -0.0501014 -0.0224755 -0.0275029 -0.0688059 -0.0759079 -0.029874 --0.0554291 --0.0363693 --0.0323852 --0.0472587 -0.0153059 --0.0521808 --0.0191604 --0.0527952 --0.0829191 -0.0470659 --0.0534639 --0.0070736 -0.104013 --0.0235726 -0.107101 -0.0461597 --0.071041 --0.0124386 -0.0233996 --0.0166145 --0.00639929 -0.000792755 --0.0342908 --0.000264227 --0.00731751 --0.0451127 -0.00456682 -0.0269415 -0.0632761 -0.0228867 --0.0373728 --0.0502228 --0.108458 -0.00175781 -0.0854638 -0.0232706 -0.0151913 -0.00267498 -0.0420288 -0.0388512 -0.0710656 -0.0222472 -0.035164 --0.0203403 --0.0296881 --0.0200274 --0.0636543 --0.0825124 -0.0314426 --0.0126492 -0.0159282 --0.0774357 -0.0185363 --0.0693386 -0.0312539 -0.0165549 --0.025385 --0.0471511 --0.0060916 -0.0312872 --0.0914157 --0.0341056 -0.0196356 -0.0338352 --0.0414981 -0.0518664 --0.0679197 -0.0626045 --0.0049175 --0.107537 -0.0755688 -0.00199456 --0.0428902 -0.0372724 --0.0389186 --0.026004 --0.0543303 -0.0795857 --0.0127225 --0.0689618 --0.0135232 --0.00535144 --0.00493101 --0.0865982 --0.00566492 --0.00659825 --0.00163188 --0.0827566 -0.090376 --0.0583647 --0.0588103 --0.0770131 -0.0545261 -0.0144692 --0.0711728 -0.0468869 -0.132473 --0.0528645 -0.028128 -0.0156101 -0.000735693 -0.0261768 -0.00768514 --0.00476018 --0.0788134 --0.0448127 -0.0445741 -0.0116635 --0.044424 -0.118827 --0.00825162 -0.0105471 --0.0298892 --0.026958 -0.00639453 --0.0573733 -0.0504938 --0.0418936 -0.0245017 -0.0362225 --0.0199974 --0.0250307 --0.0395126 --0.0180757 --0.000689773 -0.0561983 -0.0166984 --0.139158 -0.0174604 --0.0162533 -0.0749536 -0.0411134 -0.00916682 --0.0207973 --0.0349957 --0.0845658 -0.0321751 -0.0188833 -0.0143157 --0.0248388 --0.0453855 --0.163844 --0.0766671 --0.0143414 --0.00755399 --0.0499242 --0.0931372 -0.00997363 -0.0781848 --0.0111305 -0.0388288 --0.00276608 -0.0510545 -0.00375921 -0.0150878 --0.061511 -0.0167895 -0.0177738 --0.0686577 -0.00683157 --0.00637861 -0.0612149 -0.00938526 -0.148316 -0.0314484 -0.0190738 -0.0155958 -0.0440474 --0.0394362 -0.100249 -0.0345857 -0.0574738 --0.058691 -0.0668668 --0.00776109 -0.00592679 --0.0400498 -0.0439568 --0.0452895 -0.0897532 -0.0210824 -0.0576891 -0.0200599 --0.0222463 -0.0206461 --0.0360102 -0.026759 -0.0178703 --0.0343757 --0.0736571 -0.0250685 --0.0360126 -0.0717236 -0.0582581 --0.0312419 --0.0178492 -0.0222597 -0.0978914 --0.0425324 --0.0400241 --0.016826 --0.00365319 --0.00638859 --0.0077353 -0.0199828 --0.049254 --0.0216443 -0.0538046 --0.00796129 -0.0170107 -0.0290799 -0.0854362 --0.0150607 --0.00690774 --0.0225644 -0.065824 -0.00783302 -0.0348054 --0.0730881 -0.0524151 --0.181974 -0.0585296 --0.0363245 --0.0230683 --0.0895262 --0.0168554 -0.0150753 -0.0312435 --0.00974228 --0.0612182 --0.00394739 --0.0131613 -0.0386425 --0.149906 -0.0203188 -0.0660289 -0.0083031 --0.0930604 --0.0158373 --0.00913411 --0.0788995 -0.0399524 --0.026911 -0.066868 -0.0287606 -0.024133 --0.0240128 -0.0308692 -0.0168703 -0.0696645 --0.0344458 -0.0805863 -0.0564163 -0.042922 --0.00514513 -0.0317637 -0.0244781 -0.060065 --0.0324263 --0.0459032 --0.031255 --0.018347 -0.0797262 --0.0135786 -0.0200863 -0.0130472 --0.0161759 -0.00810097 -0.0129505 -0.0677843 --0.0192225 -0.0598945 --0.036564 --0.0739001 -0.0166299 --0.0362911 -0.0359077 -0.073942 --0.0265742 -0.0197615 -0.0170756 -0.0983727 -0.0308305 --0.0291876 --0.0162316 --0.0446334 -0.0430604 --0.00759462 -0.00749756 --0.055384 -0.0504414 --0.0625241 -0.020021 --0.048941 -0.071568 -0.000330453 --0.065688 --0.099653 -0.0765442 -0.0796358 -0.0844211 --0.0806731 --0.0300208 --0.00459124 --0.0116809 --0.00486282 --0.0417507 --0.0308012 -0.0680485 --0.03219 --0.104277 --0.038603 -0.00422131 --0.00474395 --0.0497932 -0.0608901 --0.0270783 --0.0914666 -0.0176111 -0.00522153 --0.0530254 --0.0327623 -0.00171623 --0.0626393 --0.0151894 -0.0193824 -0.0197768 -0.0486063 -0.00935143 -0.0433041 -0.0050235 -0.0637722 --0.00724046 --0.0420704 -0.00188018 -0.0257705 -0.0928395 -0.0252987 --0.0123351 -0.0453676 --0.0157263 -0.0610325 -0.00231458 -0.00716751 --0.0176547 -0.0121879 --0.0795602 -0.105863 --0.0779198 --0.0608749 -0.00612671 --0.0678412 -0.0204318 -0.00591339 --0.0728177 --0.0101952 --0.0072209 --0.0313573 -0.0861995 -0.0165779 --0.0731756 -0.00912406 -0.0559308 --0.0568315 -0.01216 -0.0281919 --0.0490289 -0.0387371 -0.044805 --0.0328361 -0.00381569 --0.00873426 -0.0314672 -0.101768 --0.0393292 -0.0577249 --0.0537995 --0.0143921 -0.0312656 -0.0924986 -0.0254354 --0.0872988 --0.00876876 -0.0242342 -0.0206136 --0.0514045 -0.00225754 -0.019489 --0.0265263 -0.0540967 --0.0416602 -0.0931013 -0.0517641 --0.0427627 --0.0711178 --0.0472425 -0.0384435 -0.00357071 -0.00234496 -0.0389819 --0.089195 --0.0223215 -0.0415261 -0.0431818 -0.0162252 --0.0298771 --0.0244091 --0.0740721 -0.0565133 --0.0310572 --0.00342776 -0.0330674 -0.00397899 -0.0930655 -0.0400358 -0.0820075 --0.133873 --0.0338192 -0.0264103 -0.0705251 --0.0194706 --0.00173194 --0.0593253 --0.00380866 -0.0127315 -0.0123774 --0.088014 --0.0654713 -0.0245991 -0.0366956 -0.00894964 -0.0113045 -0.0724994 -0.058207 -0.0518547 --0.0127029 -0.0307844 -0.0269935 --0.0655193 -0.00397678 -0.0198948 -0.0721903 -0.0584598 -0.00888441 -0.0257011 --0.0425823 --0.0164741 -0.0640108 -0.0965467 --0.0352026 -0.0601658 -0.022169 -0.0268972 -0.0251813 --0.00722853 --0.0408684 --0.0384093 -0.00535453 --0.0131431 --0.0368405 -0.00867887 -0.046782 --0.00703157 -0.0493509 --0.0839085 --0.102415 --0.0341509 -0.0184864 -0.0392745 -0.0635686 --0.0376289 --0.00536994 --0.0144 --0.0575958 --0.0164607 -0.0455863 -0.0382283 --0.108479 --0.0269278 --0.0182227 -0.0198978 -0.128116 -0.00758357 -0.0230412 -0.0125958 -0.0559805 -0.0184249 --0.036227 -0.10156 -0.0195657 --0.0808102 --0.0747939 -0.0593307 --0.0279545 --0.00454542 -0.0528857 -0.000301799 -0.000280229 -0.0651563 --0.0312326 -0.00664416 --0.134169 --0.0697895 -0.0428948 --0.0126139 --0.0645335 -0.00916854 -0.0386463 --0.046105 --0.0270263 --0.00905544 --0.0559914 -0.0781519 -0.0253347 --0.00330729 -0.0199567 -0.0362319 --0.0360871 --0.105108 -0.0112639 -0.0550386 --0.0337327 -0.00862396 --0.00674735 --0.103086 -0.0946309 -0.00204808 -0.0251679 -0.0637916 --0.0301827 --0.106166 --0.0601067 --0.0578222 --0.0901554 -0.147668 -0.0191113 -0.0387813 --0.016509 -0.0265198 --0.0355646 --0.0722159 -0.0204538 -0.0452728 -0.0422714 --0.0430905 --0.0959881 --0.0948987 --0.0721609 -0.107613 --0.0133175 --0.0247776 -0.00840767 -0.0135145 --0.0209527 -0.0604429 --0.0339836 -0.0438577 -0.0288643 -0.0359949 -0.0516828 -0.0986768 --0.0251909 -0.00576503 --0.000241465 --0.0222858 -0.0279308 --0.00243454 -0.0550098 -0.0221868 -0.0122408 -0.00530071 --0.0786335 --0.0997442 -0.022188 --0.0338379 --0.0582708 --0.0137789 -0.0528964 -0.00450042 -0.0473098 -0.0305129 -0.0439092 --0.0326963 --0.0334527 --0.020173 -0.0685538 -0.0384677 -0.106969 -0.0412877 --0.0790985 -0.0221692 --0.00639532 --0.0471119 --0.00412984 --0.127091 --0.0145638 -0.0273619 --0.150646 --0.0468584 -0.0615161 --0.00052228 --0.00692394 -0.0582264 --0.0518942 -0.0657497 --0.0607102 -0.0616264 --0.0282332 -0.0308978 -0.0541263 -0.00622121 -0.0267408 -0.0439269 -0.107903 --0.0786266 --0.116047 --0.0372534 -0.0191541 -0.0216477 -0.0483786 --0.0532043 --0.0035911 --0.0304717 -0.0357468 -0.0228543 -0.0428147 --0.0826278 -0.0205424 -0.0303388 -0.0110599 --0.084551 --0.015818 --0.00189313 -0.0601999 --0.0734222 --0.0607339 --0.00183694 --0.027122 -0.0772266 --0.0135719 -0.0849187 --0.0387814 --0.0799427 --0.0310406 --0.0184677 --0.0132979 --0.0263646 --0.00470105 -0.033116 -0.010894 --0.0483828 -0.0275071 --0.00809157 --0.0960394 -0.0150784 -0.0116689 -0.0576554 -0.0736394 --0.0306538 --0.0377195 -0.068842 -0.0751841 --0.0583788 -0.00667058 -0.0392239 -0.0516343 -0.0144108 -0.0434652 --0.0461556 -0.00832065 -0.0232446 -0.0190625 --0.00257801 --0.0130923 --0.0595736 -0.0638683 --0.068554 -0.062412 -0.0772906 -0.0158593 --0.0431234 -0.0906457 -0.0567988 -0.082151 -0.101311 --0.0499238 --0.0120093 -0.0087741 --0.0629585 -0.00898672 -0.0955837 -0.00179776 -0.00801093 -0.0323881 -0.0211339 --0.0499608 --0.0718824 -0.0161409 -0.00839935 --0.0584422 --0.00197943 -0.0143344 -0.0237181 --0.0329581 -0.078725 -0.0427006 -0.0127179 -0.0573987 -0.0777581 --0.0128574 --0.0177521 -0.0376514 --0.0452535 -0.0599053 --0.000383733 -0.0795171 --0.0261253 --0.00631873 -0.0212437 -0.0809372 --0.0193788 --0.0156041 -0.0712423 -0.0811022 --0.0719823 --0.0200071 --0.0510852 --0.00141906 --0.0225336 --0.00507363 --0.0490968 --0.0274939 --0.0157516 -0.0184872 -0.120604 -0.0524074 --0.0313154 -0.0438163 -0.0148116 --0.0812757 --0.0418036 --0.0409283 --0.0132202 --0.0249846 --0.0937473 -0.0471688 --0.0229945 --0.0599535 -0.0181737 -0.025464 --0.0575614 -0.0839154 --0.0371704 --0.0429456 --0.0104548 --0.0657044 -0.116438 --0.0550479 -0.0617108 --0.082775 -0.0957079 --0.00201982 --0.0607475 -0.00649969 -0.0384521 -0.0039971 --0.0301247 --0.0156156 -0.0368667 --0.0329971 --0.00263288 --0.0718715 --0.0225779 -0.0226193 --0.0642876 -0.0237277 -0.0133449 -0.0265743 --0.0243896 -0.00213008 --0.0735408 -0.0603288 --0.0393994 -0.0655586 -0.149448 -0.0416266 --0.0918937 -0.0709921 -0.0206331 -0.0431692 --0.00746169 -0.11511 --0.0419731 -0.0387613 --0.0430048 -0.0164934 -0.0789132 --0.0333253 -0.00832679 --0.0602816 -0.0110603 -0.0544051 -0.0590461 --0.00487108 --0.0442532 --0.0357016 -0.0686226 --0.0475453 --0.0544173 --0.055314 -0.0372623 -0.0247577 -0.0135608 --0.0346249 --0.0290786 --0.0320403 --0.0933636 -0.0321916 -0.101382 --0.0358022 --0.0218209 --0.00251756 --0.0502068 -0.114101 -0.00703458 -0.0927606 -0.0758972 --0.0254586 -0.0346224 -0.0251426 -0.00730659 --0.00209688 -0.05484 -0.0655269 --0.0481612 -0.0495332 --0.00333031 -0.0488172 -0.0599689 -0.0420198 -0.0187729 --0.0523144 -0.00587663 -0.0441536 --0.00865309 -0.0290774 -0.0637917 -0.0453688 --0.00338506 -0.0197302 -0.0191795 -0.0408567 --0.0385646 --0.0677989 -0.0786453 -0.023314 -0.0722217 --0.0788116 --0.0306047 -0.0472728 -0.074557 --0.0367603 --0.0486571 -0.0220088 --0.0421862 -0.0481636 -0.0341249 --0.0205241 --0.0562129 --0.00694152 -0.0243973 -0.0137367 --0.0808449 -0.0863714 --0.0107817 -0.0302793 --0.0397782 --0.0126439 --0.0228121 -0.0281369 --0.00468669 --0.0181541 --0.0401119 -0.041075 -0.142121 -0.039832 --0.0755372 -0.0361661 --0.0330057 --0.0260451 --0.0764676 -0.0594175 --0.00382572 -0.0790501 -0.118134 -0.0509796 --0.0401512 -0.0351407 --0.00994919 -0.0556535 -0.0778916 --0.0546432 -0.0527247 -0.0242381 -0.00751203 --0.132153 --0.0274015 --0.0170375 -0.0657885 -0.0511697 --0.0184722 --0.0253466 -0.0348855 --0.0171981 -0.000298008 -0.0895837 -0.0173913 --0.00381466 -0.0610908 -0.097495 -0.0225369 --0.0290796 -0.0599632 -0.0276266 --0.0228299 --0.078413 -0.0396414 -0.00978771 -0.0309962 --0.0102427 -0.0137446 --0.00753445 -0.0145414 -0.0144448 -0.0045797 -0.0225547 --0.0677917 --0.00969003 -0.037014 -0.100438 -0.0250328 -0.00080038 --0.068629 -0.0167788 --0.03088 -0.0456894 --0.0619895 -0.00209111 --0.0811325 --0.00195719 -0.0351073 -0.0319147 --0.0477922 --0.0406866 --0.0514353 --0.0572802 -0.0131951 -0.0277901 -0.0120285 -0.0974367 -0.103564 --0.0561435 -0.0258549 --0.0550837 -0.104846 --0.0231434 --0.018085 --0.00332504 --0.0189665 --0.0202303 -0.036235 -0.000638022 --0.0562409 --0.000355126 --0.00827213 -0.0483242 -0.0692873 --0.020604 -0.0768052 -0.049373 -0.0114376 --0.0319015 --0.0109247 -0.015441 --0.0368445 --0.0194806 -0.0614801 --0.0264652 --0.0565594 --0.0214839 -0.0119649 --0.0619959 -0.0541505 --0.0147654 -0.0064352 --0.0509472 --0.0225649 --0.0337338 -0.0200358 --0.0127195 --0.0371376 -0.0995922 --0.0773902 -0.0251842 -0.0480371 -0.00395913 -0.0204364 -0.0142577 -0.0331436 --0.104065 --0.0124941 -0.0148473 -0.0783553 -0.103715 -0.0202667 -0.0187041 -0.00385361 --0.0445182 --0.0194907 -0.0695552 -0.00103233 --0.0636391 --0.020772 --0.0493558 -0.0196324 -0.0163855 -0.010046 --0.0379669 -0.00789091 -0.0228139 --0.0302111 -0.00827227 --0.0224422 -0.0124636 -0.0506303 -0.0648417 -0.0154318 --0.017006 --0.0195613 -0.0251068 --0.0108981 -0.0323869 -0.0198224 --0.0353169 --0.00854507 -0.146372 -0.0634453 --0.0335159 -0.00418261 -0.0867651 -0.0513936 -0.0541467 -0.0228146 -0.0382649 --0.0287641 -0.0154012 --0.00471763 --0.00588677 --0.0302521 --0.0198015 --0.0193555 -0.0137545 --0.00989711 -0.0052912 -0.0840787 -0.025814 --0.076915 --0.00973694 --0.0107369 --0.0799321 -0.0286017 --0.0347555 -0.00261617 --0.00417717 -0.0485754 --0.0281134 -0.0101707 --0.0332464 --0.0282939 -0.0239972 --0.0765408 --0.10875 --0.0389661 --0.0221568 -0.0707359 --0.00163128 -0.0217297 --0.0251463 --0.0806625 --0.0153652 --0.0653817 -0.075953 -0.0776384 --0.0225009 -0.0125952 --0.0408596 --0.0774161 --0.02352 --0.0475958 -0.0286904 -0.00911559 -0.082828 -0.0147704 -0.0531832 --0.0772112 --0.00422096 -0.00804072 -0.0344402 --0.0786602 --0.00453376 --0.0111102 -0.0320212 -0.0581945 --0.0440734 -0.00166576 --0.0214862 --0.0266337 -0.0376187 --0.0925572 -0.0760753 -0.0907185 -0.0822102 -0.0591481 -0.0363702 --0.0612534 -0.0343894 --0.0898973 -0.0754881 -0.0528679 -0.0264071 --0.00237711 --0.0599417 --0.0368106 -0.0313031 --0.0296932 --0.0283957 --0.0323411 -0.0163854 -0.0238908 -0.0281624 -0.0684438 --0.0422307 --0.0537281 --0.0140379 -0.0376385 -0.111868 --0.011886 -0.00439705 --0.0546835 -0.0141193 -0.0502375 -0.0145296 -0.0772219 -0.0319585 -0.00330084 --0.00819988 -0.0245831 --0.037834 --0.0296994 --0.0414249 --0.0314072 --0.0483043 -0.0244805 -0.0716578 -0.0464249 --0.00526738 --0.00808848 -0.0204941 --0.00667523 --0.0262418 --0.0102353 --0.00911968 -0.0713202 --0.0426903 -0.00741455 -0.0492052 -0.0541994 --0.100736 --0.00751127 -0.0933241 --0.00605296 --0.0142309 -0.0489765 -0.0416733 -0.0237731 --0.0303246 -0.0482967 -0.0374688 --0.00143875 --0.00747701 -0.0835967 -0.00660966 --0.0523011 --0.0525207 -0.0366388 -0.0166671 -0.0407253 --0.00225908 --0.0405101 -0.00636346 -0.0448606 -0.00818123 --0.027268 -0.0757745 -0.0889542 --0.022835 -0.0229191 -0.0603602 -0.0165591 -0.038785 --0.100395 --0.0211445 --0.012771 -0.0449896 -0.00221971 -0.00486857 -0.0488054 --0.0288265 -0.021493 --0.0231419 -0.0249546 --0.0474099 -0.0355435 --0.0868577 --0.0612121 --0.0472026 -0.0132958 --0.0438238 --0.0390551 --0.0083014 --0.0108041 --0.0533004 --0.109174 --0.0273721 --0.0085647 -0.0152564 -0.0139162 --0.0212218 -0.0439345 -0.048444 --0.00156283 --0.0754997 -0.00333367 -0.0386572 --0.0421906 --0.00823192 -0.00645861 --0.0526497 --0.0215805 --0.0435427 --0.0447616 --0.0500033 --0.0667572 --0.0238949 --0.0088198 -0.0199224 -0.0704962 -0.0601878 -0.0685529 --0.0257222 -0.00538481 -0.0706147 --0.0444567 -0.0538987 --0.112486 -0.106359 -0.00945314 --0.102546 --0.046253 -0.0494112 --0.0629113 -0.0322977 --0.0094791 -0.0749837 --0.0870604 --0.0555265 -0.0768873 -0.0386553 -0.0172939 --0.00678211 -0.061574 -0.0126316 --0.0152824 -0.0207463 -0.00808655 -0.0312153 --0.0721662 -0.0425316 --0.0067534 -0.034227 -0.0115752 --0.00376394 -0.0809064 -0.042303 --0.00616931 -0.0674149 --0.0373871 --0.0187294 --0.0841288 -0.0611643 -0.0144322 --0.0408623 -0.0190146 --0.0507098 -0.0262944 --0.0713424 --0.0290801 --0.0247928 -0.0220751 --0.145344 -0.00945143 --0.00608678 -0.123146 --0.0210045 -0.0331763 -0.000846261 --0.100413 --0.022486 -0.065033 -0.0511185 -0.00905675 -0.0309434 -0.0140948 --0.0489755 -0.0993293 -0.026657 -0.0746495 --0.00244139 -0.0263389 --0.0536275 --0.0244357 -0.102646 --0.0438992 --0.0786536 --0.0261681 --0.0503301 --0.0325745 --0.00769311 -0.0375644 --0.0235071 --0.0172123 --0.00440577 -0.0569159 -0.011989 -0.118331 -0.0114104 --0.0197921 -0.0817938 -0.0502113 -0.0459686 -0.0254607 -0.00373584 --0.0395034 --0.059308 -0.00347859 -0.0751148 -0.00295809 -0.053834 --0.0550522 -0.0034029 --0.000663942 --0.0843024 -0.0261716 -0.0281533 -0.0208515 -0.0791282 -0.0111433 --0.00372197 --0.0784842 -0.0188154 --0.0531424 --0.0262334 -0.0190068 --0.0749316 -0.0494618 --0.0257358 --0.051017 --0.00455518 --0.0037293 -0.0211293 -0.0118874 -0.0952087 --0.0402079 -0.00935856 -0.102797 --0.0444035 --0.0349719 --0.012735 -0.00732266 -0.108201 -0.0803129 --0.0851621 --0.0774819 -0.0338242 --0.0558266 --0.0152231 -0.0937738 --0.0665688 -0.000438423 --0.0215117 -0.00757573 --0.00964099 --0.0193379 --0.119026 --0.00246003 -0.0141156 -0.0374089 -0.0560408 --0.0171131 -9.80788e-05 -0.04658 --0.0273822 -0.00111427 --0.0169091 --0.00933941 -0.0553434 -0.10304 --0.0111079 -0.00335201 --0.0370971 --0.0229609 --0.0745989 --0.0480937 --0.00827217 -0.0853188 --0.000750411 --0.0158205 --0.0816861 --0.0754429 --0.0389103 --0.00710687 -0.104689 --0.0554423 -0.0141397 -0.016449 -0.0602235 --0.0152428 --0.00638127 -0.00646809 -0.0219472 --0.0255698 --0.0388782 --7.53758e-05 -0.0378423 -0.0133331 -0.0294424 --0.04068 --0.0388443 -0.00414637 --0.04539 -0.0107022 --0.0690911 --0.0930819 -0.0602165 --0.0322633 --0.017326 -0.0374204 --0.0164394 -0.0292416 -0.0429682 -0.10384 --0.013758 --0.0302171 --0.0626836 -0.0410528 --0.0865523 -0.0139785 --0.0120429 -0.0190905 --0.0253963 --0.0403482 -0.00703752 -0.0757901 --0.0802527 -0.00717352 --0.0121787 -0.0521414 -0.0114899 -0.0667977 -0.0623108 --0.0489715 --0.0354942 -0.0686843 --0.0190855 --0.070501 -0.0764759 -0.043493 --0.0401817 -0.0560573 --0.0282514 -0.0420478 --0.052958 --0.0470395 --0.045769 --0.030139 --0.015101 -0.0643963 --0.0299822 -0.0364085 -0.00642734 --0.0541373 --0.0478378 --0.0395475 -0.114373 --0.018759 --0.0781908 -0.0166328 -0.0133812 --0.0847968 -0.0202917 --0.00231416 -0.0262636 -0.025979 --0.00848676 -0.0719275 -0.0248122 --0.0139447 --0.0171933 -0.0693533 --0.0332204 --0.00591031 --0.0206222 -0.0881691 -0.085511 -0.134867 -0.0418473 --0.0404833 --0.0606678 -0.0168731 --0.0720258 --0.0630005 -0.00446239 -0.000857517 --0.0291023 -0.0055726 -0.0187211 -0.0283182 --0.0401662 --0.0216366 --0.012188 --0.0173575 --0.0679582 --0.0773668 --0.0945157 --0.00253283 --0.0309353 --0.0576767 --0.0947842 --0.00615621 --0.0789933 --0.0126141 -0.0442636 --0.0209124 -0.0410813 -0.0757889 --0.0798129 -0.0104631 -0.0719988 -0.0402065 --0.0205607 -0.00386982 -0.0411998 --0.0382759 -0.0226308 -0.0315076 --0.0351625 --0.0480074 -0.0335052 --0.0369789 -0.122862 -0.0181839 -0.0179602 -0.0565082 --0.057315 -0.000463403 -0.0235858 -0.0499823 -0.0676202 --0.0033846 --0.0442078 --0.00943148 -0.0198225 -0.0198701 -0.0672838 -0.0213372 -0.00412194 -0.0798518 -0.0578065 --0.0222888 -0.0388384 -0.00627407 --0.0781347 -0.0894332 --0.0360551 --0.053521 --0.0226976 --0.0697889 --0.00546025 --0.065495 -0.0785999 --0.145621 --0.0309151 --0.0389117 -0.0389776 -0.00441698 --0.0354106 -0.0569737 --0.0829308 -0.00831481 --0.0855037 -0.105458 --0.00131409 --0.0265119 -0.0293375 --0.0568153 -0.0484536 -0.00565359 -0.0653301 -0.062199 --0.0283044 --0.0213869 -0.0498347 --0.0140453 -0.039288 --0.0450885 -0.0425834 --0.0318328 -0.010767 -0.00431428 --0.0245378 --0.0621778 -0.0474799 --0.0580929 --0.0155413 -0.0811408 -0.103539 -0.00429066 --0.013037 -0.00910174 --0.00659087 -0.0102083 -0.0553513 -0.0941166 -0.0756103 -0.0601092 --0.0293607 -0.0347468 --0.0393877 --0.0624774 --0.0257372 -0.0508844 --0.02981 -0.0311361 --0.0295478 -0.0253713 -0.0126417 -0.0315527 -0.0827487 --0.0582196 --0.0153604 -0.057135 --0.0233709 --0.0305735 -0.00130842 --0.00884528 -0.04139 -0.109809 --0.0337128 --0.0484366 -0.0134091 --0.0403885 --0.0247322 --0.0549697 --0.0367769 -0.0232139 --0.0179591 --0.0510949 --0.0140069 -0.00106154 -0.010641 -0.0272588 --0.0211675 -0.0312739 --0.116465 --0.00805026 --0.0558407 -0.0572805 -0.0826886 --0.0268301 -0.0258272 --0.0103933 --0.0165458 --0.0175003 --0.0151077 --0.0388944 --0.0210951 --0.0624379 --0.0152806 --0.0244821 --0.00934425 --0.0465008 --0.0339087 --0.0571148 -0.11099 --0.0884165 -0.0263726 --0.0792009 --0.0340937 -0.106465 -0.00933702 --0.000128712 -0.0368601 -0.0783981 -0.0129871 --0.0739976 --0.0673673 --0.0127411 -0.0293855 --0.0214314 --0.0632774 -0.0176947 --0.0856186 -0.0403609 -0.0164045 -0.0246342 --0.0648315 -0.0390405 -0.00836686 -0.0610234 -0.0804934 --0.135672 -0.0053918 --0.0200377 -0.0357179 --0.0801604 --0.0748982 -0.0857701 -0.0163894 --0.0210801 --0.0790783 --0.0426192 --0.0540599 -0.0291648 -0.0402561 -0.0355816 -0.0099062 --0.0514291 -0.00159837 --0.00618023 --0.0271897 --0.0131646 --0.0194116 --0.101854 --0.0286706 --0.0744975 -0.0109735 --0.00532231 -0.0578516 -0.0714786 -0.0625973 -0.0146627 --0.00798813 --0.0260697 --0.0240402 -0.00435572 -0.0174603 -0.0622438 -0.0126742 -0.0187107 --0.0370486 -0.059626 -0.00338829 --0.0800914 --0.0491047 -0.0282618 --0.0236903 --0.0198744 -0.0133349 --0.0369089 --0.0479268 --0.00877537 -0.0719359 -0.0450951 -0.0591922 --0.019741 -0.0340557 -0.0765393 -0.0210806 -0.0216982 -0.0450611 -0.00382991 --0.0842825 --0.0250916 -0.00832485 -0.0878887 -0.00160352 --0.00210208 -0.000366243 --0.000227107 -0.000131036 -0.00438232 --0.0308921 --0.112475 --0.0408367 --0.00993741 --0.0896903 -0.054639 -0.00850391 -0.041468 -0.0574264 -0.0721027 --0.0398859 -0.029675 --0.0139956 -0.0201154 --0.0501314 -0.0400979 -0.0395135 --0.0408458 --0.0132117 -0.0719881 -0.122476 -0.0103822 -0.0267562 -0.0828819 --0.0558644 -0.0465692 -0.0794439 -0.0124935 --0.0112276 -0.00115066 --0.0359667 --0.100639 --0.054333 -0.0179223 --0.12193 --0.0600659 --0.0922692 -0.0267895 -0.00788748 --0.127603 -0.00908841 -0.0260581 -0.00850919 --0.0701366 -0.066989 --0.0679088 --0.0100161 -0.0494264 --0.0190966 -0.0428875 -0.00113339 -0.0152438 -0.122328 --0.0706099 -0.00833821 -0.00802805 --0.027649 -0.0200955 --0.0455904 -0.00660686 --0.0470623 -0.117698 --0.0654923 -0.0124925 --0.135475 -0.0298263 -0.0520931 --0.0223654 -0.0760295 -0.0644467 --0.0418459 -0.0388036 --0.0257618 --0.0321816 -0.0353024 -0.0403521 --0.0307468 --0.0303513 -0.0956671 -0.001235 -0.0150089 --0.00444556 -0.0604087 --0.0334615 --0.0164349 -0.0231825 -0.0464887 --0.00920051 -0.0219271 --0.0353103 --0.0351671 -0.0526321 --0.0185462 -0.0205408 --0.0253935 --0.0288857 --0.00728414 -0.0196318 -0.0561846 -0.054482 -0.0789083 --0.00879901 -0.0614594 -0.0820295 --0.00673185 --0.0295494 -0.0176093 -0.00265239 --0.0576083 -0.0155597 --0.0136494 --0.020926 --0.0719493 --0.0245517 --0.00321973 --0.0419155 --0.0343436 -0.00174313 -0.0703102 --0.075646 -0.0320813 -0.0194222 --0.0131613 --0.0537762 --0.0394034 -0.0194398 -0.105998 --0.00217307 --0.0614563 -0.0510291 -0.0713446 --0.0116561 -0.0828065 --0.075966 --0.0699697 --0.0157546 -0.0397377 -0.0272535 --0.013085 --0.0419893 --0.142701 --0.121964 --0.0431135 --0.0471496 --0.0458447 -0.0237227 -0.0318697 -0.00175843 --0.0640883 --0.0720622 --0.0524953 --0.0361115 -0.068741 --0.000784673 --0.0768376 -0.00229123 -0.0382002 --0.0101318 -0.0211536 -0.0316233 -0.0154748 -0.00745319 -0.00402773 -0.0271349 --0.00954199 -0.0116908 --0.0877397 -0.0841394 --0.138468 --0.0553867 --0.0215945 --0.120518 -0.0227403 --0.009653 --0.111338 -0.0773639 --0.0815741 -0.0131172 --0.0349492 -0.0255685 --0.047771 --0.0116726 -0.00802005 -0.0759978 -0.00159692 -0.0150703 --0.00680264 -0.0823579 -0.0174609 --0.087797 -0.0618193 -0.0169382 --0.0183098 -0.036361 --0.0341016 --0.0175251 -0.0517673 -0.00255742 -0.0791742 --0.0866156 -0.0468319 --0.0666323 -0.0189961 --0.0023132 -0.0809644 --0.00718855 -0.000652153 --0.0357868 --0.0366266 -0.0286118 -0.00798218 -0.00888355 -0.0570496 --0.0441386 --0.0415758 -0.00732147 --0.0140718 --0.0479829 --0.0254506 -0.0359286 --0.0501099 -0.0393579 --0.0375236 -0.0632459 --0.0247444 -0.0408267 -0.0562432 --0.0112306 --0.0704561 --0.014909 -0.0586998 -0.115294 -0.0396331 --0.0584364 -0.025963 --0.000331542 -0.0110455 --0.0931587 -0.0590244 -0.0913122 --0.04967 -0.139734 --0.0681339 --0.011067 -0.0143265 --0.0680247 -0.0418728 --0.00532747 -0.0317365 -0.0510238 --0.139805 --0.00310939 --0.0194566 -0.020302 -0.0190823 --0.0680451 --0.0722217 -0.0767722 -0.0205156 -0.0373944 -0.0695469 --0.0300556 -0.0525774 -0.065954 -0.0766345 -0.021612 -0.0705319 --0.0604503 --0.021504 --0.0627108 --0.0349353 -0.0102211 --0.0101532 --0.0552269 -0.0355636 -0.0381348 --0.012229 -0.0114756 --0.035998 --0.0300932 -0.0355427 --0.0269337 -0.0265475 -0.0272744 -0.0158026 --0.0397394 --0.0417368 -0.042528 -0.00630912 -0.0392455 --0.0133476 --0.0371197 -0.0513161 --0.0310633 --0.0101148 -0.0354945 -0.0265649 -0.00548066 --0.0784889 --0.0388246 --0.0479753 -0.0195313 --0.12215 --0.0457519 -0.0551387 --0.0298639 --0.014634 -0.0362045 --0.0411044 --0.0357424 -0.094162 --0.00829157 -0.0256573 -0.089898 -0.0558224 -0.0232908 --0.0729372 --0.0614174 --0.0233951 -0.00657035 --0.0349279 --0.0387629 -0.0688289 -0.0477185 --0.014186 -0.0818533 -0.129434 -0.00534498 -0.0119648 -0.00774089 --0.0895543 -0.0745595 --0.00686238 --0.0158239 -0.0060592 -0.0399219 -0.00670149 --0.0896195 --0.00902605 -0.0205654 -0.0079183 --0.0644732 --0.0244947 -0.000447072 -0.0529226 --0.0799268 -0.0835574 -0.0706276 --0.00831392 -0.0824127 --0.0246247 --0.024996 --0.104625 -0.0912015 --0.0285217 --0.0397423 --0.0193161 --0.102345 --0.0748178 --0.00522581 -0.0715848 --0.00281811 --0.0336849 -0.0126259 -0.108497 -0.00256541 -0.0301992 --0.00758697 --0.0761215 -0.0619877 --0.034909 -0.0285519 --0.011708 -0.000449531 -0.0354257 -0.0585354 --0.0743807 --0.0406719 -0.0953791 --0.00705816 --0.0240603 --0.0651195 -0.0740307 -0.0630472 --0.0732651 -0.0337193 -0.0200497 -0.0512855 -0.00433409 -0.0515161 -0.0977963 -0.00306923 --0.0264977 -0.0118553 --0.0752705 -0.0427405 -0.123276 -0.0399222 -0.0254954 --0.0323596 --0.0432534 --0.138996 -0.00269841 --0.0506261 -0.016347 --0.0954606 -0.0104774 -0.137473 --0.0247667 --0.079273 --0.0390494 --0.0080662 -0.0113957 --0.02915 --0.0251738 -0.00280062 --0.0722271 -0.0129332 --0.0332118 -0.0184416 --0.0305489 -0.000854472 --0.047084 --0.0129902 -0.0130875 --0.0752123 --0.0607853 --0.0125499 -0.0258028 --0.0249139 -0.0584443 -0.0317225 --0.0153925 --0.0948328 -0.0235138 -0.0438211 --0.0334485 -0.00160627 --0.0510461 --0.0998273 -0.0875913 --0.0105048 --0.0522653 -0.0337867 --0.0431735 -0.0556876 --0.0636179 --0.0138772 --0.0357595 --0.112273 --0.0304704 --0.0444407 -0.0213769 -0.0110383 --0.0321618 --0.0165375 -0.0165267 -0.0442094 --0.0833503 --0.0379001 -0.144143 --0.0314036 -0.109472 -0.0382219 -0.00585785 --0.0113802 --0.0333203 --0.0117307 --0.00678349 --0.0182096 -0.00173536 --0.0578791 --0.0260942 --0.0210513 -0.0577742 --0.135191 --0.0649991 -0.0597513 --0.0393312 -0.0184009 --0.00300698 --0.110726 -0.0413453 -0.00169958 -0.109423 --0.0112834 -0.0227884 -0.0300942 --0.0088509 -0.059807 --0.0213052 --0.0491229 --0.0128966 --0.0314195 --0.0808255 -0.0329612 -0.0503865 -0.0310284 -0.0244989 -0.0570618 -0.0242548 --0.0705012 --0.0190286 --0.0128998 --0.0529286 --0.00764407 --0.0658396 -0.184496 -0.0680741 -0.0114132 --0.0840673 -0.0728802 -0.0359444 --0.0374654 -0.0145609 --0.00762311 -0.0244121 --0.0546669 --0.0206821 -0.0445984 -0.0450753 -0.024694 --0.128539 --0.0183938 --0.0626678 -0.0355647 --0.0769864 --0.0387368 --0.0555954 --0.00882653 --0.0135908 -0.0274819 -0.0394029 -0.0345355 --0.0166937 --0.103495 --0.0275884 --0.044988 --0.00530875 --0.0159008 --0.0114844 -0.0647301 -0.047061 --0.000493406 -0.012457 --0.0304858 -0.0309387 -0.0143085 --0.0128256 --0.119633 -0.0590876 --0.00229122 -0.00491025 --0.0377755 -0.0182663 -0.000554997 --0.025929 --0.0540131 --0.0396566 --0.000428522 -0.0250557 --0.0088926 -0.0274068 --0.0504386 --0.000517194 --0.102141 --0.0143504 --0.0816525 -0.0300389 --0.0074342 --0.0522777 --0.0425909 --0.038199 -0.0792164 --0.0243574 --0.00239488 --0.0435152 --0.031205 -0.00299176 --0.0110189 -0.02246 --0.00651412 -0.0144283 --0.0233405 --0.0375738 -0.0287291 -0.00116673 -0.0267623 -0.164649 --0.0381126 -0.0208142 -0.0186554 --0.013382 --0.0554889 --0.0505934 --0.0860886 -0.0871077 --0.00295711 --0.0477788 -0.014127 --0.0266595 -0.0148823 --0.053713 -0.0485742 --0.0605929 -0.0108383 --0.0223672 -0.012036 -0.040416 --0.0244623 --0.0692013 --0.018707 -0.0445425 --0.0596491 -0.12223 -0.0715237 --0.0517201 --0.057972 -0.000293413 --0.0612985 --0.0172983 --0.0666807 --0.0600234 --0.000855864 --0.0164653 --0.0376919 --0.0710729 --0.00943728 --0.0648354 --0.0151636 --0.0509594 --0.0067347 --0.0692611 --0.053554 --0.0245379 --0.00932179 --0.0426235 --0.0100349 --0.00310703 --0.0822303 --0.0501708 --0.0434032 --0.0174467 --0.0109981 --0.00213938 --0.0117299 -0.0767948 --0.0560724 -0.0196278 -0.0074577 --0.0441264 --0.0590116 --0.00524593 -0.0733533 --0.028026 --0.0917567 --0.0674394 -0.00616547 -0.057478 --0.00465213 --0.0296006 --0.00110101 --0.0107192 --0.00499027 --0.0418446 -0.0753822 -0.0695833 --0.0358969 -0.104751 --0.0150192 --0.0706213 --0.0261628 -0.078555 -0.0159613 -0.00966782 --0.063114 -0.0954074 --0.108111 -0.0223836 --0.0240567 -0.0210006 -0.0386089 --0.0877756 -0.0116474 --0.133142 -0.0420983 --0.0195818 --0.0765396 -0.0452935 -0.026919 -0.0630299 -0.00129158 --0.00118456 --0.00383094 --0.0520919 --0.0202415 -0.0641973 -0.0282944 -0.0633308 -0.0782655 -0.0362985 -0.078611 --0.107709 --0.0189436 --0.00237228 --0.0336317 --0.0216233 --0.011073 --0.00944624 -0.0652692 -0.0291175 --0.0160796 --0.0332868 --0.00840877 -0.0310958 --0.0426252 -0.0301317 --0.0831025 --0.0299176 --0.0378267 -0.00815814 -0.0633119 --0.00498305 -0.0226881 --0.00724191 --0.0745029 -0.0199289 -0.115893 -0.0935055 -0.0381709 --0.0236196 --0.0161003 --0.0101085 -0.0286345 --0.0745405 --0.0900683 --0.103003 -0.0282955 -0.0225566 --0.0227366 --0.0522559 -0.0350212 --0.0111289 -0.0423451 --0.072693 --0.0894882 -0.000144485 --0.0406691 -0.02139 --0.0262541 --0.0406895 -0.0229334 -0.0147442 --0.0154656 --0.00250512 -0.00627099 --0.0130951 --0.0141655 --0.0323881 -0.00550211 -0.121948 -0.107696 -0.0454497 --0.00743948 -0.00491473 -0.0204244 -0.0299164 --0.0432671 --0.0193079 --0.0321153 -0.0999377 --0.0635823 --0.038488 -0.00610696 --0.0356414 -0.0494419 -0.0363126 -0.0156865 --0.0191682 -0.0435715 -0.0179105 --0.016624 -0.0243927 -0.126231 -0.00555897 --0.0964509 --0.0643231 -0.0172785 --0.0497941 --0.0918591 --0.00744186 -0.0427724 -0.0100076 -0.0438468 -0.0695728 --0.000293535 --0.0528868 --0.0305276 --0.069556 --0.0497231 --0.000538181 --0.0239403 -0.0350308 -0.0169145 --0.0408286 -0.0141882 -0.101809 -0.0688654 --0.0709534 -0.0357093 --0.0412876 --0.0731354 --0.0553523 --0.0303694 -0.0532003 -0.0081191 -0.0058645 -0.0704595 -0.0898685 --0.00241878 --0.0451339 --0.0550679 --0.0461133 -0.0299601 --0.0191166 -0.0212549 --0.0911679 -0.0869172 -0.0837681 --0.0193407 -0.059116 -0.0290785 -0.00946114 -0.0443059 --0.0133401 --0.0356244 -0.035449 -0.0661029 --0.028026 --0.0844183 -0.0436708 --0.123691 --0.04769 --0.0379462 --0.0375563 -0.0176324 -0.00028707 --0.00887035 --0.00489321 -0.0502441 -0.0605486 --0.00269208 -0.0463188 --0.0568159 --0.038225 --0.0304709 -0.0342261 --0.0674436 -0.0224995 --0.00113624 --0.00143512 -0.00260444 --0.034407 -0.0501193 --0.00160124 --0.112565 -0.0760215 --0.0277766 -0.0494966 -0.13485 -0.020247 --0.0135974 --0.0515365 -0.0477782 -0.0633573 --0.0393135 --0.0321614 --0.0573949 --0.118621 --0.0279138 -0.00597946 --0.049758 -0.00451594 --0.0326071 --0.0294173 -0.0216821 --0.0747569 --0.00480172 -0.0694077 -8.89808e-05 --0.00111214 -0.00210905 --0.104989 -0.100706 --0.000821604 -0.0693383 -0.0369728 --0.054043 -0.0394375 --0.0892614 -0.0256235 -0.0361526 --0.0105123 -0.0111567 -0.0457333 -0.0544836 --0.059475 -0.109204 -0.0789509 -0.00651757 --0.100924 -0.0632158 --0.0244749 --0.0288005 -0.0120835 -0.0249763 -0.0375786 -0.0307934 --0.0418549 -0.0457498 --0.0143465 -0.0110448 -0.0473633 -0.00291575 -0.0228817 --0.0700831 --0.00897692 -0.0131348 --0.0985067 -0.146414 -0.056169 --0.000282179 -0.0198473 -0.0307459 -0.0706695 -0.112496 -0.012072 -0.0726125 -0.088203 -0.0223621 -0.00503398 -0.0835838 -0.0576873 --0.0188206 --0.0604178 -0.0179358 --0.0388935 --0.0416641 --0.0482724 -0.0892132 -0.0447555 --0.0519546 --0.0108078 --0.040711 --0.0304903 --0.0582072 -0.0350592 --0.0123408 --0.0582335 --0.0943941 -0.0356933 -0.113641 -0.0793688 --0.0667103 --0.0080358 --0.000454119 -0.0237278 --0.0470571 --0.0502998 -0.0219025 -0.0270721 -0.00792862 -0.0776009 -0.0418487 -0.0205918 -0.0811588 --0.0461732 -0.0706053 -0.0274372 --0.0355738 -0.0124258 --0.064734 --0.0231257 --0.0445511 -0.0572463 -0.0178165 -0.0695948 --0.037452 -0.0129202 --0.00582478 -0.0423313 --0.0159417 --0.0843904 --0.0889127 --0.0149038 --0.0883006 --0.000300563 -0.0137284 -0.0142704 -0.0495918 -0.0815945 --0.0518776 -0.0952961 --0.0121871 --0.0055194 --0.0686804 -0.00347824 -0.0216841 --0.0597065 -0.0282374 --0.0383894 -0.0546213 -0.0359134 -0.00684816 -0.0121401 --0.0135651 --0.116942 -0.0210155 -0.0626635 -0.0479104 -0.0140681 --0.0448467 -0.0123942 -0.0329218 -0.0245987 --0.00429721 --0.00727088 -0.0155153 -0.0486416 -0.0165578 -0.0455135 --0.00160193 -0.00722449 --0.0907786 -0.0112896 -0.107866 --0.0783475 -0.00400836 -0.0283872 -0.00591573 --0.0249408 --0.0294536 -0.0550428 --0.0105282 --0.0648153 --0.0534113 -0.00988658 --0.0576805 -0.0113975 -0.041806 -1.86944e-05 -0.077203 -0.0431855 -0.0203432 --0.0585512 --0.00491896 --0.00525773 -0.0644361 -0.0388743 -0.0683585 -0.023297 --0.0456268 -0.0817381 --0.0338786 --0.0674536 --0.0107919 --0.014271 -0.0948654 -0.014591 --0.00908586 -0.0412407 -0.0256928 -0.027927 -0.0373195 -0.0456027 -0.0944697 -0.028397 --0.0502436 --0.0159643 -0.035201 --0.0401835 -0.0564164 -0.00278466 --0.0225504 -0.0394784 --0.00338743 -0.0128478 -0.0358647 -0.109658 --0.0774674 -0.012008 -0.0211932 --0.00352431 -0.0279973 --0.00394944 -0.0424044 -0.0516237 -0.0345575 -0.00496954 --0.0582556 -0.0666426 -0.00214825 -0.0380303 --0.0307124 --0.0629517 --0.137515 --0.0422019 -0.0424309 -0.105792 --0.0331628 -0.0161991 -0.0179177 --0.0704432 -0.0446144 --0.0238302 -0.0123392 -0.0824941 -0.0399461 -0.0542514 --0.0487956 -0.0880509 --0.0375787 -0.0348053 --0.0133422 --0.0333602 --0.0609268 -0.0438942 -0.00776072 --0.0439876 --0.00629603 -0.0298622 --0.0679931 --0.0750319 --0.000672808 -0.0337782 --0.0267387 --0.00709757 --0.0105866 --0.0911047 --0.000840095 -0.0532082 --0.118019 -0.057344 --0.026856 --0.0562121 -0.0435881 --0.033912 -0.0157628 -0.0354645 --0.0245782 -0.0252637 -0.162638 --0.126692 -0.0192705 --0.0500079 -0.0697106 -0.0347072 -0.00417792 -0.0185624 --0.0360628 -0.00856635 --0.0582142 --0.0371921 --0.0746405 --0.0593304 -0.0354582 --0.0928905 -0.00792491 -0.00287453 --0.0275145 -0.0143938 --0.00786218 -0.0157943 --0.0607879 -0.0166374 --0.0394015 -0.0729567 -0.0249944 -0.0278502 -0.0872931 -0.0652895 --0.0421759 --0.090775 -0.0186569 --0.0296632 --0.05229 -0.0421146 --0.0132715 --0.0407766 -0.0731354 --0.0494532 --0.0147007 --0.0761048 --0.0479586 -0.00488856 --0.0295459 -0.0434605 -0.0413379 -0.01255 -0.0419013 --0.00342562 -0.0240433 --0.0377086 --0.00518346 --0.0559805 -0.0403539 -0.098023 --0.00311552 -0.0111226 --0.0377655 --0.00707418 -0.0233412 --0.0968414 -0.00617343 -0.0169474 -0.0315281 --0.0342453 --0.0360085 --0.0622218 -0.0200421 --0.0285734 -0.0203663 -0.0248229 --0.112055 --0.0377266 --0.039115 -0.0554516 --0.0937325 --0.0220414 -0.0535062 -0.0134555 -0.0408164 --0.0809708 --0.0428179 -0.0388914 -0.00582157 --0.0740298 -0.092697 -0.0209105 -0.0452282 -0.00258062 -0.023823 -0.00637023 --0.0311035 -0.0311199 --0.0472643 --0.0648347 --0.00212445 --0.0242869 --0.0147043 -0.0700947 --0.0975808 --0.0182709 --0.0710158 -0.0711389 -0.0316978 --0.0509395 -0.0039476 -0.0847104 -0.0424158 -0.0425197 -0.0865112 -0.0980861 --0.0192487 --0.0707654 --0.0415545 --0.0308236 -0.037282 --0.0237191 -0.0228652 --0.0657188 --0.00377631 -0.0615178 --0.00651623 -0.0164748 -0.00613274 -0.039109 -0.0878633 --0.00758777 --0.0297069 --0.0489329 -0.0739436 --0.0821577 -0.0184088 -0.0277542 --0.112065 -0.0208902 -0.0084176 -0.0799683 --0.000264254 --0.0535006 --0.0267008 --0.0230343 -0.0431631 --0.0451315 --0.0450163 --0.0386414 --0.0225674 --0.0632483 -0.0128998 -0.000391569 --0.0927679 --0.00240715 -0.00646548 -0.0728435 --0.00295658 -0.00194968 --0.108971 --0.0286921 -0.0712805 --0.0036875 -0.00661907 --0.0316051 --0.0164122 --0.00509005 --0.0383573 --0.0237439 -0.100797 --0.0662609 --0.042893 --0.101553 --0.0210485 -0.0204694 -0.0130664 --0.0276833 -0.00449099 -0.0210152 -0.0782372 --0.0165623 -0.0440181 --0.0894909 -0.05327 --0.00797075 --0.0763129 --0.0573268 --0.0400342 -0.0368404 --0.06043 --0.00470017 -0.00813963 -0.0402721 --0.0622563 --0.110737 -0.0367131 --0.0819341 --0.0576439 --0.0435096 --0.0517199 --0.0238975 -0.0199649 --0.0347697 -0.0166013 -0.0754085 -0.000725287 --0.000897042 --0.0122727 -0.0532309 --0.0113078 -0.00699584 -0.017036 -0.0640065 -0.061257 -0.0677212 --0.106403 -0.0523442 -0.0582437 --0.00238258 -0.0437149 --0.0367032 --0.0027416 --0.0181318 --0.0379634 --0.0544724 -0.059633 -0.0520352 -0.0444115 --0.0094995 -0.0259569 -0.0240037 --0.0519514 --0.0524223 --0.0682089 -0.0609718 -0.000493614 -0.0368367 --0.0754359 -0.0165713 --0.0522462 -0.0107873 --0.0518285 --0.0505945 -0.0818167 --0.0149862 --0.0241322 -0.051258 --0.0162623 -0.0525427 -0.115006 -0.128134 -0.0143043 -0.111124 -0.0238833 --0.113024 -0.0272086 --0.000945994 -0.0401534 --0.0171413 --0.011662 --0.00169718 -0.0571472 --0.0909829 -0.139823 --0.0320816 -0.0202929 -0.0286568 -0.000608003 --0.0610526 -0.0092426 -0.0257797 -0.0396505 --0.021288 -0.00519304 -0.0367304 --0.00933056 --0.00415847 --0.0110656 -0.00288066 --0.0526467 -0.0152549 -0.0247206 --0.0302456 -0.0453729 --0.0289089 -0.0376232 -0.042124 --0.0691496 --0.0412 -0.0428819 -0.0109643 --0.00685083 --0.00397658 --0.0642865 --0.0578926 -0.028835 -0.0153731 -0.0096259 --0.0468234 -0.0215214 -0.0241314 --0.00295667 --0.0667479 --0.0327168 --0.105926 -0.0289958 -0.0288595 --0.0389542 -0.0477605 --0.0337128 --0.0586478 --0.00500532 -0.0240146 --0.0115338 -0.0371059 -0.0328194 --0.0164044 --0.0355539 -0.026597 --0.0204061 -0.0604496 --0.0296416 --0.0825853 -0.0388502 --0.0214213 -0.0543334 --0.0795428 -0.0491728 -0.0526349 --0.0403822 --0.137176 -0.024732 --0.0882259 --0.00268407 -0.0180105 -0.0425632 -0.0976118 -0.0398006 --0.0616158 --0.0872393 --0.00617075 -0.0213137 --0.0453525 --0.029757 --0.0432921 --0.0574423 --0.0387512 --0.00295324 -0.0230855 --0.0349123 -0.00328042 -0.0351234 -0.109741 --0.00480515 -0.0190284 --0.04463 --0.0462543 -0.016481 --0.0977702 -0.0422057 --0.0108065 -0.013859 --0.0238554 -0.01767 -0.00825296 --0.0146076 --0.036976 -0.0588263 -0.0452177 --0.0164193 --0.0406482 --0.0337184 -0.0331605 -0.00522755 --0.0731994 -0.0871942 -0.0602072 -0.0793887 -0.0133477 --0.0572062 --0.0582185 --0.0285386 --0.0407162 --0.0292541 --0.0350795 -0.0142034 -0.00773165 -0.0510291 -0.0344593 -0.000177301 -0.0288608 --0.00628615 -0.0238779 -0.0390448 --0.0284453 -0.082438 -0.0754347 --0.00634669 --0.0118728 -0.0104356 -0.0557981 -0.0400822 --0.0748299 -0.0163644 -0.00961227 -0.028945 -0.0043377 --0.0161582 -0.0889092 -0.0448763 --0.012115 -0.070932 --0.0101691 -0.010038 --0.0117824 --0.0560593 --0.00593225 -0.0231268 -0.00366433 -0.0407383 --0.0967505 --0.0449611 -0.0176154 -0.0225912 -0.0270896 -0.0470864 -0.0126074 -0.0287771 -0.000901311 -0.0819188 --0.0518404 --0.0298973 --0.0331471 --0.0371245 -0.0306799 -0.0248768 --0.0239241 --0.00495473 --0.034852 --0.00451716 -0.0242631 --0.0217857 --0.0235909 --0.00305508 --0.0250573 -0.0692255 -0.00569361 --0.038882 -0.0358005 --0.0498716 --0.0108035 -0.0124836 --0.0235113 -0.0952237 -0.0520259 -0.0875726 -0.036063 -0.0191018 --0.00319994 --0.043494 -0.00562768 -0.0898872 --0.0624408 -0.0430565 -0.0897006 -0.0247357 --0.0554941 --0.0320978 -0.000842055 --0.0684872 -0.0400579 -0.0247869 --0.0140683 -0.0382067 --0.016819 --0.0201765 --0.0166147 --0.0106115 --0.0299863 --0.0184609 --0.132743 -0.038481 -0.066088 --0.0920459 -0.0652788 --0.0573999 -0.0664175 --0.0449675 -0.0390456 --0.0178408 -0.00520961 -0.0647767 -0.0907404 --0.0103484 --0.0344856 --0.00410681 --0.0462705 -0.0040303 -0.0482542 -0.0795249 --0.0376623 --0.0179215 -0.0052964 --0.0195827 -0.0515843 -0.120741 -0.0473233 --0.0641744 --0.0419862 -0.0415719 -0.0282035 -0.073016 --0.0239737 --0.122451 -0.0549932 -0.0751314 -0.0505638 --0.042845 --0.0727124 --0.0673946 -0.0293361 -0.0586075 --0.00814746 --0.0186998 -0.0124037 --0.0449075 -0.0307464 --0.0245685 -0.0202335 -0.0711569 -0.0365112 -0.0201784 -0.0406775 -0.00895061 --0.0248634 -0.0831764 -0.0185759 -0.0182761 --0.0223892 --0.0367624 --0.0569461 --0.012431 -0.00406022 -0.0534796 -0.00403836 --0.00826916 -0.00424244 -0.0499708 -0.0140198 -0.0183529 --0.0455694 --0.0263481 --0.000538217 --0.0469831 -0.0266646 -0.0140518 -0.0169523 --0.118745 -0.0274886 --0.0135666 -0.00365277 --0.00879918 -0.0231399 -0.0459633 --0.028345 --0.0927338 --0.0560966 -0.0702381 --0.0265126 -0.0080565 -0.0564842 --0.0392135 -0.0784008 --0.015229 --0.0726828 --0.0128054 -0.0722303 -0.00599706 --0.00280495 -0.115564 --0.0302228 --0.000971408 --0.0243462 -0.0881635 --0.0658793 --0.0217899 --0.092524 --0.0454494 -0.054712 --0.0122343 --0.0360203 -0.00972204 --0.00344722 -0.0270702 --0.0699518 --0.0406955 --0.0483537 -0.0023724 -0.0464631 --0.0526552 --0.0692985 -0.0277184 --0.0186277 --0.0280676 -0.0571358 --0.0890339 -0.08615 --0.0427545 --0.0220017 -0.0148901 -0.0200465 --0.0373419 -0.0739709 --0.00581384 -0.0258243 --0.0834372 --0.0447017 -0.00707985 --0.0235111 --0.0683458 --0.0974393 --0.0557644 --0.010473 --0.0536867 --0.00876665 -0.00635531 --0.031209 --0.0112334 --0.0640299 -0.0996119 --0.00256625 --0.0520822 --0.0606217 --0.0399887 --0.00174163 -0.0109764 -0.00239673 --0.00807837 -0.0033566 --0.03748 -0.07157 -0.0104844 --0.103063 -0.00885043 --0.0626082 --0.0253897 -0.0879731 -0.130428 -0.0336193 -0.043392 -0.0212224 -0.00633744 --0.0486501 -0.00246254 -0.0229144 --0.025629 -0.0430653 -0.00879081 -0.0217393 -0.0847112 --0.0154265 -0.0173135 --0.0216198 --0.0437359 -0.0911765 --0.000442681 --0.0259875 -0.0098294 --0.0316581 --0.0229614 --0.0221505 -0.030902 --0.019489 --0.0655708 -0.00384256 --0.034888 -0.0431867 --0.0159914 --0.0148054 --0.000450419 -0.0694889 -0.0525986 -0.0663793 -0.0295785 --0.0328776 -0.0160821 -0.09582 --0.030684 --0.0320025 -0.0199725 --0.0091195 --0.0882786 --0.0235994 -0.0373648 --0.0223243 -0.0249672 --0.0467548 -0.039361 --0.0588901 --0.125365 --0.0055753 --0.00274236 -0.0148252 --0.023631 --0.0375833 -0.047576 -0.0646912 --0.0973124 -0.0944488 --0.00241003 --0.00631481 --0.0137069 --0.0254025 --0.026488 -0.0826565 -0.0200269 -0.0358611 --0.0611462 --0.042978 --0.0361355 --0.0018562 --0.0540314 --0.016864 -0.0161151 --0.0179294 --0.00925034 -0.0655318 -0.00128105 --0.017907 -0.0643669 --0.0494327 -0.0169128 --0.0585846 --0.0762256 -0.130035 -0.0102517 -0.0559913 -0.0107367 -0.011435 --0.00253689 -0.00445381 --0.115628 --0.130173 -0.0200876 -0.0154751 --0.0420954 --0.0649731 -0.0138008 -0.0386857 -0.00732719 --0.0221639 -0.0426246 -0.0358037 -0.0346197 -0.0243583 -0.0550972 -0.0197452 -0.0216041 --0.0476434 --0.0460822 --0.00765417 --0.0798128 --0.0210132 --0.0484821 -0.0898719 -0.0588043 -0.0103126 -0.0166141 -0.0499842 -0.132009 -0.041512 --0.0744565 -0.0165796 -0.0182829 -0.0181899 -0.0209677 --0.0559252 -0.0676933 --0.0549174 -0.0735931 --0.0165273 --0.0293156 --0.0373402 -0.0579989 -0.0344766 --0.0236596 -0.0109211 --0.023131 -0.0111149 -0.0353439 --0.0067239 --0.0124208 --0.00382078 -0.0184558 -0.0320079 -0.0441629 --0.0411914 --0.0440319 --0.0430516 -0.0829242 --0.0211169 --0.0123437 --0.0101612 -0.0317023 --0.0457438 -0.000460428 --0.115955 -0.0928482 --0.0414657 -0.0668106 --0.00408699 -0.00428238 -0.00270654 --0.00549306 --0.0730176 --0.0796425 --0.0226945 -0.0275797 --0.0933149 -0.0666183 --0.0711365 --0.0589391 --0.00689903 --0.0290206 -0.0442323 --0.00255672 --0.00979677 --0.0953671 -0.0900788 --0.03553 --0.0348959 --0.0550392 --0.115082 --0.0195269 -0.063661 --0.0135911 --0.0375488 --0.0204414 --0.0466889 --0.00955681 --0.0100311 --0.00133199 -0.0593122 --0.0597775 -0.00617788 --0.0297912 -0.0741678 --0.00267519 --0.02201 --0.069663 -0.00165815 -0.0605748 --0.0241135 -0.0406444 --0.0528582 -0.0430583 --0.000391892 -0.0471571 -0.00320087 -0.0413065 -0.121488 --0.00837186 -0.0373865 -0.00476387 -0.0231187 --0.00356293 --0.0319595 -0.0432297 --0.00498685 -0.0669506 --0.0137645 --0.0794072 --0.0481812 -0.0185617 --0.0410255 --0.070532 -0.0257589 -0.0621376 --0.0390518 --0.0653705 --0.0771395 --0.032358 -0.0539411 -0.0253384 --0.0461632 -0.0919555 -0.0274274 --0.109969 -0.043517 -0.113067 -0.0333525 --0.0878403 -0.0719958 -0.0165093 -0.0227354 --0.0401011 --0.0170738 --0.00951421 -0.0499843 -0.013458 -0.0113972 -0.0853929 --0.0406854 --0.0107498 -0.0216276 -0.0408795 --0.0601728 --0.0563658 --0.00600114 --0.0470287 -0.00165042 -0.0370391 -0.0345899 -0.0211314 -0.132582 --0.0581859 --0.00953301 --0.0318652 -0.0765059 -0.03117 --0.00797202 -0.0677048 --0.0405083 --0.0192825 --0.0434135 --0.012174 --0.0275142 -0.0958216 -0.128027 -0.028803 -0.02082 --0.0236453 -0.0351854 --0.0873713 --0.0289507 -0.059235 -0.00117548 --0.022241 --0.0422364 -0.0166762 -0.0486903 --0.00536861 --0.0548416 -0.0146705 -0.0141554 -0.027949 -0.0630374 -0.0149588 --0.000704615 -0.0258342 --0.0100883 -0.0480229 --0.0821927 --0.0409616 --0.0273373 --0.0137463 --0.0238412 -0.0710793 --0.0261076 -0.04992 -0.00236257 -0.0350817 --8.55968e-05 --0.0509836 -0.0618503 -0.0587671 -0.0192207 -0.0386948 --0.043417 -0.0356242 --0.0247661 --0.066202 --0.0135409 -0.0181455 -0.0556905 -0.00449223 --0.0156967 --0.0257909 --0.0130863 --0.0206185 --0.00700535 --0.00386907 -0.00416096 -0.0141562 -0.0234571 --0.0111471 --0.047925 -0.0114658 -0.0325452 --0.0824775 -0.0783321 --0.0409279 -0.0108934 --0.0422675 --0.100921 --0.0285335 -0.0741002 -0.0523688 --0.0913364 -0.00693057 -0.0113994 -0.00955568 -0.0406287 --0.031093 -0.0506763 --0.0238962 -0.0731185 --0.0336953 -0.0183086 --0.000183413 --0.0313907 -0.00412041 -0.0505289 --0.00584364 -0.0208805 -0.0180192 --0.00150666 --0.0696551 -0.00167411 -0.0930679 -0.046856 -0.0643142 -0.0525432 --0.0349923 -0.0761688 -0.0458868 -0.0028744 --0.0599304 -0.0116393 --0.0646935 --0.0533516 -0.0211854 --0.0089407 -0.112565 --0.019928 -0.0444917 -0.0650789 -0.101446 -0.0061145 -0.0336565 --0.0570559 --0.0453704 --0.121958 --0.0102223 -0.00270265 -0.00844515 --0.00111617 --0.0607859 --0.038968 --0.0379157 --0.0123224 --0.0686448 -0.0178899 -0.0415282 --0.0479949 --0.075682 -0.0808895 --0.061987 --0.108932 -0.00967422 -0.0203634 --0.149615 --0.104244 -0.0285512 --0.0207925 -0.0168593 --0.0252475 --0.0646705 -0.0121769 --0.0187293 -0.119132 -0.0414895 -0.012761 -0.00632512 --0.0390345 --0.190453 -0.0165989 -0.062947 -0.0242445 --0.00298968 --0.0190943 --0.0338781 --0.00521991 --0.0677107 -0.0331248 -0.0388472 -0.0405449 --0.0511384 --0.0678316 -0.0390858 --0.0351209 -0.0437141 -0.0180134 -0.0420262 --0.0709429 --0.0227849 -0.000336811 --0.000411246 -0.0477844 -0.00688695 --0.0102799 --0.0282341 --0.0680137 -0.0324474 -0.0114302 --0.0807224 -0.0229084 -0.0929818 --0.0199968 -0.0291852 -0.0114238 --0.0423438 -0.0153154 -0.0836309 -0.0242628 --0.0014686 -0.0160845 --0.0607429 --0.13535 -0.0531754 --0.0422474 -0.0440573 --0.109041 -0.0455732 -0.0207228 -0.0161411 -0.0286979 -0.0755382 --0.000296895 -0.030475 -0.0357605 --0.0018941 --0.0388961 --0.00168327 --0.0292563 --0.111572 -0.00228235 -0.00807201 -0.145452 --0.0403557 --0.00896546 --0.0334692 --0.00502021 --0.0258268 -0.0336226 --0.0941588 -0.0138782 --0.0829645 --0.0319724 -0.0381507 -0.024748 --0.0134399 -0.0433466 --0.0208509 -0.0088142 --0.00642189 --0.00756695 -0.0337706 --0.0188545 -0.0168291 -0.0333698 --0.00507515 -0.0299593 --0.0789287 --0.0068778 -0.0113049 --0.0997144 --0.0383583 --0.00671589 -0.00359501 -0.0779732 -0.00380721 --0.0675724 --0.050779 -0.00439729 -0.0288914 -0.00591107 -0.0614253 -0.0346426 -0.0393711 -0.0728531 --0.0255399 --0.0588985 -0.058837 -0.00888586 --0.0626458 -0.182948 --0.0564327 -0.0570564 -0.0214807 -0.0587548 --0.00727446 --0.016582 -0.000946529 --0.00454974 --0.0670891 -0.0101852 --0.0110352 --0.0332803 -0.0136771 --0.0291177 -0.0464384 --0.0626933 -0.0378856 --0.0162124 -0.0517498 -0.126806 -0.0114082 --0.00380737 --0.0228839 --0.0300032 --0.0320907 -0.054598 -0.0124062 -0.00915856 -0.0243559 --0.0279748 --0.0490673 -0.0136247 --0.00312086 --0.0116441 --0.0372257 --0.0112848 -0.00179355 --0.013148 -0.0135379 -0.0133644 --0.00941854 --0.024688 --0.0460024 -0.052403 -0.0154822 --0.0570215 --0.0281573 --0.0114131 -0.00479363 -0.103022 --0.00663167 -0.0596558 -0.0137081 -0.0189195 -0.0204059 -0.0435005 -0.102323 --0.00337604 --0.0525428 --0.0480767 -0.0332283 --0.0138316 -0.012204 --0.00465346 --0.0354085 -0.00850281 -0.00884497 -0.0926471 -0.0100351 -0.0171223 -0.00487521 -0.0237379 --0.0339331 -0.00317686 -0.0584228 --0.0340776 -0.0486746 --0.00285972 --0.0229243 --0.0496343 -0.0483632 -0.0582757 --0.0379319 --0.104169 --0.00246197 --0.099661 -0.068474 -0.111977 -0.00942874 --0.011581 -0.0221875 --0.0434428 -0.0724967 -0.0260718 --0.0857149 --0.0342864 -0.0285849 -0.0174037 --0.0143555 -0.00784194 -0.00585967 --0.0129744 --0.069334 -0.020347 -0.0344214 --0.0310959 -0.0374967 -0.0567483 --0.0557858 -0.0110061 --0.00589032 -0.0269458 -0.0683339 --0.053213 -0.0157707 -0.0429392 --0.0472682 --0.0700033 -0.0317283 --0.103819 -0.112987 --0.038345 -0.0281852 -0.0372526 -0.0248695 --0.0496868 --0.0508489 --0.0665618 -0.00381191 --0.00279455 --0.0723359 -0.0370277 -0.0485468 --0.0306206 --0.00116969 --0.020832 --0.0276591 --0.0488884 --0.0427209 -0.0763503 -0.0890205 -0.00089871 --0.0245186 -0.0243497 --0.0878324 -0.0584599 -0.016843 -0.0200124 -0.00985619 -0.0251844 --0.0763568 -0.0086812 -0.040171 -0.0446523 --0.0419026 --0.0148412 -0.0151451 -0.0710437 -0.0424656 -0.0104685 -0.0117613 -0.0765158 -0.00211096 --0.0175032 -0.0630063 --0.037722 --0.0115097 --0.0248328 --0.0515039 --0.0213211 -0.10251 --0.0167372 -0.0372744 --0.0399666 --0.063074 --0.0864441 --0.0203324 --0.0105551 -0.109077 -0.0761268 -0.0208627 --0.089952 -0.00652803 --0.0563816 --0.0327429 --0.0449798 --0.0293874 --0.033644 --0.0144415 -0.00772167 --0.0264315 --0.0623582 --0.00143206 -0.0303002 --0.0264569 --0.0598737 -0.0607999 --0.021923 -0.0536802 -0.0804956 -0.0272634 -0.053787 -0.0121245 --0.0645104 --0.0352677 -0.0166892 -0.00938158 --0.0495662 --0.0512965 --0.06229 -0.0343222 --0.0251325 -0.0659311 -0.085716 --0.00124915 -0.0264326 -0.0175269 --0.0255848 --0.0929507 -0.0685902 --0.0389958 -0.0152452 --0.0328121 --0.0160887 -0.0213692 -0.0128713 -0.00294858 -0.0682702 -1.87775e-05 -0.00751586 --0.068751 --0.0673277 -0.0285493 --0.000699284 -0.0576207 -0.00874359 -0.0475577 --0.0299039 -0.0767718 -0.0685967 -0.0367815 --0.0139928 --0.0830528 -0.0282028 -0.0272432 -0.0296949 --0.0199348 -0.0165477 -0.0429876 -0.0101995 --0.0984655 --0.0262775 --0.0804284 --0.0440345 -0.0743362 -0.0929406 -0.0245657 -0.0657379 --0.0468154 --0.0895113 --0.0679621 --0.0586103 --0.0137985 -0.0937115 -0.110422 -0.0179028 --0.0620644 -0.0115255 --0.00518026 --0.00844337 --0.0110549 -0.0521794 -0.0381088 -0.00551678 -0.035874 --0.0709166 -0.102356 --0.0391349 -0.0640995 -0.0326085 -0.0231831 -0.0265938 -0.000745355 --0.0839182 --0.00560401 -0.0900358 --0.0129088 -0.0220375 --0.026979 -0.02814 -0.0166638 --0.0297647 -0.0249953 -0.0419616 --0.0553862 -0.000937844 -0.0259788 -0.0931234 -0.0129309 -0.013776 -0.0161312 --0.00442685 -0.0261226 -0.0998278 --0.0581949 -0.0908143 --0.0121875 --0.0087363 -0.0451398 -0.0155588 -0.0110171 --0.00812956 -0.0569777 -0.031265 -0.0486274 -0.0393087 -0.0790658 -0.011481 --0.0196006 --0.0109821 -0.0220266 --0.0160215 --0.0262696 -0.0803447 -0.0053275 -0.0390818 --0.028561 -0.0519855 --0.00399419 --0.014836 -0.0633146 -0.0284495 --0.0407638 --0.0257408 -0.0190699 --0.0437204 -0.0184448 -0.0322984 --0.123756 --0.109353 -0.00403452 -0.0427528 -0.0400652 --0.0253039 --0.146339 -0.0357413 --0.0224906 -0.042618 -0.00175531 -0.0109312 --0.0517762 -0.0556057 --0.0414606 -0.0331252 -0.00547755 -0.071516 -0.02077 -0.0515511 -0.0153213 -0.034493 --0.00453054 --0.0382648 -0.0544402 --0.0347315 --0.0894672 -0.0433377 -0.0131214 --0.00757624 --0.0707653 -0.0456018 -0.049318 -0.00695086 -0.0251536 --0.00368742 --0.00377972 --0.00137314 --0.0165668 --0.0226053 -0.101773 --0.0576977 -0.0153822 -0.0707905 --0.0421617 --0.007386 -0.0608485 -0.114456 -0.0105463 --0.0668324 -0.0278205 -0.0579809 --0.000633175 --0.0904178 -0.00694148 --0.0520028 -0.0843646 --0.0155516 -0.0885219 -0.0421215 --0.048369 -0.0315922 --0.0134528 -0.0578575 -0.0112608 --0.00292126 -0.11144 -0.0419729 -0.00375505 --0.115527 --0.0220673 -0.0436344 -0.0398193 -0.0102578 -0.0522808 -0.069289 -0.085662 -0.0744936 -0.00310435 -0.0576448 -0.0263905 --0.0345111 --0.0815907 --0.0244607 -0.0387996 --0.0152219 --0.0367241 -0.0142975 -0.00847248 --0.041684 --0.0512865 --0.0964359 -0.0458335 --0.0549742 -0.00707641 -0.0315095 -0.0629343 --0.0426376 -0.00674401 -0.0648178 -0.01784 -0.048019 -0.0433814 -0.0723129 -0.0288509 --0.00493966 --0.0361806 -0.017784 --0.0233256 -0.0525176 --0.0687095 --0.0378616 -0.00257954 -0.0153884 -0.00169442 -0.0133008 -0.0310037 -0.0391471 --0.00335024 --0.010147 -0.0152914 -0.0881046 --0.0684164 --0.0474314 --0.0193132 --0.0258229 -0.113696 -0.0129532 --0.0462449 -0.0158678 -0.104765 --0.0567108 -0.0609448 --0.0131332 -0.0182486 --0.0508902 -0.030209 --0.00443068 --0.0264159 --0.0228162 --0.01596 --0.00848243 -0.00806229 -0.0646238 --0.100507 --0.0159081 --0.0749166 -0.0101544 -0.0949585 --0.0425193 -0.00136236 -0.0423352 --0.0479343 -0.0428637 -0.0133001 --0.0673097 --0.105706 --0.0777768 --0.0333145 -0.0894405 -0.0117411 --0.00524847 -0.0209947 --0.0566101 --0.0210024 --0.0515949 -0.022536 -0.0164812 --0.0473223 --0.086139 -0.0845306 --0.0215946 -0.000187962 -0.0494688 --0.00818911 -0.0537283 -0.00478834 --0.00410396 --0.0250748 --0.0399555 -0.0539756 --0.00945471 -0.055199 -0.0315921 --0.0626327 --0.0236987 --0.0821552 -0.110374 -0.128377 -0.0823126 -0.0494825 -0.0184728 -0.0429728 --0.100648 -0.135723 -0.118704 --0.015997 --0.000675628 --0.0210013 --0.00373115 -0.0852835 -0.0174676 -0.0808823 --0.00531942 --0.120102 --0.0708018 --0.0124217 -0.0618871 --0.0882822 -0.0764515 -0.0397297 -0.0302939 --0.0551218 --0.00657718 --0.0111965 -0.0853192 --0.00296064 --0.00882224 --0.0392409 -0.0258598 -0.0440571 -0.071498 -0.0165509 -0.0129482 --0.000549926 --0.0760085 -0.0349727 -0.0279947 --0.0243864 -0.0406374 --0.038766 --0.0298806 -0.00513645 --0.00717099 -0.0177441 -0.0502269 --0.0269085 --0.0168608 --0.00243108 --0.0682858 -0.053909 -0.00223444 -0.0963996 -0.0686244 -0.00572324 -0.0417935 -0.03615 -0.00965643 -0.0137795 -0.0756091 -0.0124633 --0.0174067 -0.016698 --0.0780848 -0.00836334 -0.0101672 --0.0860082 -0.0959393 -0.0926299 --0.0469673 -0.0597968 --0.0560221 --0.0212809 -0.0708442 --0.062359 --0.0695714 --0.00659002 -0.00608061 -0.060092 --0.0458167 --0.0779237 -0.0250954 -0.00321039 --0.0232201 -0.0345204 -0.00233961 -0.0650824 -0.00109187 -0.0201392 --0.0435655 --0.0263957 -0.00388459 --0.0270327 --0.0149073 -0.0212548 --0.00295508 --0.0189025 -0.0643916 --0.0468661 -0.0151581 --0.0742945 --0.0421554 --0.00839354 -0.0177528 -0.0774196 -0.094927 -0.0375251 -0.00512333 -0.0108688 -0.0665203 -0.032224 --0.0617402 -0.0147492 -0.0238132 --0.0644074 -0.00841167 --0.0465545 -0.0124081 -0.0179402 --0.11483 --0.0534713 --0.025202 --0.0399538 -0.0390227 --0.0460814 -0.0128132 -0.0373651 --0.0184597 -0.0405202 -0.0910694 --0.00409616 -0.0729656 -0.0602499 -0.0722853 --0.00361938 --0.00600953 -0.0944159 -0.0367086 -0.0291512 -0.0299923 --0.0301617 --0.0119316 --0.0379366 --0.0185608 -0.0182581 -0.0440046 --0.070747 -0.0444624 --0.0374733 -0.0355693 -0.0231682 --0.0346044 --0.0269231 -0.017072 --0.0105566 --0.0413104 --0.0267357 --0.00955421 -0.0417453 --0.0616581 --0.00504696 -0.0515454 -0.0189614 -0.0390562 --0.000466543 --0.0258791 --0.0237236 -0.111738 -0.0507758 --0.0917349 --0.0775221 --0.0667019 --0.0308138 --0.0345191 --0.0595373 --0.00893307 --0.0900208 --0.00684157 --0.0208435 --0.0120244 --0.0646023 -0.0232191 --0.0556739 --0.0387434 --0.0401034 -0.0331535 -0.0266073 -0.0233572 -0.107658 -0.0755107 --0.0243743 -0.0920584 --0.0548363 --0.0799218 -0.0461868 --0.0017383 --0.0406683 --0.017188 -0.0387768 --0.0574984 --0.0289917 --0.0207404 -0.00803841 -0.0179617 -0.0132986 -0.0177722 --0.0336503 --0.0834537 -0.00146338 --0.0118028 --0.0125739 -0.00865024 --0.0176276 -0.135925 --0.00297554 --0.0321795 -0.0235028 -0.155024 --0.0204386 -0.0248446 -0.0510565 -0.0194266 -0.045238 -0.0602414 -0.0439491 --0.0190167 --0.0311731 -0.00124384 -0.0137021 --0.0837746 -0.0198765 -0.00783711 --0.032105 -0.141472 --0.0244917 --0.0775539 --0.165358 -0.0378183 --0.0313743 --0.0109105 -0.0125107 -0.0328339 -0.0771114 --0.0540968 -0.0960533 -0.0879444 --0.0215231 --0.0209908 --0.088898 --0.0565175 -0.0458602 -0.0554673 -0.069662 --0.00718071 --0.0289817 --0.0635558 --0.0151498 -0.0239751 -0.106366 --0.00784698 -0.0148812 --0.00565436 -0.0385656 --0.08772 -0.0527996 --0.00488122 --0.052445 --0.0723403 -0.0432779 -0.0330325 -0.00862815 -0.0313506 -0.0914792 --0.0232246 -0.0377794 --0.110914 -0.071646 -0.024106 --0.0174511 -0.0165842 -0.0812097 --0.107968 -0.0135181 --0.0574526 -0.112653 --0.0386609 --0.00400395 --0.0597447 --0.0132812 --0.051497 -0.0485414 -0.0450987 -0.00613567 -0.0203769 -0.00240906 -0.0607279 -0.0133846 -0.0338321 --0.0158287 --0.00670085 -0.0444628 -0.0537277 -0.014907 -0.0899196 --0.0857544 --0.0478354 -0.00559676 --0.0272676 -0.0361768 -0.0209953 -0.0156726 --0.035725 --0.0043776 -0.00195087 -0.00956944 --0.0237132 --0.0490289 --0.014555 --0.00440061 --0.0854834 --0.0262023 --0.0100214 --0.119959 --0.0343902 -0.0634869 --0.0248838 --0.00933801 -0.0655937 -0.0453682 -0.0162324 --0.0518343 --0.023023 --0.0390521 --0.019213 --0.00166832 --0.0119036 --0.00664924 -0.0391538 --0.115169 --0.0192296 --0.0653729 -0.0166853 -0.0548437 --0.110425 -0.0340283 -0.0131865 --0.0579434 -0.0355062 -0.0589716 -0.0221364 -0.0336151 --0.0618661 --0.0136238 -0.00146189 --0.107728 -0.0756223 --0.00503814 --0.0241248 -0.029044 -0.0895732 -0.0375783 --0.0273199 -0.018564 -0.0103351 --0.0512667 --0.0712824 -0.0301309 --0.0340671 -0.0177497 -0.0483616 --0.0767666 -0.0579132 -0.0577466 --0.0352143 -0.0253851 -0.00866932 -0.0544028 -0.0540776 --0.044629 -0.0519534 --0.0588687 -0.0855051 --0.0314919 -0.0340588 --0.0450919 -0.00588542 -0.014693 -0.0161348 -0.0544865 --0.0111216 --0.0628805 -0.035621 -0.0159665 -0.00328059 --0.0355289 --0.111634 --0.0109774 -0.059502 -0.0676591 -0.0959803 -0.0275508 -0.0215162 --0.0288167 -0.015624 --0.0487496 --0.031259 -0.0839745 --0.00719368 --0.0915904 --0.0416152 -0.0155497 --0.0756266 -0.0567329 --0.128007 -0.0961847 --0.103471 -0.0624256 --0.0189872 --0.0701001 -0.0175819 --0.0115403 -0.0453413 -0.0930677 -0.111379 --0.0342524 --0.0247037 --0.0217899 --0.0300195 --0.0496698 -0.00612878 --0.0194506 --0.0358156 -0.0865746 --0.0427982 --0.0883189 --0.0146553 -0.0266405 --0.015973 --0.0319814 -0.0246642 -0.100926 -0.00564488 -0.0317431 -0.0184009 --0.0115395 --0.00230611 --0.0140249 -0.0757892 -0.011996 -0.0143605 -0.0712498 -0.00464366 --0.0109129 --0.0144486 -0.00650002 --0.087732 --0.0383644 -0.0343158 -0.011308 --0.0363926 --0.0615752 -0.0479781 -0.0247946 --0.0281226 --0.041213 --0.0308643 -0.060197 --0.0461334 --0.0361422 --0.0345563 -0.0521449 --0.00171798 --0.0242414 --0.0458642 -0.0714969 -0.0383363 -0.0124598 --0.051621 -0.0103646 -0.0611074 -0.0381812 --0.0508547 --0.0443573 -0.0466303 --0.0291897 --0.0210858 --0.0232713 -0.046039 -0.00886368 --0.0692653 --0.0505891 --0.104199 -0.0512383 -0.108907 --0.0344155 --0.0271503 --0.00852977 --0.070442 -0.0771897 --0.0130141 -0.0935207 --0.0604875 -0.0280755 --0.0163443 -0.0150875 -0.0611752 -0.0648839 -0.0229854 -0.0475278 --0.0463111 -0.025751 --0.0120621 -0.011214 --0.0144399 -0.0761955 --0.00168684 --0.0224564 --0.00486186 -0.0694858 -0.0266616 -0.0643731 -0.00827429 --0.115149 --0.0207738 --0.034009 --0.0393827 -0.00830997 --0.0490518 -0.0154363 --0.00457841 -0.0249082 --0.047985 -0.100745 --0.0874391 -0.0428541 -0.094463 --0.0749522 --0.074042 -0.00586971 -0.0736858 --0.0453599 --0.0310103 --0.0649378 --0.0134663 --0.0379766 -0.0118509 --0.0461003 -0.0341477 -0.0472589 --0.0202067 --0.0502739 --0.0583771 --0.0406137 --0.0107746 -0.0294124 --0.0744091 --0.0150996 -0.0745198 --0.0401991 --0.0740255 -0.0589651 -0.0786913 -0.0221759 --0.076192 --0.0294166 --0.1275 --0.0216514 --0.0616371 --0.00238912 --0.0440226 --0.0483254 --0.0293788 -0.014864 -0.0249766 --0.00766326 --0.0275513 --0.0814465 --0.0125408 --0.0273807 --0.011423 --0.0352718 --0.0935458 -0.0794084 -0.034603 --0.0144296 -0.042731 -0.0689977 --0.0151495 --0.0683012 --0.0128117 -0.0786442 --0.0479108 -0.0509835 -0.042722 -0.0309327 -0.04682 --0.000490306 --0.0127387 --0.0275334 -0.059751 -0.0152922 -0.0352495 -0.0291338 -0.0177105 --0.0511107 -0.0282832 --0.0426464 -0.0104049 -0.0337041 --0.00575786 -0.0435116 --0.0526395 --0.0461761 -0.0350977 --0.0210677 -0.0562249 -0.0131764 --0.0235188 -0.0627435 -0.0587457 --0.0628809 -0.056358 --0.0395413 -0.0232391 --0.00275849 --0.0566283 -0.036044 --0.0606737 -0.119286 -0.0287653 --0.0900432 --0.0630213 --0.00243081 -0.0719677 --0.0180108 -0.0154368 --0.0339737 --0.00678744 -0.0678054 -0.00158496 -0.0737326 -0.040277 -0.0336854 -0.0372078 --0.00406445 --0.00717139 -0.0698978 -0.0437186 -0.0593388 -0.139994 -0.0854926 --0.00530989 -0.0465415 --0.0530622 -0.0800876 -0.0346478 --0.0628198 --0.103516 -0.0375847 -0.0366159 --0.0349077 -0.00755423 -0.0151398 -0.0369948 -0.0218215 --0.0141 -0.0469651 --0.0112767 -0.00476107 --0.0267032 --0.0519404 -0.043409 --0.0356486 --0.038646 -0.0122791 -0.10384 --0.0111589 --0.0484643 --0.0100697 --0.0125193 -0.0906121 --0.00621241 --0.0466724 -0.0340068 -0.0278782 --0.0198005 -0.0536275 --0.0433357 --0.0226942 -0.0158142 --0.0105393 --0.00904788 -0.0592961 --0.0397352 --0.0514524 -0.0230553 -0.021651 --0.00108725 -0.0437906 --0.0539384 --0.0231487 --0.059049 --0.00220614 --0.032822 --0.00831302 --0.0153617 -0.0140454 -0.0407563 --0.0450172 -0.0690014 --0.0184312 -0.0294598 -0.0273863 -0.0603105 -0.0275908 -0.0775635 --0.061039 --0.0374544 -0.00582648 --0.0387481 --0.0221087 --0.130334 -0.00354398 --0.0162093 -0.0373965 -0.0279346 --0.005315 -0.0282879 -0.0953675 -0.0121053 -0.0158677 --0.0528818 -0.03082 --0.0943061 --0.0437064 -0.0360586 --0.0410612 --0.0649116 --0.0448959 -0.038459 -0.0160137 -0.0496105 -0.0220758 --0.0172958 --0.0496124 -0.0781187 -0.00894869 -0.0313115 --0.0145108 -0.05275 --0.0127187 --0.0729413 --0.0250734 --0.0390652 -0.0107074 --0.0193648 -0.0193708 --0.0194923 --0.0286436 --0.0420897 --0.0276987 -0.0546863 --0.0249 -0.0535054 --0.0252226 -0.0207115 --0.0259308 -0.00270052 -0.00505957 -0.0672025 -0.00672234 --0.0381541 --0.0667855 -0.00979876 -0.0462414 -0.029147 --0.0348213 --0.0465705 -0.0584292 --0.0561451 -0.0582525 --0.0498561 -0.00675115 -0.00515444 -0.125122 -0.0118867 --0.0232714 --0.000441307 -0.0141642 --0.0312894 --0.00674557 -0.0107043 -0.00076016 --0.0585568 --0.0480287 -0.0590603 --0.00430262 -0.0238845 -0.0192634 -0.0608413 --0.0896535 -0.0259253 -0.0171762 -0.0137884 --0.0565181 -0.0200856 --0.0174996 -0.134183 --0.0621028 --0.0271065 -0.0312549 --0.0708361 --0.0240933 -0.0270495 --0.0508805 --0.00863622 --0.0412867 -0.0423842 --0.0938159 --0.010623 -0.0484604 --0.0810958 -0.0820301 --0.0506299 -0.00832134 -0.0734058 -0.0157445 --0.0352607 -0.103533 -0.0184719 -0.0155525 --0.0306163 -0.0360987 -0.0946279 --0.0155692 -0.0465448 --0.0872021 --0.0450171 --0.062988 -0.0300525 --0.0111992 --0.0212616 -0.00115146 --0.00510569 --0.0203916 --0.020483 --0.0141729 -0.0631954 -0.149571 --0.0474896 -0.0536012 -0.0389219 --0.038233 -0.0533135 -0.0127673 --0.0288945 -0.00629805 --0.0231982 --0.0375624 --0.0764309 --0.0519345 --0.000883055 --0.0357361 -0.0432342 -0.0397982 --0.00492929 --0.0366853 -0.0331207 -0.0376048 -0.00845431 -0.0653618 -0.00725761 --0.0302252 --0.0417907 --0.0713088 --0.0436048 --0.113166 -0.0540557 -0.0190533 --0.0168538 --0.0151741 -0.0123324 --0.0090299 -0.053758 --0.0388844 -0.0346782 -0.0398098 -0.00211623 -0.0124396 -0.0314833 -0.0583314 --0.059104 -0.0374969 -0.154499 -0.0557104 --0.0213655 --0.0907204 --0.0928568 --0.0194505 --0.109347 -0.0486889 --0.0518856 -0.0588826 -0.0249863 -0.168409 -0.013274 -0.00531838 -0.00892459 -0.0545165 --0.0514099 -0.0513679 --0.0477774 --0.105532 -0.0348834 -0.0446428 -0.00445713 -0.0211415 -0.00217089 --0.00164627 --0.0932397 -0.00686679 -0.0493798 --0.0807335 --0.0115631 --0.0109858 -0.00824829 --0.0322542 -0.05935 -0.0384625 -0.0631774 --0.067699 -0.0192804 -0.0627233 -0.023338 -0.069711 --0.00282497 --0.0452733 --0.0282846 -0.0482856 --0.0904175 -0.0854451 --0.0242813 --0.0119836 --0.0393691 --0.00663656 --0.00210629 -0.0385449 --0.0139807 --0.0383004 -0.0309029 -0.018556 --0.0147912 --0.103827 -0.0257256 --0.0610212 --0.00923661 -0.0246295 -0.183723 -0.0392703 -0.0471489 --0.0108757 -0.00947068 --0.019095 -0.100813 --0.0169275 --0.125448 -0.018484 -0.00296341 -0.0762498 --0.00979241 -0.0346952 --0.0243707 --0.0986561 -0.0688571 -0.0477999 --0.0294082 -0.0237866 --0.0479369 -0.0016626 -0.0732992 -0.0172254 -0.010068 --0.105259 --0.0260761 --0.0195217 --0.0181867 -0.00630863 --0.0282715 -0.00673405 --0.0116956 --0.009558 -0.0295876 --0.109548 -0.0962751 --0.0665322 -0.0525523 -0.0153124 --0.0452667 -0.0100312 -0.0659354 -0.00953924 --0.0240532 --0.00744403 --0.0946735 --0.0700134 --0.00579964 --0.00173733 -0.0617442 -0.0543534 --0.0769894 --0.0956424 -0.0502042 --0.029988 -0.0281388 -0.0350755 --0.0772087 -0.0376159 -0.0255912 --0.0106136 -0.102677 -0.000387909 -0.0522742 --0.00814314 -0.0451991 -0.020327 --0.0334607 -0.0641425 -0.0447006 --0.0305534 --0.0227724 -0.0138648 -0.0981286 --0.00894047 -0.0150659 --0.000325578 --0.0234789 -0.00505502 --0.0424373 -0.0023067 -0.0300611 --0.0100171 -0.0010068 -0.05321 -0.0294782 -0.0148708 --0.00262883 -0.0537089 --0.0347621 --0.0334044 --0.13106 -0.0826977 -0.0889929 -5.78614e-05 --0.0783405 -0.0588464 --0.00325535 -0.0348232 -0.0136306 --0.0216872 --0.0107278 -0.00653375 --0.0971285 --0.0462444 -0.0091695 -0.0149108 --0.0753059 --0.0218955 --0.14635 --0.0319079 -0.0467713 -0.0324092 -0.0293085 -0.00801222 --0.0170369 --0.126658 --0.0404991 --0.00999132 -0.0382794 --0.0107092 -0.00815289 --0.075526 --0.00291139 --0.0450394 -0.0186667 -0.0781773 --0.0717613 -0.00858321 -0.075136 --0.0276029 --0.0315021 -0.00480239 --0.00672534 --0.05392 --0.0158223 -0.0581555 --0.0355483 --0.106644 -0.00467219 --0.0679035 --0.0920394 --0.0749176 --0.0216429 --0.0192385 --0.0742309 --0.0261316 --0.0306746 --0.047428 --0.0425357 --0.142919 --0.0683176 --0.0450233 -0.0733209 -0.0331544 -0.0406725 --0.0133989 -0.00397441 --0.0552544 --0.0229265 -0.0384486 -0.0162039 --0.0983592 --0.0508382 -0.0455184 -0.0626226 -0.0578524 --0.0185531 -0.0453796 --0.0360872 -0.0156801 --0.0700143 -0.0169805 -0.0382652 -0.0952148 --0.050728 --0.00495852 -0.0200918 -0.0504503 --0.0187668 --0.0304641 --0.0313803 -0.0205561 --0.0336696 --0.0339082 -0.0135746 -0.0690118 -0.0985939 -0.0907191 -0.0321582 -0.039013 --0.0762753 --0.0044394 --1.52525e-05 -0.0049978 --0.0130614 --0.0215225 --0.0165364 -0.0484945 --0.0449158 --0.0333652 -0.0371982 -0.0116753 -0.0819924 --0.054909 --0.0134917 --0.0201265 -0.0295851 -0.0470054 -0.0353463 -0.0272541 -0.0287191 -0.0255322 -0.00363212 --0.04189 -0.0735932 -0.029347 --0.0138077 -0.0252314 --0.00145033 --0.00797298 --0.0282 -0.0936085 --0.0279459 -0.0165014 --0.0694723 --0.00235999 --0.0371828 -0.0760047 -0.0287312 -0.13662 --0.0167418 --0.0175945 --0.0778423 --0.0599294 --0.142609 -0.0377174 --0.0471013 -0.0361532 -0.0588858 --0.0644412 -0.05285 --0.0521194 -0.0123901 --0.0419387 --0.0215874 -0.0015115 --0.0941098 -0.0650498 --0.051194 -0.070885 --0.0122867 -0.0848649 --0.0176516 --0.0105633 --0.122411 -0.0511392 --0.0697484 -0.0150095 -0.0416301 --0.0146852 --0.000115406 --0.0393068 -0.0140033 -0.0544794 --0.069685 --0.03638 --0.0445105 --0.0121654 --0.0319471 -0.0885957 -0.0277324 --0.0450731 -0.00385418 -0.0559095 --0.00312856 --0.0444518 --0.00448993 --0.0745377 --0.0194065 --0.0816006 -0.0696941 -0.103558 --0.0358989 --0.0210394 -0.0113901 -0.0564734 --0.0614459 -0.02634 --0.063512 --0.0398197 -0.0280576 --0.0131922 --0.00326476 -0.0395499 -0.0646931 --0.0742279 --0.0635252 -0.0595907 -0.110195 -0.0071379 --0.0133087 --0.0083879 -0.0164465 -0.0634219 --0.0876517 --0.0343731 -0.0315384 --0.0144106 --0.0165335 --0.00594918 -0.0564484 --0.0448115 --0.0485286 --0.0635998 -0.00342014 --0.064569 -0.0315562 -0.0168608 --0.0249144 -0.0727459 -0.0546215 -0.0112199 -0.0309299 -0.0573892 -0.0532926 -0.000790724 --0.0187894 -0.00992173 --0.058007 -0.0154801 --0.0606135 --0.0803491 --0.0635191 -0.0733448 -0.039383 --0.0442097 -0.0270385 --0.0220282 -0.0894251 -0.0176096 --0.00200577 -0.0471399 -0.0756534 --0.086848 --0.0977213 -0.0142375 -0.100671 --0.0247383 -0.0319402 --0.0660007 -0.0412168 -0.0160588 -0.076917 --0.00694488 --0.0431947 -0.0367185 -0.0242267 -0.00121942 --0.0852312 -0.0339695 -0.0110001 --0.0842781 -0.0728337 --0.0554829 --0.115642 --0.0391928 -0.0240383 -0.0390419 -0.013196 --0.0769465 -0.000276215 --0.025813 -0.051991 -0.00850118 -0.0090279 --0.0666632 --0.0511856 --0.0153338 -0.0405913 --0.040405 --0.00244529 --0.081816 -0.0183968 -0.0132955 -0.0357672 -0.0599511 --0.0276102 --0.0333399 -0.00670357 -0.0145052 -0.0368495 --0.100532 --0.0190065 -0.00549258 --0.0460676 --0.0726041 --0.0357841 -0.0581669 -0.049324 --0.046862 -0.040327 -0.0517297 --0.102532 --0.0404587 --0.00927712 -0.0221895 --0.0307242 --0.00825683 -0.0105128 --0.0070738 -0.00841743 -0.0524432 -0.0109272 --0.0405874 -0.00196092 -0.0325506 -0.0310671 --0.0589979 --0.0476181 -0.0851704 --0.0870417 -0.0229792 --0.100626 --0.00980497 --0.00595577 --0.100796 --0.0173902 --0.0439237 --0.0232645 -0.0468466 --0.0423661 -0.0325636 --0.00263063 -0.0156457 --0.0349079 --0.0166438 -0.0416208 -0.0628354 --0.000677311 -0.0464036 --0.0922138 --0.0572783 --0.0234978 -0.114138 -0.0439674 -0.0197936 -0.0301592 --0.0271574 --0.0848117 -0.0032231 -0.0269248 --0.073466 -0.010246 --0.132116 --0.023032 -0.0707821 -0.0144678 -0.0547623 --0.00473844 -0.066894 -0.0389856 --0.0028753 --0.0383193 -0.0357619 --0.111448 --0.058944 --0.00324542 -0.0041352 -0.0787954 -0.0209851 --0.113202 -0.0369237 --0.0225774 --0.00508848 -0.0630301 --0.0134632 -0.0346331 -0.032264 --0.0800922 --0.0474317 --0.00703935 --0.0152818 --0.0182597 --0.000401671 --0.0891212 -0.0787344 -0.053447 -0.0264059 -0.0848351 -0.0227549 -0.0177604 --0.0151081 --0.0432369 --0.0229215 -0.0300182 --0.0562703 --0.0661412 --0.00758294 --0.0166082 -0.0852555 --0.0430889 -0.0175103 --0.0093927 -0.0105596 -0.0415559 -0.0828954 -0.100106 --0.0159377 --0.0396398 --0.0524576 -0.00703952 -0.040183 --0.0114614 -0.0202215 -0.0357725 -0.0178187 -0.000742203 --0.0298735 --0.0453864 --0.04054 -0.00806528 -0.0895109 -0.000663254 --0.0303275 --0.0955331 -0.0584326 --0.0548309 -0.0641584 --0.0408554 -0.0488171 -0.0184698 --0.0860951 --0.0718545 --0.00230392 --0.0102367 --0.0255888 -0.0570752 --0.0743063 --0.0428894 --0.0322333 --0.0534202 --0.0198489 -0.00505078 -0.072981 -0.0790026 -0.0831299 --0.138289 -0.0543343 --0.0070269 --0.028831 --0.00635414 -0.0311813 --0.0511478 -0.0279622 --0.0332484 -0.124587 -0.0225579 --0.0262238 --0.0300778 -0.0177407 --0.0277001 -0.0179205 --0.0766806 -0.0363626 -0.0985272 --0.0205049 -0.0754047 -0.041564 -0.028651 -0.0199496 -0.0542466 -0.044467 -0.018455 -0.0446077 -0.0488705 --0.0938498 -0.0703816 --0.0707032 --0.0969093 -0.0684226 -0.0458931 --0.0438908 --0.00307165 --0.00992384 --0.0335904 --0.0719887 --0.0628322 --0.0487619 --0.0184403 -0.0258225 -0.0473847 --0.0213693 --0.0198507 --0.0429333 --0.0734441 --0.0708683 --0.0621127 -0.0100744 --0.0580931 -0.0103032 --0.0312725 -0.0566824 --0.00361647 --0.0189188 --0.0136493 -0.0693708 -0.029866 --0.0477957 --0.0631819 --0.0376781 --0.0517682 --0.0353997 --0.0415911 -0.0818767 -0.028622 --0.064991 -0.0387758 -0.0319568 --0.0933484 --0.0148465 --0.0223305 --0.00796156 -0.00481218 -0.0236063 --0.0312703 --0.0087227 --0.00392262 -0.0119545 -0.0461053 -0.0430028 --0.014832 --0.00195851 -0.0311777 -0.0931051 -0.117102 --0.0559195 -0.0161067 --0.00366371 --0.0987606 --0.0156852 -0.120696 -0.0310407 -5.4934e-05 --0.0434462 --0.00195581 --0.024264 -0.0216702 --0.075964 -0.0414662 -0.041889 -0.0311862 -0.0592807 --0.0927969 --0.00289784 -0.00800388 --0.0378824 -0.0192884 --0.0132208 -0.050925 -0.0687478 --0.0120905 --0.0397856 -0.0826785 -0.0805374 -0.0321561 -0.0111549 --0.0300628 -0.00811624 -0.0236599 -0.0180649 --0.00628054 --0.0554359 -0.00494301 -0.0157593 --0.0796743 --0.00177046 --0.0587087 -0.0866789 --0.0814977 --0.0306145 -0.0110137 -0.0245697 --0.0533259 --0.023292 --0.0301052 --0.0636719 -0.00746258 -0.0311629 --0.0313836 --0.0215386 --0.0669339 -0.0689036 -0.0459561 -0.0812138 --0.0683613 -0.0199442 -0.0220949 --0.0123517 --0.138166 --0.0477664 --7.04548e-05 -0.00805424 -0.00795627 --0.0196205 -0.0151249 --0.0767122 -0.0805041 --0.0258994 -0.000178708 --0.0816542 --0.0193327 -0.079783 -0.0270066 --0.0272299 --0.0366297 -0.0688087 -0.0128896 --0.0236048 --0.00734225 --0.0486279 --0.0585228 -0.0469444 --0.0890635 -0.0495018 -0.00772591 --0.0176263 -0.0117672 --0.00946425 -0.0100237 --0.00286954 -0.00083501 -0.0552142 -0.0908587 --0.0611759 -0.001134 -0.0104626 --0.0348902 --0.0381612 --0.0850219 --0.0346296 -0.0399531 --0.0347637 -0.000380295 --0.0290962 --0.027625 -0.0128228 -0.0226605 -0.00585595 -0.0704753 -8.30148e-05 -0.0104782 -0.0718747 --0.0179858 --0.0194597 -0.0864201 -0.0105335 --0.036078 -0.103253 -0.0146768 -0.0348748 -0.0484848 -0.0983524 --0.0469435 --0.00556273 --0.0172551 --0.0917316 -0.0202103 --0.0329075 --0.094079 -0.0177399 -0.0449368 --0.0159902 --0.000516609 -0.0801929 --0.0253633 --0.0468216 -0.0169296 --0.0153268 --0.0568421 --0.0304185 -0.043352 -0.0142347 --0.00279016 --0.0629284 --0.0686549 -0.062568 -0.0265225 -0.0352511 --0.0132241 --0.0652796 --0.0424791 --0.0174514 -0.0675957 --0.0623823 -0.0229278 -0.0678506 --0.0501616 --0.0237525 --0.104839 -0.0477168 -0.00198387 --0.018656 --0.06299 --0.0381376 --0.0507618 -0.000701977 --0.0237578 -0.0347402 -0.0340249 --0.0127438 --0.0809655 --0.0388369 -0.0433899 -0.0399195 --0.0134009 --0.00772981 -0.0527962 --0.0698251 --0.00342426 -0.0545872 --0.00819432 --0.00378444 -0.062605 --0.0623222 -0.0445091 -0.0161719 --0.0100086 --0.0415339 -0.0163452 --0.0552921 --0.00415008 -0.0266909 --0.0279844 --0.0244124 -0.0134243 --0.0213591 --0.0463199 -0.0472568 -0.086832 -0.0280447 -0.0676046 -0.00419925 --0.0545822 --0.0566095 --0.0665889 -0.0517994 -0.0736329 -0.0167263 --0.0721059 -0.0292727 -0.0632104 --0.00655926 -0.0601006 -0.0109753 --0.00646469 -0.0366258 --0.00453731 -0.0946092 -0.0560986 --0.045998 -0.0544694 --0.00638256 --0.0680248 -0.0303607 -0.0405936 --0.0533407 --0.0508336 -0.0171667 -0.0306788 --0.0647081 --0.0576764 -0.0100975 --0.0192674 -0.0296794 -0.115828 --0.0605506 --0.0475946 -0.0766815 --0.0451206 -0.146739 --0.0119402 --0.0469941 -0.030937 --0.134475 -0.0326628 --0.0321067 -0.00469071 --0.00773023 -0.0108149 -0.0551817 -0.0322285 -0.0995315 --0.0381019 --0.0361292 --0.110247 --0.00678604 --0.108749 --0.00754789 --0.0293301 -0.0664151 --0.0443264 --0.056695 --0.0199177 -0.023469 -0.0356277 -0.0642566 -0.046924 -0.0363823 --0.00990366 --0.0456404 -0.00189335 -0.0494468 -0.050305 -0.0454415 --0.00355188 -0.0365099 --0.0155807 -0.0354669 --0.021227 --0.0449832 --0.0686627 --0.0582629 --0.0269101 --0.0428636 -0.00255808 --0.0557601 --0.0286015 -0.0573429 --0.0990287 --0.0730466 --0.0209072 -0.0113979 -0.0178289 --0.0505607 --0.0179542 --0.0458568 -0.0135202 --0.0302314 -0.0345902 -0.0188407 --0.0630531 -0.0143837 --0.0169888 --0.0143152 --0.0299425 -0.0110371 -0.0116535 --0.0207445 --0.00630362 -0.0391608 -0.0547008 -0.0338964 --0.0239309 -0.0278271 --0.0499126 -0.0112375 -0.0369752 -0.0476798 -0.00701125 -0.00358752 -0.0455635 --0.0648734 -0.0225293 -0.0841497 -0.00299559 -0.0259945 --0.0361438 -0.0352933 -0.0140779 --0.00581451 --0.0163802 --0.038717 --0.0233228 -0.0134122 --0.0251682 -0.0113838 --0.0981582 --0.12675 -0.0421656 -0.00423662 -0.0475778 -0.0538343 --0.0132011 --0.0265343 -0.0407197 --0.0149464 --0.0245426 --0.0682261 --0.0498007 -0.0349715 -0.0255973 --0.0335571 -0.0101481 --0.0533517 -0.058488 --0.0413183 -0.0299984 -0.0385269 --0.048351 --0.0612086 --0.0117432 -0.0434811 -0.0481895 -0.0325259 -0.0152891 -0.0405107 --0.0254712 --0.0070318 --0.0524115 -0.0118121 --0.0169578 --0.0760339 --0.0118725 -0.00329876 -0.0464677 -0.0625458 --0.00577953 --0.0084867 --0.0905685 -0.0314719 -0.00320766 -0.0526082 --0.0199165 --0.00550051 -0.0578296 -0.0485207 -0.0480139 --0.0323198 --0.0403309 -0.00550934 -0.0199251 -0.0473602 -0.041703 -0.0263159 -0.0340114 --0.00304452 --0.0148387 --0.0427136 --0.0383613 --0.0520173 --0.0236631 --0.00286894 --0.0140932 --0.0579655 -0.0329849 --0.0357299 --0.0309586 -0.0471167 -0.0385892 -0.0845566 -0.00604228 -0.0293864 -0.00876347 --0.0690715 -0.0362908 -0.0401097 -0.0061421 --0.00976283 -0.0150543 --0.020486 -0.00598867 --0.0241478 -0.0128888 --0.0122363 --0.104285 -0.0111565 --0.0540031 -0.05456 --0.0833085 --0.0141667 -0.0081779 --0.0514089 -0.047325 --0.0127118 --0.069442 --0.0500842 --0.0655754 -0.0439354 -0.0315322 --0.0506555 -0.0426645 --0.0464133 -0.00145924 --0.0338997 -0.0845973 --0.0372766 -0.0152539 -0.0675851 --0.0157428 --0.0895098 --0.0627941 --0.00267933 -0.060361 -0.0225061 -0.0796491 --0.0100768 --0.0383326 --0.0346338 -0.0743169 --0.00661934 -0.0605537 --0.0136334 -0.00921036 -0.00111497 --0.00779411 -0.0864809 -0.133174 -0.00869205 -0.00385699 --0.0391131 -0.0235531 -0.120059 --0.0173511 --0.0371515 --0.126035 -0.0265841 -0.0235414 -0.0817812 --0.00297347 -0.0749112 --0.063662 -0.0302885 --0.0381555 -0.0677504 -0.000795626 --0.038354 -0.0124479 --0.0257224 -0.000740247 -0.0229896 --0.0773195 --0.0196852 -0.0678222 -0.00413316 --0.0287122 --0.0225635 --0.0812582 --0.039426 -0.00904845 -0.080532 --0.0753568 --0.0320307 -0.0168625 -0.0381275 -0.0402085 -0.0188846 -0.0480979 --0.0519161 -0.0215627 --0.0983582 --0.00326667 -0.0178776 --0.0325738 --0.0603907 -0.00590501 -0.0525006 -0.0267874 --0.0457832 -0.106086 --0.0327906 --0.0559085 -0.0719687 -0.0563941 -5.90862e-05 --0.0147231 --0.0269197 --0.0299485 --0.0102877 -0.0175696 --0.0204104 -0.00966931 -0.0271478 -0.0353184 -0.0102094 --0.108641 -0.0103975 --0.00194199 -0.0305523 -0.0360344 --0.00415016 -0.0473932 --0.0286901 --0.0326801 -0.00882914 -0.0626121 -0.0395906 -0.0834857 --0.00604832 --0.0298424 --0.0488262 -0.061472 --0.0551069 -0.0390884 -0.0463306 -0.114865 -0.0191492 --0.00360931 -0.0577025 --0.07433 -0.0279576 --0.028071 -0.0122939 -0.0465265 -0.0262284 --0.0124815 -0.000184099 --0.0123696 --0.0716855 --0.0396756 --0.0163375 --0.124655 -0.0107702 --0.00605322 -0.00222393 -0.0430499 --0.0476746 -0.0313478 --0.0274384 -0.043985 -0.0393315 -0.0483244 -0.0549831 --0.00892554 --0.0719285 -0.127454 -0.0148649 -0.00678066 --0.00400934 -0.0332492 -0.0225342 --0.00785655 --0.0540254 -0.0590218 -0.00708743 -0.0705415 --0.0546309 -0.0154343 -0.0350463 --0.0281767 -0.0164562 -0.0452144 --0.00432672 --0.0714107 -0.005236 -0.00192226 --0.0653135 --0.0790167 --0.0502342 --0.00203122 --0.00169245 --0.0318751 -0.0460346 --0.0492592 -0.016332 -0.0784894 -0.0104387 -0.00646815 -0.0603417 -0.00756774 --0.0256594 -0.0539147 -0.045073 --0.0473658 -0.0336266 --0.0242721 --0.00590017 --0.0128016 --0.0689924 -0.0333434 --0.0416415 -0.010043 --0.102606 --0.00154711 --0.0188846 -0.0127831 -0.0516829 -0.056809 -0.0917775 -0.0482742 -0.0153213 -0.0374703 -0.0844906 -0.00870994 -0.0229129 -0.0981059 -0.0661454 --0.095045 --0.0300297 --0.064391 -0.024825 --0.0127669 -0.0144422 -0.0730036 --0.0337734 --0.00836916 -0.023231 --0.0342839 --0.0106265 --0.0249834 -0.0602662 -0.00528559 --0.0453959 --0.0566196 -0.0379208 -0.0269915 -0.104807 --0.0594906 --0.0941577 --0.115816 -0.0346923 --0.0935962 -0.0887933 -0.0243777 -0.0507932 -0.0619868 --0.0390552 --0.00548888 -0.0308145 --0.0019203 -0.00328525 --0.0364874 --0.084052 --0.00901778 --0.0431972 -0.112382 --0.0690817 --0.0230918 --0.0500673 -0.00199765 -0.0316912 --0.0281246 -0.00379978 -0.00441211 -0.0522747 -0.101861 -0.0626973 --0.0943123 --0.0190211 --0.015126 -0.023397 --0.0716952 -0.0720806 -0.0314407 -0.0265359 -0.0218796 -0.101668 --0.0404153 --0.0155338 -0.00262506 -0.0182872 -0.0188548 -0.0221875 -0.049739 -0.00721325 -0.12527 -0.0331951 --0.106589 --0.00719455 -0.00386567 -0.0415005 --0.0678793 -0.126037 -0.00413518 -0.0777287 -0.00966456 --0.0208272 -0.0425429 -0.017693 -0.00867715 -0.0782689 --0.0935295 --0.072969 --0.0433201 -0.0424529 --0.0811893 -0.0518979 -0.0212449 --0.00411168 -0.110618 --0.0852836 -0.0213149 -0.0520095 --0.0858973 -0.0108065 -0.0262493 --0.140289 --0.0991776 -0.0289071 --0.00403373 --0.0282576 --0.00498144 --0.00715829 -0.0414699 --0.044161 -0.0657181 -0.0406092 --0.00229254 -0.0362634 --0.0604332 --0.091669 -0.0578836 --0.011782 -0.0469685 -0.0382448 --0.00142743 -0.0321111 --0.067099 --0.0780606 -0.0512904 -0.108138 --0.0516378 --0.0178059 -0.0702224 -0.0310902 -0.0460095 --0.00176363 --0.0195182 -0.0162067 --0.0190516 -0.0819224 --0.043873 --0.0487291 --0.0771353 --0.0300962 -0.00171244 -0.0100978 --0.0739681 -0.0808442 --0.0100638 -0.0251279 --0.0126701 --0.0214257 -0.0978447 --0.055281 -0.0202957 -0.00413608 -0.0287613 -0.0902988 -0.0455007 -0.00722397 -0.0343579 --0.0697424 --0.0110885 --0.0514986 --0.0377952 -0.00160459 -0.0181177 -0.0120254 --0.039819 --0.00888186 --0.018111 -0.0138082 -0.0556771 -0.0508435 --0.0447888 --0.0116095 --0.0727599 --0.0112346 -0.0554425 -0.142017 --0.0320336 -0.0978173 -0.0323698 --0.013391 -0.00742477 --0.0404509 --0.0177349 --0.0413015 --0.117515 --0.0281348 --0.0867094 -0.0712763 --0.0475029 -0.0631249 --0.0423825 --0.0559732 --0.0434793 --0.0599527 -0.012133 -0.0266741 -0.0140811 -0.0016788 --0.0683616 --0.00418309 --0.0350758 -0.0398419 --0.00108365 --0.079993 -0.122377 --0.0555996 -0.00843577 -0.0323776 --0.0981133 --0.0350137 -0.04216 --0.0223939 -0.000517799 --0.0639835 --0.0177725 -0.0458664 -0.0608117 -0.0827156 -0.0223577 -0.0617309 --0.000373757 --0.0369021 --0.0257678 -0.00012602 --0.0410408 -0.149126 -0.0487257 -0.0604781 --0.0324143 -0.0602373 --0.0358251 --0.11166 --0.023995 -0.0437248 -0.0698581 -0.0184059 --0.0368685 --0.00897759 --0.0205687 -0.0480052 -0.0146543 --0.0130625 --0.0229409 -0.0580002 --0.11301 --0.0477409 --0.0253964 -0.0322646 -0.0562736 --0.0262455 -0.0152142 -0.015383 --0.0490333 --0.0781316 --0.0230095 -0.045513 -0.000143739 --0.0127082 --0.0277086 -0.0258982 --0.0259329 -0.0381763 --0.0429486 -0.0577896 -0.110792 --0.00155392 -0.0374822 -0.0316051 --0.00716994 --0.0185293 --0.0132382 -0.0123386 --0.0360802 -0.021901 -0.096671 -0.016682 -0.0663739 -0.079181 -0.00877923 --0.0249553 -0.0256076 --0.0235725 -0.0424681 --0.0620681 -0.016103 -0.00253413 --0.0309854 -0.0511839 -0.0180196 --0.00868809 -0.0743271 --0.0590732 -0.133368 -0.047945 -0.0294667 -0.00985186 --0.00501972 --0.0336153 -0.0343464 --0.0623623 --0.0284572 --0.117417 -0.00282898 -0.0309515 -0.132332 --0.0834254 -0.00165785 --0.0949274 -0.0464701 -0.0548557 --0.022691 -0.00589863 -0.00903981 --0.0185913 --0.0158783 -0.01349 -0.0508697 -0.0356209 --0.0164292 --0.0247323 -0.0211546 -0.101795 -0.0253278 --0.0749715 --0.030031 -0.000944357 --0.0169014 -0.122218 -0.0136966 -0.0299192 -0.0207804 -0.0430609 --0.00956092 -0.0181087 -0.0673114 -0.0500231 -0.00303689 --0.160579 -0.00102815 --0.00414263 -0.00602305 -0.0532788 -0.0510427 --0.0651753 -0.0633906 -0.0539483 -0.0219983 --0.0532925 --0.0232039 --0.0506686 --0.00151074 --0.00793539 --0.0243236 -0.0321739 --0.00512884 --0.00847383 --0.00654381 --0.0163362 -0.0480048 -0.00264916 -0.0031429 --0.0080483 -0.0475718 --0.0832987 --0.0511437 --0.111865 --0.0340935 -0.0252047 -0.0584719 -0.0847083 -0.0896284 --0.0808642 -0.0489821 -0.0279487 -0.0233527 -0.026922 --0.00385973 --0.0441974 -0.042844 -0.00537886 --0.0876485 --0.0305099 --0.00142023 --0.0334599 --0.043859 -0.0542708 -0.0617874 --0.0231496 --0.0082787 --0.124005 --0.0321726 -0.0654275 -0.0746536 -0.0446509 -0.0211521 -0.0381199 -0.000664379 --0.0753001 -0.00767629 --0.0579056 -0.0111545 --0.0149006 -0.0912313 --0.0241779 -0.027646 -0.126197 --0.0241551 -0.0180196 -0.00282959 -0.0126611 -0.0559023 --0.0595767 --0.0665718 -0.00840474 -0.0694376 -0.0282412 --0.107555 -0.0313366 --0.0142997 -0.0602702 --0.0442781 -0.0143759 --0.0197688 -0.0748995 --0.0613939 --0.105644 --0.0319296 -0.0540482 -0.0432195 --0.0786591 -0.0715267 -0.0188044 --0.088586 -0.0519298 --0.0504812 --0.0354872 -0.00921231 --0.103642 --0.0406777 -0.00443668 --0.112332 -0.0518808 -0.0263522 -0.0674745 --0.0137167 -0.0207818 -0.0387225 -0.0257482 --0.0281783 -0.0456188 --0.000967722 -0.0470386 -0.0439702 -0.0701227 --0.0407412 --0.058168 -0.00832874 --0.0209234 -0.00287498 -0.00232676 -0.0239571 -0.0031702 -0.0572461 --0.0838214 --0.0566174 --0.00059114 -0.0208961 -0.122258 --0.0276951 --0.0742069 -0.02701 -0.0227129 -0.0366222 -0.0528113 -0.0379147 -0.00964162 --0.0696027 -0.0129563 -0.109348 -0.0117154 --0.00656321 --0.0797612 --0.00293677 --0.0713085 --0.0152017 -0.0184368 -0.0520081 -0.0409398 --0.0985183 -0.00245467 --0.0605031 -0.000679231 --0.0823747 -0.00376432 --0.0205041 -0.0125091 --0.052896 -0.0371197 --0.0508878 -0.0506937 --0.0518654 --0.0554543 -0.00301325 -0.101961 -0.0137089 --0.0841373 -0.0211249 --0.00095342 --0.111918 -0.0560575 --0.0343555 -0.0603712 --0.0415945 -0.0340965 -0.0772198 --0.0618846 -0.0449431 -0.0328231 -0.0427948 --0.0392223 -0.0405568 --0.065019 -0.00704184 -0.08896 --0.0415855 --0.0346099 --0.102877 --0.0668884 -0.00167289 -0.0115239 --0.0784156 --0.0367986 -0.0794223 --0.083813 -0.0207651 --0.0922696 -0.032622 --0.0564469 --0.0191306 -0.00372159 -0.0703954 -0.0344868 --0.0118561 --0.00867276 --0.0199611 --0.0180552 --0.0193242 --0.0418228 --0.0112335 --0.0628787 --0.0385499 -0.0592667 -0.00335084 --0.0963234 --0.00529464 --0.00124509 --0.0825482 -0.0123245 -0.00527344 -0.0425923 --0.0349503 --0.0403231 -0.0369064 --0.0517783 --0.0947018 --0.0193266 -0.00296198 -0.028457 --0.0523883 --0.0603493 -0.0115136 --0.0677561 -0.0438399 -0.041308 -0.0691052 --0.00372189 --0.0269424 --0.0209048 --0.0060302 -0.0288286 -0.0795845 -0.0220045 --0.0385015 --0.0628388 --0.0679172 -0.0293315 --0.0957915 --0.0215724 -0.0154203 --0.0603666 --0.0604412 --0.0448361 -0.0450637 -0.0147882 -0.000833303 --0.0783084 --0.0234199 --0.0588435 -0.0350358 -0.0529128 -0.0851701 --0.0308576 --0.0603088 --0.0467224 -0.0054685 --0.0347272 --0.0220188 --0.00820114 --0.0004433 --0.0297849 --0.00374287 -0.0604819 --0.113956 --0.0579358 --0.0379902 --0.0364771 -0.0431781 -0.100422 --0.101688 --0.0440937 -0.0278644 -0.0418802 -0.0617283 -0.116818 --0.00285612 -0.0913041 -0.00235206 --0.0593029 -0.0117466 -0.0189229 -0.112104 -0.0330029 -0.00511151 --0.0323601 --0.0257574 --0.000865014 -0.0680709 --0.0652407 -0.0599231 -0.0293038 -0.0385039 --0.026139 -0.025455 -0.0154553 --0.0326621 --0.0962384 --0.00654115 -0.00384147 --0.024344 -0.0231188 --0.0124439 -0.0250654 --0.0423808 --0.0332623 --0.0281933 --0.0873585 -0.0312047 --0.0477998 -0.0609449 --0.0448138 -0.0627634 --0.00259925 -0.0693387 --0.00937643 --0.00382001 -0.078539 --0.0706381 --0.0104436 --0.0287858 -0.0466733 -0.0337231 --0.0194928 --0.0157525 -0.105198 -0.0357719 -0.041845 -0.0178365 --0.0347746 --0.0610229 --0.0682051 -0.0399916 -0.00209077 --0.0758217 --0.0363022 --0.0782817 -0.0202461 --0.00707245 -0.0375091 -0.0926756 -0.0306647 --0.114431 -0.00699316 -0.0186861 -0.0192882 --0.0712424 --0.0431945 --0.00528695 --0.0323166 -0.0383788 --0.0165808 -0.0135655 --0.0206991 --0.0488047 --0.0333213 --0.00242367 -0.0125307 --0.0105838 --0.00323164 -0.012253 --0.0191372 -0.0666454 -0.0527133 -0.114191 -0.0203786 --0.0385924 -0.0328121 -0.0354397 -0.0400811 -0.0273481 -0.0475744 --0.11643 -0.0415976 -0.0778532 -0.0305601 -0.106072 -0.0533686 -0.0643767 --0.0508947 --0.0484782 -0.0277855 --0.0185653 -0.0468816 -0.0364505 --0.0501055 -0.0544357 --0.054843 -0.0348576 --0.0111893 -0.042305 --0.119088 -0.00406959 -0.0262768 -0.0232464 --0.0147558 -0.022621 -0.0475898 -0.0677832 -0.0974042 -0.0377618 -0.0796694 -0.0203765 -0.02273 -0.0154974 --0.0447131 --0.0358916 --0.00535414 -0.0330996 -0.00147271 --0.00690863 --0.0419354 -0.0136274 -0.010544 --0.0375404 -0.0400142 --0.101538 --0.106875 -0.0269812 --0.0205581 -0.0450943 --0.0261003 --0.0625785 -0.0235419 --0.0373362 --0.00151003 -0.0328729 -0.0629763 --0.0184266 --0.0169703 -0.00895755 --0.0327049 -0.0220191 --0.00229557 --0.0826229 -0.00849446 --0.0591182 --0.0510478 --0.0204108 --0.0224388 -0.0155769 -0.0071101 -0.0585691 --0.104573 --0.0620266 -0.043458 -0.0193583 --0.0691463 --0.00103242 -0.0303155 --0.0100387 -0.0276623 -0.00428771 -0.0664203 --0.0522989 -0.0757445 --0.0300398 --0.0333096 -0.0190879 --0.0107763 -0.0544972 --0.00118123 -0.0548258 --0.0150109 --0.0529225 --0.076042 --0.0797041 -0.0790092 -0.0680584 -0.0396675 --0.0358719 --0.018993 -0.0102117 -0.0404832 --0.051516 --0.00741161 --0.0265446 -0.0256807 -0.0371928 --0.0563137 -0.0439541 -0.0597335 -0.00569872 --0.0384265 -0.0800604 -0.0419329 --0.130609 -0.0602854 --0.00418426 --0.0949238 -0.0494182 -0.0242035 --0.0845623 --0.021595 -0.0140512 -0.0067731 -0.0232459 -0.0516079 -0.0249566 -0.0165316 -0.0627292 --0.0250425 --0.0484488 -0.0612648 -0.036803 --0.0417695 --0.0284119 -0.0367048 -0.0109155 --0.105227 --0.0192706 --0.0249274 -0.0367502 --0.0160718 --0.00622226 -0.09555 --0.0433656 -0.0241911 -0.0172772 --0.0754129 --0.0101162 -0.0173945 --0.0723202 -0.0361545 -0.0112137 -0.0143918 -0.0238997 -0.0786085 --0.0615067 -0.129965 -0.00836252 --0.0257998 --0.0843859 -0.12581 --0.0165107 -0.0147566 --0.114225 --0.0994545 -0.00166981 --0.0134965 --0.072974 --0.038104 -0.00271102 --0.0946026 -0.0274339 --0.0533049 --0.0325947 --0.0692376 --0.045589 --0.0255162 --0.00615377 --0.0129905 --0.0470982 --0.0820448 --0.141674 --0.0352507 -0.0607633 -0.0634122 --0.0712515 --0.0597402 --0.032585 --0.0387417 -0.0108074 --0.0360053 --0.0336549 --0.07786 --0.0439385 --0.0296763 -0.0903366 -0.0113577 -0.0230389 --0.0409234 --0.0330215 -0.0751076 --0.064107 -0.0556802 --0.0132375 --0.00737479 -0.0346377 -0.00630127 --0.0477234 --0.0165338 --0.0417301 -0.00357992 -0.0392007 --0.0150155 -0.0308024 -0.0257252 --0.0269344 --0.0131428 -0.00223291 --0.13241 -0.0248566 --0.008567 --0.0204292 --0.0282225 -0.00956189 --0.0121212 -0.0663859 --0.0305167 --0.0196167 --0.00640447 -0.00391553 -0.00794017 -0.0817238 -0.00611529 --0.00962663 -0.0824469 --0.0459616 --0.00759197 --0.052851 -0.057981 -0.0658843 --0.0545048 -0.00529094 -0.0158894 -0.0444953 -0.0538936 -0.0142587 -0.0529371 -0.0766247 --0.0280685 -0.00279919 --0.00724973 -0.016296 -0.134888 -0.0130569 -0.00964303 -0.0447409 --0.0173433 -0.0580239 --0.00831029 --0.0881356 --0.0620989 -0.007487 --0.0564398 --0.070528 --0.0951272 -0.0646839 --0.0153936 -0.0242447 -0.0501138 -0.0204586 -0.00670441 --0.00307432 --0.0233704 -0.0611852 --0.0318487 --2.91732e-05 -0.0499768 -0.0686644 --0.0514042 -0.00192132 --0.0436511 --0.0313183 -0.0398277 --0.0541356 -0.0199095 --0.0269583 -0.073377 --0.0283653 -0.0584004 --0.0920554 -0.0438192 --0.0341348 --0.0142334 -0.0797785 --0.0224646 -0.0892526 -0.0420895 -0.045545 --0.0215839 --0.0617986 -0.0487068 -0.0905168 -0.0198048 -0.00616405 --0.0066133 --0.0341143 --0.00581895 --0.0566304 -0.053275 --0.0189797 -0.0950343 --0.0506747 --0.019814 -0.0563572 --0.0355424 -0.0126258 -0.0221684 -0.0270209 -0.0581208 --0.0896552 --0.00458021 --0.0592051 -0.00101096 -0.0209486 -0.0429234 --0.00251567 -0.0187874 --0.0312989 --0.052203 -0.0592212 -0.0712379 -0.0133556 -0.0250217 -0.0253658 -0.0166757 -0.0124203 -0.02112 --0.0606589 -0.00133144 -0.0071951 --0.0120629 -0.0452345 -0.0172216 --0.031723 --0.0546582 -0.014032 --0.0446192 -0.00122116 -0.0066932 --0.0441687 -0.04033 -0.0153363 -0.0318899 -0.0283358 --0.0146611 -0.0338408 --0.0148568 --0.0299418 -0.0281928 -0.039122 -0.0681985 -0.0358925 -0.0383603 -0.0121805 --0.00526761 -0.00537711 --0.0409381 -0.0629331 --0.0453961 --0.0592906 -0.00331556 --0.0351702 -0.0506938 -0.0576111 --0.0391483 --0.00423777 -0.0109747 --0.145929 -0.000741362 -0.00617243 --0.0075679 -0.00126248 --0.0268655 --0.0311104 --0.0338032 -0.0061012 --0.00998103 -0.0120042 -0.0503708 --0.00684357 --0.0204154 -0.0111694 -0.0864096 -0.0241226 --0.0306876 --0.00888692 --0.0704627 -0.0532394 --0.124828 -0.0892248 -0.00767825 --0.0345031 -0.0198714 -0.0676243 -0.0689278 --0.0406517 --0.0750572 --0.078576 -0.0174985 -0.0503325 -0.0620382 -0.0137914 -0.049139 --0.0403099 --0.097898 -0.0846542 -0.0352436 -0.0535684 -0.019453 --0.00849907 -0.0105384 --0.00689366 --0.0120183 -0.117627 --0.0446466 --0.022469 --0.0872385 --0.0404536 -0.0760685 --0.0683485 -0.0460615 --0.046119 -0.0385043 --0.0531282 -0.0216648 --0.0256595 --0.0240323 -0.00696063 -0.00466298 -0.00711933 --0.0224619 -0.0160882 -0.0588448 -0.0636249 --0.0171924 --0.0120576 -0.0117466 --0.0158565 -0.0318437 --0.0154433 -0.000483853 -0.0185121 --0.049454 --0.0485973 --0.00299364 --0.0190438 -0.119908 -0.0426709 -0.0859447 --0.0170646 --0.0384242 -0.0149732 --0.0332969 --0.055652 -0.017322 --0.0179127 -0.0132757 -0.0372452 -0.0577872 --0.010443 -0.0306882 --0.0464669 --0.0488454 --0.031938 -0.00332521 -0.00488653 --0.114179 -0.032533 -0.0806317 --0.0537141 -0.0507771 --0.0678005 --0.0643759 -0.0814045 -0.111224 --0.00393114 --0.0227785 -0.0633846 -0.03517 -0.0305936 -0.00330753 --0.0594194 -0.110262 --0.0531844 --0.0162101 -0.0117841 --0.0882272 -0.00233041 -0.126821 -0.0630728 --0.00248282 --0.0573308 -0.0118105 --0.0199179 -0.0237823 -0.0837332 -0.0504855 --0.0035919 -0.039002 -0.0721941 --0.0480657 -0.0257929 -0.122791 -0.053978 --0.0878738 --0.0045287 --0.043292 --0.0798042 -0.023831 -0.0109599 --0.0614485 --0.0314302 -0.0253606 --0.0197445 -0.0422424 -0.0152975 -0.0781016 --0.00807077 -0.0465451 --0.0119481 -0.0676996 --0.0441627 -0.0306733 -0.0260727 -0.0527923 -0.053086 --0.00670847 --0.0556091 -0.0220862 -0.0322406 --0.0396194 --0.0630865 -0.0634513 --0.0118858 --0.0979325 -0.00764784 --0.0470356 -0.0629822 -0.0432349 -0.0373953 --0.0476567 --0.0189613 --0.0353804 --0.0673992 --4.49397e-05 -0.0352022 --0.0573575 --0.0273572 -0.0162905 --0.0441799 -0.0358075 -0.0356206 --0.0105419 --0.0191967 -0.0728123 --0.0626724 -0.043189 -0.0103805 --0.000628094 --0.0418621 -0.0635224 -0.0868019 --0.0209049 --0.038494 -0.0406679 --0.0228766 -0.0192992 -0.0729756 -0.0750828 --0.00568642 --0.0234247 -0.0143658 -0.0431591 --0.0170174 --0.00654259 --0.0322092 -0.0439329 --0.0662468 -0.0353619 -0.0687263 -0.0119127 -0.0758413 -0.0237102 -0.045836 -0.056679 -0.099709 --0.0173749 -0.0654559 -0.0535423 -0.0398897 -0.0121022 -0.0299047 -0.00956484 -0.0335347 -0.053818 --0.0057415 --0.0472183 --0.0127746 -0.126258 -0.0324477 --0.0930987 -0.0295944 -0.0168358 -0.0809543 --0.00935025 --0.0495968 -0.00624163 --0.133415 -0.049557 --0.00686909 --0.0205325 --0.111778 -0.0213716 --0.102716 --0.0484798 -0.0105146 -0.0349174 --0.0809591 --0.0919312 --0.0100558 --0.0418565 -0.0201508 -0.0129149 -0.0148083 --0.0448606 --0.013791 --0.0249632 --0.066859 --0.0107761 --0.00917248 -0.0343917 -0.113676 -0.0184242 --0.00962954 -0.0173404 --0.0772364 --0.0535081 --0.037212 -0.0245 -0.00749204 --0.0342919 --0.0768127 -0.0997918 -0.0457968 -0.0759185 --0.0629592 --0.00583464 --0.0424321 --0.0448339 --0.0335001 --0.070651 --0.0127161 --0.0523635 -0.0160703 -0.00326094 --0.0329314 --0.0210938 --0.0811282 -0.08914 --0.0840605 -0.0267635 --0.0570577 -0.00731635 --0.0229001 -0.00678075 --0.0893901 --0.0172501 -0.0695876 -0.0795858 --0.102835 --0.0193327 -0.0169019 --0.0498841 --0.0248084 -0.0869459 -0.0354955 --0.0347682 --0.0217934 --0.0445631 --0.0564275 --0.0698072 -0.031717 -0.134014 -0.0569811 --0.0231922 --0.067523 --0.0352672 -0.0112533 -0.0376132 --0.0142356 -0.0390477 --0.0572759 -0.0611228 --0.0199954 -0.0876632 --0.0321128 --0.035492 -0.0537286 --0.0367804 -0.0595589 -0.0102849 -0.0407268 --0.0301376 -0.0460336 -0.038926 -0.0160622 --0.0495461 -0.0781879 -0.0457158 -0.0209141 --0.011792 -0.00474632 --0.0243308 --0.00607882 -0.0232758 -0.0504677 -0.00502595 --0.0322263 -0.00805881 -0.0557425 --0.0039097 -0.0598228 -0.0774306 --0.043426 -0.003188 -0.00438787 --0.0745541 -0.0155322 --0.0763659 -0.106699 -0.014825 --0.00311423 --0.0110517 --0.0514584 -0.00967001 -0.090972 --0.0734452 --0.00610956 --0.0383436 -0.0253398 --0.0428522 -0.0228583 --0.0786486 --0.093885 -0.0416413 -0.023031 --0.0198129 --0.0472244 -0.0400614 --0.021519 -0.051753 -0.063099 -0.0153859 -0.0439958 -0.0799641 --0.0092949 --0.030295 -0.0205097 --0.0287128 --0.0470057 --0.0134733 --0.0456947 --0.0138184 -0.0237441 --0.00333616 --0.00572977 -0.00384981 --0.0394657 --0.0241988 --0.13422 --0.0321178 -0.00591524 -0.00158104 --0.0975978 --0.055462 --0.0959494 -0.0220001 --0.0168376 -0.0442734 -0.00455535 -0.0023509 --0.0656092 --0.0552473 -0.00786831 -0.0169616 -0.0321149 --0.0211868 --0.0522187 --0.0250433 -8.82444e-05 -0.0848078 -0.129417 -0.00546166 -0.0539281 -0.00661255 --0.0479955 -0.0105246 --0.0260234 --0.055195 --0.0220269 --0.051851 --0.0657408 -0.0284758 --0.00187366 --0.0382325 -0.0282966 --0.021617 --0.0583355 -0.0266098 --0.0505905 --0.0158461 --0.00247075 -0.0383635 -0.0633756 -0.0537732 -0.0811408 -0.0381857 -0.046126 --0.0190096 -0.0192388 --0.02946 --0.023185 --0.0181451 --0.00648678 --0.0587806 -0.0565654 -0.0429921 -0.0365329 --0.0182316 -0.0136161 --0.00179385 --0.0234527 -0.076529 -0.0515972 -0.0743302 --0.00543192 --0.020001 -0.073199 -0.0302823 --0.0700411 -0.0427547 --0.00319069 --0.0653778 -0.0360985 -0.0425543 --0.0555503 -0.0410046 -0.0467813 --0.0217701 -0.00791688 -0.0643255 -0.00824021 -0.00618331 -0.138897 -0.0361899 --0.0933425 --0.0737382 -0.134217 --0.0356177 -0.00267339 -0.156992 --0.00645235 --0.0461473 --0.00944228 --0.0657304 -0.0677783 -0.00232302 --0.0156938 --0.00859276 -0.064695 --0.0103985 --0.00033794 -0.0919674 --0.06844 -0.00192137 -0.0254857 -0.0413218 -0.0395509 -0.0198861 --0.00250223 --0.0707644 -0.073391 --0.0626351 --0.00479982 -0.00526568 --0.00649227 -0.00200056 -0.091278 -0.00997972 --0.032114 -0.0193128 -0.0977035 -0.00574318 --0.000793538 --0.0136166 --0.0178938 -0.0281857 --0.0262175 --0.0340136 --0.038545 --0.00159325 --0.118189 -0.0401408 --0.028221 --0.00906968 --0.0981253 -0.0756553 --0.0690909 -0.00187012 -0.00961996 -0.00340845 -0.0762928 -0.0302751 --0.0276235 -0.00599995 -0.0687706 --0.00637412 -0.017703 -0.0421868 --0.00381551 -0.000545505 --0.0823894 --0.0653462 --0.00995993 -0.0577764 -0.0585849 -0.0162898 --0.00654832 -0.0480789 --0.000382911 --0.0638596 -0.0281021 -0.0279135 -0.0354903 -0.000279709 -0.0381989 -0.0641679 -0.0147524 -0.056676 --0.0998269 -0.0419434 -0.00173288 -0.0329679 --0.00736867 --0.013848 -0.0110585 -0.0317087 --0.0648455 --0.0607966 --0.0396188 -0.00914849 --0.0649678 -0.0527732 -0.0111677 --0.114718 --0.0772992 -0.0374955 --0.00862491 --0.0209385 --0.0597696 --0.0221515 -0.0133322 --0.0610171 --0.0083245 --0.101928 --0.10961 -0.0146151 --0.00266471 -0.0828371 -0.075226 -0.0558764 --0.0441994 -0.0630398 --0.0247969 -0.0162143 --0.0532755 -0.0132063 --0.0347305 -0.0246399 --0.0637806 -0.0374064 --0.0636543 -0.0764929 -0.019072 -0.0755283 -0.0899851 --0.000265287 --0.0254599 --0.0569542 -0.00482584 --0.0230532 -0.0477963 --0.0327816 -0.0270887 --0.0401161 -0.0259335 --0.0176715 -0.0254481 --0.0401775 -0.0806566 --0.0487986 -0.0213667 -0.00579073 --0.0743712 --0.0291835 --0.0279731 -0.103026 -0.0403609 --0.0588951 -0.106157 --0.101133 --0.0567874 --0.0815219 --0.0193749 --0.0224393 -0.00488078 --0.0285271 --0.0138243 -0.00276693 -0.00543573 --0.00911548 -0.0195915 --0.027077 -0.0368433 --0.0674312 -0.0849614 -0.0292344 --0.000952281 --0.0778008 -0.0689477 -0.0751575 --0.102382 --0.138715 --0.0158197 --0.0254974 -0.0438627 --0.0372106 -0.0470279 --0.0793394 --0.0130725 --0.000786167 -0.032656 --0.0140908 --0.0508156 -0.0322901 --0.0468051 --0.0344205 -0.0149244 --0.0107088 -0.0155357 -0.066197 -0.0354624 --0.0263839 -0.0397676 --0.0231532 --0.0667418 -0.0212235 --0.0714555 -0.0499426 --0.0185048 -0.0448347 -0.0390534 -0.0422795 -0.0932922 -0.0412382 -0.0747429 --0.0149966 --0.0294966 -0.0764 -0.0448487 --0.0229853 --0.0730595 --0.0407467 --0.0113366 --0.0422764 --0.0295888 -0.0187732 --0.0129855 --0.0508946 --0.0164562 -0.0161639 -0.0863498 -0.0648167 --0.0876151 --0.0262835 --0.136957 --0.0191336 -0.101763 -0.102542 -0.0419278 --0.00203527 -0.00396668 --0.00889991 -0.0100477 -0.00713423 --0.0462902 -0.0607795 -0.117925 --0.0267435 -0.0323709 -0.0507163 -0.0210444 --0.0177312 --0.0424557 -0.00148447 --0.0024514 --0.0335918 --0.0676993 --0.0336571 --0.0575113 -0.0452747 -0.0384322 --0.00474298 -0.111298 --0.0259623 -0.0948548 --0.0351898 -0.0376756 --0.0261487 --0.00949918 -0.00535212 -0.0196439 --0.0568435 --0.014398 --0.0337091 -0.0411057 -0.0023544 --0.0292235 --0.0147885 --0.0307776 -0.0707986 --0.0794916 --0.0136525 --0.0731467 --0.013338 --6.01965e-05 -0.0572026 -0.0117978 -0.0715913 -0.00946412 --0.0675801 --0.0201061 -0.0249094 -0.0463157 -0.0247744 --0.0778163 --0.0739217 -0.0168825 -0.0605983 -0.0174181 --0.000373774 -0.000940348 -0.000403781 --0.00117796 -0.0296559 -0.0738831 -0.0672759 -0.00419004 --0.0518785 -0.00768867 --0.00233859 -0.025483 -0.0505175 -0.0595325 -0.0530369 --0.0629931 --0.0474421 -0.0300203 -0.0323481 --0.111047 -0.0280532 --0.0461415 --0.0870136 -0.103567 --0.0462264 --0.0169657 -0.040512 -0.00152664 --0.00106229 --0.021389 --0.00868027 --0.0634597 -0.0831523 --0.030989 -0.0617884 -0.0913899 --0.0549653 --0.0629095 -0.00435516 --0.0104835 --0.02941 -0.0339545 -0.030623 -0.0478674 -0.0836176 -0.0449769 -0.0551934 --0.0425747 -0.0182234 --0.0162407 -0.066104 --0.00956925 -0.0105777 -0.00697847 -0.00506675 --0.0447219 --0.0100127 --0.0828484 -0.00757368 --0.0113848 -0.00745957 -0.0501312 --0.0534459 --0.0433664 -0.0200321 --0.000385888 -0.0320047 --0.0541229 --0.00117414 --0.109871 --0.0157698 --0.0672847 --0.0142163 --0.0226845 -0.0186733 -0.0423384 -0.0647651 -0.0297758 --0.0175785 -0.0577371 -0.0431242 --0.0564551 -0.00520082 --0.0160186 -0.00872976 --0.00643099 --0.0679137 --0.0282802 -0.0459819 -0.0330093 --0.0226027 -0.01423 --0.0206131 --0.0255137 --0.0468438 -0.0177752 --0.0640278 --0.104942 --0.0901614 --0.111757 -0.0575034 -0.0785649 --0.002198 --0.0175597 --0.0325396 -0.0762114 --0.0177669 -0.00979011 --0.0575068 -0.00801119 --0.03808 --0.017594 -0.0184756 -0.0303422 --0.04649 -0.0298305 -0.0472769 --0.0574391 --0.00496938 --0.040595 --0.0132951 -0.0540719 --0.00984195 --0.0287813 -0.0361092 -0.0460818 -0.0228712 --0.0641989 -0.00347838 --0.0151012 --0.0473051 --0.00153488 -0.0170456 -0.0355761 --0.0387295 --0.0442758 -0.044925 -0.0280904 --0.00559088 -0.100319 --0.0014474 -0.0378456 -0.0190632 --0.00184145 -0.0347392 --0.00481197 --0.0359924 -0.0164148 -0.0413403 --0.0599486 --0.0478875 -0.00194032 --0.0549866 -0.0402643 --0.0153035 --0.0492061 --0.0323253 --0.0378569 --0.010433 --0.0227661 -0.0436976 -0.0525173 --0.00629409 --0.0775576 --0.0949332 -0.0214574 --0.0304592 -0.0328689 -0.037909 -0.0156652 --0.0274305 -0.0299054 -0.0632584 --0.0615336 --0.0341636 --0.0134978 -0.0444014 -0.011896 -0.0439905 --0.0152909 --0.00774618 --0.0333037 -0.0544973 --0.062764 --0.0228914 -0.038979 --0.0277556 --0.0704291 -0.0317476 -0.0141338 -0.00430629 --0.0429992 --0.0160519 --0.0191196 --0.0877244 --0.0133728 --0.0407072 -0.131655 --0.0576005 -0.0162588 --0.00872568 -0.0192282 -0.0529171 -0.0480496 --0.0328296 --0.055553 -0.0130271 -0.0622076 --0.00316039 -0.0184773 -0.0565214 --0.03283 -0.0955808 --0.0160121 --0.00290758 --0.0261836 -0.0349863 --0.0149305 -0.0128852 --0.0154972 --0.0719111 -0.0670932 -0.0968869 -0.00300671 --0.0301409 --0.00966774 -0.0343472 -0.0860819 -0.0509269 -0.0593469 --0.0113567 --0.0188484 -0.0462833 --0.00967628 --0.0477908 -0.00371783 -0.0182917 -0.0554852 --0.00905062 --0.00837935 --0.0761585 -0.0217366 -0.0201579 --0.0128504 -0.0808232 -0.0440619 -0.0759191 -0.0800175 -0.000823967 --0.0643817 -0.0108218 --0.0128896 --0.0286673 -0.0335532 -0.0159546 --0.00676096 -0.0567838 --0.0693839 --0.0698682 -0.00162937 -0.0656742 --0.0838695 -0.0241516 --0.123185 --0.0172867 -0.0148898 --0.00227571 -0.0427978 -0.0326575 --0.00527201 -0.0235679 --0.0286606 -0.040242 --0.103832 --0.0108821 -0.0936873 --0.0179362 -0.000829467 --0.0398377 -0.0833901 -0.0567597 -0.0156519 --0.00876201 --0.0555751 -0.0193251 --0.00136196 -0.00262265 -0.00619297 -0.0320074 -0.0728641 -0.0808214 -0.0217311 --0.0181351 -0.00172694 --0.00285176 -0.027034 -0.0438816 --0.100345 --0.000525974 -0.025541 -0.138319 --0.122102 -0.0544729 --0.0112643 --0.0683073 --0.0146059 -0.0139316 -0.0149482 -0.0460387 --0.044253 --0.043421 -0.060739 -0.0189464 -0.018198 -0.0210355 --0.0735393 -0.119622 -0.0174369 --0.0429269 -0.00866496 -0.0105686 --0.0196608 -0.0653283 -0.103318 --0.048798 --0.0117941 -0.0375327 --0.0172012 -0.00665473 -0.0289178 -0.0832237 -0.0452327 --0.0208785 -0.0277345 -0.0322145 --0.00758673 -0.0324057 -0.0271181 --0.027115 -0.034407 --0.0261389 -0.0982662 -0.0242109 --0.0113042 -0.0643927 --0.0136736 --0.0120734 -0.00561027 -0.0134454 -0.0166977 -0.066003 -0.0992193 -0.00796363 --0.0697425 -0.0107832 -0.0270631 --0.0703833 -0.0492282 --0.0382205 --0.0104535 -0.00351556 --0.0500985 -0.0248056 -0.0393966 -0.0232036 -0.112858 -0.0218349 --0.00264186 --0.0265676 --0.0348024 -0.0407069 -0.0242784 --0.0106718 -0.118402 -0.0176416 -0.0501083 --0.0546413 --0.0174012 -0.0832865 --0.0266812 -0.0274165 --0.0361799 -0.0413919 --0.00555536 --0.025961 --0.0986644 --0.0680262 --0.0443409 -0.126514 -0.0948381 --0.0786866 --0.0178713 -0.0477269 -0.0823489 -0.023543 --0.00321817 -0.054802 --0.0110625 -0.0323892 -0.00517185 --0.00456319 -0.00696322 --0.0746588 --0.0529362 -0.00365848 --0.0554622 --0.0330699 -0.0331287 -0.0548843 --0.0423424 --0.0185101 --0.00149809 -0.0229974 --0.0315025 --0.0816348 --0.0843011 -0.0207739 -0.0870901 --0.0409859 -0.0265261 --0.0385546 --0.141754 -0.00916275 --0.0460345 -0.0472329 -0.0707415 --0.0833255 --0.0445304 --0.0268427 -0.00267012 --0.0378148 -0.0439438 --0.119927 -0.0287388 --0.0201738 --0.0360275 -0.113965 --0.0787518 -0.0319704 --0.0658654 --0.0930387 -0.00398794 -0.0420883 --0.00493667 -0.0275561 -0.0269465 -0.0875567 -0.0029696 --0.0407275 --0.0384754 --0.0211589 --0.0323389 --0.0332362 -0.0792034 -0.0192216 --0.0790031 --0.0514626 --0.00182054 -0.05745 --0.00896203 -0.00323313 --0.0436334 --0.0752096 --0.00414503 --0.0957981 -0.000341184 -0.0206977 --0.0511399 --0.0762587 --0.0405917 -0.0133829 --0.000922908 --0.021281 --0.0967532 -0.0268613 -0.0155978 -0.057792 --0.0187567 -0.0653474 -0.0451274 -0.0276156 -0.0241667 --0.0161648 -0.014207 -0.0520322 --0.0529101 --0.011121 --0.000441543 --0.0385456 --0.0038904 --0.0243991 --0.076628 --0.00067096 --0.0160605 -0.0102563 --0.0090143 -0.044771 --0.00209347 --0.0214431 -0.0856161 --0.0313577 --0.0813456 --0.0335099 -0.0207182 -0.0812962 -0.0175818 -0.0258791 -0.0188143 --0.015311 --0.0672098 --0.000667354 -0.0522377 --0.0170904 -0.0615384 --0.0964799 --0.0184655 --0.00359626 --0.142627 --0.0405662 --0.0206033 -0.00098574 --0.0127014 -0.0552364 --0.0101518 --0.0296515 -0.0314442 -0.048538 --0.0248436 --0.109278 -0.0160494 -0.00732583 -0.00946369 -0.0226005 -0.0181909 -0.0629653 --0.0223709 --0.00589329 --0.0335586 --0.0644346 -0.0334515 --0.0221648 -0.0669994 -0.0437628 -0.0183007 --0.0345039 --0.0352168 -0.142537 -0.0272387 --0.0186662 --0.00814772 -0.000916006 -0.0141276 --0.0119841 -0.0132354 --0.0281106 --0.00653847 -0.0199909 -0.00945441 --0.0409042 -0.0881976 --0.00710435 --0.0445018 --0.019539 -0.0301542 --0.0266033 --0.0108821 -0.0356943 -0.0381626 --0.079062 -0.0451948 -0.0719656 --0.0581673 -0.0370614 --0.035567 -0.0340536 --0.0414599 --0.04999 --0.0352894 -0.0307118 --0.0367604 --0.0676658 --0.0380326 --0.0267269 --0.0118682 --0.0179904 -0.0112294 --0.0712012 -0.119578 --0.0683163 -0.0551391 --0.00844607 --0.0328877 -0.0795408 -0.0934483 -0.018679 --0.0429933 -0.0817395 -0.021126 --0.00842661 --0.00565095 -0.0362774 -0.0117785 --0.0300801 --0.0231849 --0.0133378 -0.066197 --0.0722907 --0.0262158 --0.0594843 --0.0891323 -0.0124102 --0.0560404 --0.00193716 --0.0704715 --0.00139651 --0.101782 --0.0482578 --0.0497845 -0.0465446 --0.0228251 --0.0032715 -0.0091417 --0.071225 -0.0483992 --0.0380771 --0.0436705 -0.0743259 -0.0802065 --0.0575329 -0.0896805 -0.0152856 --0.0304576 -0.0394244 -0.0580791 --0.0240919 -0.0442654 --0.0698731 --0.0372178 --0.046848 -0.0328618 --0.03168 -0.0252768 -0.0206522 --0.019366 --0.00427761 --0.0207707 -0.0414191 --0.118294 -0.0762618 --0.0105617 -0.0410748 --0.00914858 --0.00813169 -0.0630516 -0.0614993 --0.0418394 -0.0377746 --0.0955405 -0.00361421 -0.0775134 --0.0251226 --0.0136758 -0.0623496 -0.0225187 -0.0165877 -0.0140362 --0.0015595 --0.00571857 -0.0104797 -0.00840673 -0.0219921 --0.082057 --0.0732543 -0.00543695 -0.0477016 -0.0677954 -0.112316 --0.0889016 -0.0421263 -0.0796697 --0.0268362 --0.0752689 -0.0314632 -0.0827511 -0.0168591 -0.0757081 -0.0497911 -0.0693662 --0.0338934 -0.0511818 -0.0337108 --0.00241211 --0.0506062 --0.0172201 -0.0118343 -0.0131396 -0.0171689 -5.16351e-05 -0.00580497 --0.0420325 -0.0292274 --0.00372009 --0.0822943 -0.0512918 --0.0476137 --0.0330722 --0.0547154 -0.0123368 -0.0164597 -0.0213754 --0.0209244 --0.00316661 --0.0182255 --0.057628 --0.00344691 -0.0782333 -0.0405192 --0.0189151 -0.00504635 --0.0397728 --0.0519886 --0.0154606 --0.0160117 -0.00947274 --0.0112453 -0.0377391 --0.0704061 -0.0110521 --0.0574633 -0.0194825 -0.0422601 -0.0267521 --0.0243157 -0.0051243 -0.0915281 --0.00370255 --0.00270293 -0.0359903 --0.0175129 -0.038639 -0.0401125 --0.0206073 -0.0488204 --0.000104704 -0.0621151 -0.0190886 -0.0539615 -0.0547369 --0.0324551 --0.0321436 -0.0109328 -0.0646508 --0.0234727 -0.0296272 -0.0416493 -0.002558 -0.0472271 --0.0911381 -0.0246534 --0.0615735 --0.0282171 --0.0378398 -0.0444236 -0.0931327 -0.0162962 -0.0607541 -0.022532 -0.0558083 --0.0478634 --0.0438867 -0.0786054 --0.0393094 --0.0575758 --0.013208 -0.0662357 --0.0495304 -0.0641719 -0.0102741 -0.113821 -0.0439453 -0.0383394 --0.00866606 --0.112521 --0.102254 -0.016433 -0.0134596 -0.0599535 -0.0992846 -0.0250147 -0.0205038 -0.119341 --0.0223787 --0.0298108 -0.0572768 -0.0359011 -0.0266539 -0.0396047 --0.0817537 --0.0082648 -0.0789893 -0.0375544 --0.0134923 -0.0779801 -0.0652817 --0.0371452 -0.0726835 -0.0101606 -0.00222593 -0.0273648 -0.030578 --0.0483436 --0.0078266 -0.0779055 -0.0782942 -0.0471937 --0.0277154 -0.0162272 --0.0203646 -0.0364772 -0.0732111 --0.0470069 --0.0282608 --0.0965394 -0.0891792 -0.0113181 -0.00256347 --0.0745854 --0.0467025 --0.00619453 --0.0872629 -0.0248243 --0.0163632 --0.0345573 --0.0324977 --0.0526784 -0.00229335 --0.0433008 --0.0269764 --0.0746308 --0.0153582 -0.107822 --0.00646459 -0.0465121 -0.0860825 --0.00502522 --0.0412004 --0.030225 --0.0301484 -0.0121935 --0.0800918 -0.0416212 --0.0420884 --0.015847 --0.0579445 --0.00477212 --0.0468756 --0.0142765 --0.0452261 -0.0605173 --0.0154907 --0.00223441 -0.0813024 --0.0336047 -0.0541018 --0.07967 -0.0477883 --0.0284414 -0.0521992 --0.00938165 --0.0610947 -0.012115 -0.00236319 --0.0174929 --0.00826186 -0.00509544 -0.120292 -0.0106433 -0.021323 --0.00841966 --0.108533 -0.0376716 --0.0284867 -0.00964417 -0.0344364 --0.0649202 --0.0241008 --0.0660698 --0.0491878 -0.0387894 -0.000698711 --0.0282283 --0.0116407 -0.0635251 -0.0101153 -0.0569372 -0.0503846 --0.000706029 -0.0205096 --0.0372108 --0.028018 --0.0650073 --0.0807621 --0.0193404 -0.0568832 --0.0433158 --0.0480859 -0.0212373 -0.00327776 --0.0623494 -0.0268531 --0.0675069 --0.0416687 --0.00627798 -0.0415364 --0.00573378 -0.0260823 -0.00810492 --0.064493 --0.000859251 --0.0139938 --0.00667004 -0.030522 -0.0146528 --0.0328252 --0.02033 -0.0636399 --0.105514 --0.0383977 --0.0915236 -0.0253235 -0.0529896 -0.0133679 --0.0535172 --0.0726144 -0.00326094 -0.00657872 --0.0327819 -0.0345731 -0.030899 --0.0792296 --0.0965634 -0.0508711 --0.045866 -0.0446327 -0.080208 -0.0918766 --0.00611114 --0.0322786 --0.0963776 --0.0669563 -0.0249879 -0.0208908 --0.00187419 -0.00647584 -0.000862437 --0.0535365 --0.0291734 -0.0473775 --0.02511 --0.00579198 --0.0524771 -0.0473722 -0.0881337 --0.000622213 --0.0865458 --0.0715552 -0.117164 -0.0539212 -0.0469612 --0.00438501 --0.0919568 -0.00528093 --0.0441296 -0.00896739 -0.0536568 --0.0227262 -0.0429103 -0.0735404 -0.0133783 -0.0933995 -0.0132628 -0.00221517 --0.000551328 -0.020833 --0.0387444 --0.0409497 --0.072416 -0.012668 --0.0134429 --0.00318603 -0.0379497 --0.00730959 -0.0308593 -0.0384284 -0.0140362 --0.00619661 --0.0301492 -0.0405836 -0.0174228 --0.00759912 --0.0368482 -0.00997235 --0.0965112 --0.068836 --0.0396279 -0.0230802 --0.0524287 -0.0381958 --0.0748842 -0.0333827 --0.0744495 -0.0154654 --0.0362671 --0.0060716 -0.103382 -0.118232 -0.0407246 -0.0046457 -0.0150772 -0.0676903 -0.0193337 -0.0108065 -0.0272469 --0.0959959 -0.0782067 -0.0267161 -0.000197357 --0.0545539 -0.0302592 --0.00463123 --0.0700735 -0.0187032 --0.0249342 --0.0364721 --0.0401274 -0.0480616 -0.0519113 --0.0490844 --0.0782626 --0.00899844 -0.032116 -0.0542761 --0.0381208 --0.158585 --0.00605569 --0.0574299 --0.065678 -0.0656285 --0.103417 -0.0726792 --0.0116002 -0.05593 -0.0213553 --0.0519771 --0.00565185 -0.0406213 --0.02367 --0.0124066 -0.0214691 -0.0101402 --0.012671 --0.0169752 --0.0165447 --0.0210253 -0.0118229 -0.0509452 --0.0139951 --0.0914052 --0.076368 -0.0561666 --0.00114554 -0.0552079 -0.0461578 --0.0440788 --0.0392996 --0.037912 --0.048653 --0.0294406 -0.0316818 -0.0507893 --0.0476687 -0.0408424 --4.78691e-05 -0.0460536 -0.00347981 --0.0152752 --0.00375686 -0.105587 -0.0215796 -0.0210374 -0.0476569 -0.004287 -0.046841 --0.0219843 --0.0541846 -0.0671141 --0.0951698 --0.117391 -0.0272557 -0.0056124 --0.00221687 -0.0413456 -0.0542126 -0.0566774 --0.0118591 --0.0160472 -0.0157618 --0.0617971 -0.0583596 -0.0625638 --0.095984 --0.0579423 -0.0985491 --0.00604782 --0.0455066 --0.0178987 -0.00668902 --0.00453501 --0.00799298 --0.00656693 --0.0476788 --0.0690686 -0.0341689 -0.00337811 -0.0362019 -0.00302704 -0.0161532 --0.0268958 --0.0255846 -0.0679434 --0.0365487 --0.0751751 --0.012726 -0.016548 --0.052516 -0.0918529 --0.0179951 -0.0637599 -0.0961632 -0.0641946 -0.0378338 --0.0523452 --0.0354013 -0.114692 -0.0263425 -0.0114177 --0.0495804 --0.102245 --0.0245457 -0.10415 --0.0459707 -0.00675169 --0.0456698 -0.0343857 -0.0819925 --0.0456971 -0.00526975 -0.1363 -0.0111874 --0.00878684 -0.0835539 -0.044333 -0.00509939 -0.0239929 --0.0102103 -0.00796635 -0.0623922 --0.0269074 -0.0158439 -0.0576675 --0.0668418 -0.0521577 --0.0212784 --0.0617806 --0.0626786 -0.0110314 --0.0779917 -0.0595732 --0.0464944 --0.0300909 -0.0926773 -0.0260594 --0.0569852 -0.0391374 --0.0280931 -0.0160137 --0.056652 -0.0303145 -0.0486877 -0.111305 --0.0210666 -0.0426297 -0.0436906 --0.0391397 -0.040831 --0.0052372 -0.0733772 -0.0673202 --0.111386 -0.0620364 -0.0512883 -0.0129448 --0.0309687 --0.0406732 --0.0496005 -0.0945962 --0.0883757 --0.0777441 -0.0458562 --0.0917758 -0.00391007 --0.0693567 --0.0144597 --0.0431591 -0.112083 -0.008694 -0.0415959 --0.059608 --0.0334483 --0.0283493 --0.00285918 -0.0982541 --0.0999219 -0.0177643 --0.0784419 --0.000341402 -0.092148 --0.0489811 -0.045604 -0.0516059 -0.0641447 --0.00592822 --0.0767063 -0.0106889 --0.0750654 -0.0409652 --0.0799074 --0.0463408 --0.0115924 -0.0486979 --0.0164304 --0.0325559 -0.0294435 --0.0455704 --0.0150317 -0.0691804 -0.0713893 --0.0433283 --0.0600241 --0.0875206 -0.0465732 --0.0638668 -0.051076 -0.02461 -0.0702758 -0.0377206 --0.0150684 --0.102215 -0.00232646 -0.0241052 -0.0609181 -0.0486022 -0.0139977 -0.0623648 --0.014067 -0.044135 -0.00335628 -0.0275256 --0.050571 -0.0312784 -0.0320256 --0.0256778 -0.0364676 -0.0652708 -0.0376392 --0.101167 --0.00483163 --0.0218496 --0.0704347 -0.0170073 --0.0322209 --0.0343144 -0.0379645 -0.0409031 --0.112353 --0.00641597 -0.0770677 -0.0863229 --0.0198437 --0.00804106 -0.0373071 --0.0582181 --0.146764 --0.00224459 -0.00563132 -0.0435464 --0.019187 -0.0154528 -0.111838 --0.00765836 --0.0863634 -0.0489477 --0.0388737 --0.0308518 --0.023523 -0.0213221 -0.000983264 -0.00069104 --0.0344886 --0.0487705 -0.0259532 -0.0837646 -0.0417549 --0.0275298 -0.0128654 -0.00664682 -0.0131813 --0.0747047 -0.0633818 -0.0134065 --0.0321982 --0.00782277 --0.0340984 --0.00844775 --0.0097104 -0.027715 --0.0526072 --0.162173 --0.0189604 --0.00360239 --0.000867151 --0.0443725 --0.0480469 -0.0399728 -0.0244634 -0.00268131 -0.0446062 -0.0503014 -0.00132709 --0.026253 -0.0463111 -0.0570155 --0.0420365 --0.0313497 -0.0516994 -0.00976629 --0.0365666 --0.0175983 -0.0464184 -0.0127554 --0.0181277 -0.0315017 --0.0176959 -0.0720117 --0.0328536 -0.0530062 --0.0481976 --0.00153188 -0.0916028 --0.0783964 --0.00345309 --0.00277967 --0.0309901 -0.0328962 --0.0328539 -0.0255018 -0.0173452 --0.00251929 -0.00075375 -0.103467 -0.0465163 --0.0229207 --0.0297292 -0.0408676 --0.00598195 --0.0221281 --0.0481324 -0.0229247 --0.0418779 -0.0551604 -0.0184848 -0.0335721 -0.00611667 --0.027006 -0.0149965 --0.067964 --0.0132713 --0.0362454 --0.0607569 --0.0280756 --0.0376753 -0.0538398 --0.0553894 --0.0732548 --0.0813885 -0.0584172 -0.0346985 -0.00822557 --0.0646397 --0.00499005 --0.0328378 --0.110158 --0.0168593 --0.0512533 -0.0116774 --0.0938805 --0.00311976 -0.0737951 -0.0846277 --0.00987136 -0.00293811 -0.109939 --0.0361685 --0.0310047 -0.0317872 -0.034329 -0.00489813 --0.00164583 --0.0268857 -0.0127711 -0.056463 --0.0762964 --0.0140644 -0.0509878 --0.0140371 --0.0689464 -0.0462582 -0.00867474 -0.00115959 --0.0318996 --0.058578 --0.101138 --0.0147412 --0.040311 --0.00966502 --0.0412678 --0.105235 --0.0230427 --0.108711 -0.0633624 -0.0142867 -0.109966 -0.0293528 -0.00966207 --0.0551522 -0.0403391 -0.0693092 -0.0661958 -0.136072 --0.00988127 --0.0251145 -0.0728174 -0.00853906 -0.0463524 -0.0668552 -0.0102783 -0.043357 --0.000347741 --0.0191239 -0.0300724 -0.0287538 --0.12645 --0.00539117 -0.00744628 --0.0518892 -0.0259634 --0.0364103 -0.00445972 --0.000965686 -0.0160361 -0.0028386 -0.0222735 --0.00768927 --0.0287289 -0.0264207 --0.0291816 --0.0304638 --0.0843201 -0.00663173 --0.048375 -0.0073526 --0.043766 -0.0428796 -0.0586425 --0.0251561 -0.0186213 -0.0184665 -0.0516987 --0.0674535 --0.0753284 --0.0363668 -0.00507295 -0.0549527 -0.00489506 -0.00563017 --0.0647775 --0.0301885 --0.00897813 -0.0105951 --0.0229562 -0.157823 -0.0389275 --0.0274695 -0.0817182 -0.0163248 --0.0513852 --0.0147009 --0.00685439 -0.0236487 --0.0442657 --0.0344385 --0.0124562 --0.018519 -0.0403915 --0.0134104 -0.0474946 -0.0478001 --0.0290682 -0.0105692 --0.0110908 --0.0261368 --0.0139861 --0.0195685 -0.0332323 -0.0324274 -0.103901 --0.0553822 -0.0355469 -0.0512002 --0.00609049 -0.0613312 -0.0862838 -0.00730647 --0.00869 -0.0164528 -0.00828442 -0.0240204 --0.0493125 --0.0897161 -0.00184861 --0.0255746 --0.00385739 --0.0943782 --0.0371438 -0.0545367 --0.0468231 -0.0146368 --0.0263417 -0.0607225 -0.0124293 --0.0851104 -0.00967272 --0.0197181 --0.0832308 -0.098817 -0.000782899 --0.0632329 -0.0521585 --0.0490732 -0.0376545 --0.0672571 --0.0250623 --0.0982853 -0.0533809 --0.0418288 -0.020239 -0.0094488 --0.0416334 --0.0182675 -0.121873 --0.0265725 --0.0282428 --0.0489306 --0.0146943 -0.0402564 --0.0258216 --0.0265987 --0.0475494 -0.0435423 --0.0417754 --0.0808201 --0.0565803 --0.00732098 --0.0724454 --0.0066829 --0.0210138 --0.0217745 -0.0599925 --0.0185844 --0.019194 -0.0349493 -0.0484334 --0.0640271 -0.00842741 -0.025239 -0.0381066 -0.00864099 --0.0144834 --0.0133922 -0.0623048 -0.0683324 -0.0811109 --0.00522747 -0.0927241 -0.0764691 --0.079946 -0.0141977 --0.034526 -0.0119673 --0.00516247 -0.00879321 --0.0465443 -0.0505986 -0.00918284 -0.0112776 --0.0428877 -0.0133504 -0.000323033 -0.00520481 -0.0175688 -0.0110651 --0.0594722 -0.104086 -0.0572885 --0.0365755 -0.0829055 -0.0158309 --0.0496369 --0.02336 --0.0319529 -0.0413821 --0.0567056 -0.111136 -0.0106452 --0.00854918 --0.044472 -0.0340741 -0.128955 -0.0545285 --0.0273135 --0.11513 -0.0527622 --0.00585393 -0.0517804 -0.0718732 -0.00160081 -0.0283297 -0.0333247 --0.0234366 --0.00391726 --0.0267762 --0.0573996 -0.0379732 --0.0244801 --0.0889335 -0.0361649 --0.0726979 --0.109832 --0.12867 --0.000406611 -0.051899 -0.0389014 --0.148252 --0.023751 -0.0551158 -0.0190118 -0.0392787 --0.0916527 -0.0443654 --0.00327718 -0.0370598 -0.0077489 --0.0291894 -0.0466992 --0.0729395 -0.0268784 -0.0111158 -0.056373 --0.0205285 -0.0573889 -0.0273132 -0.0323984 -0.024089 --0.168307 --0.0491538 --0.0329056 -0.0191326 -0.0273051 -0.0201566 -0.00607298 --0.00390423 --0.0543295 --0.00366719 -0.0178103 -0.0601018 --0.048043 --0.00800299 -0.056864 -0.0353783 --0.00496491 --0.01635 --0.00373134 -0.0782001 -0.0142967 --0.0408515 -0.00412106 --0.0138777 --0.00822169 -0.0902474 --0.00729165 --0.0232765 -0.0285619 --0.0348958 --0.0304175 -0.0691137 --0.0796284 -0.0669041 --0.0522604 --0.03212 -0.0152788 --0.0447383 -0.0914175 --0.0156258 -0.0207685 -0.0752571 --0.103602 --0.00873554 --0.0216987 -0.0150049 -0.0401468 --0.0762005 --0.0245382 -0.0427895 -0.0804045 -0.00319774 --0.00363729 -0.0211837 --0.133879 --0.0542365 --0.0446462 -0.0465502 -0.0142007 --0.0571303 --0.0158855 --0.00706968 -0.103489 -0.0131825 --0.0446829 -0.0361173 --0.0856982 -0.0357273 --0.0803452 --0.0709028 -0.0646115 -0.0723419 --0.00151127 --0.0150341 --0.0332903 --0.0202146 -0.0995215 --0.00850432 -0.00518805 --0.0147744 --0.0189854 --0.0187617 --0.00644518 -0.0675991 -0.00409126 --0.124548 --0.0160929 -0.111151 --0.0464795 --0.0679393 -0.0966427 --0.0320992 --0.0902891 --0.0458001 -0.0677939 -0.0258122 --0.0377749 --0.0597529 -0.0461772 --0.0117801 -0.00832034 --0.0145013 --0.0493363 -0.00928506 --0.0449437 -0.00482906 --0.0272814 -0.00725803 --0.0660747 -0.00176825 --0.0887336 --0.014713 --0.0273474 --0.0946249 -0.00117125 -0.087225 -0.0816051 --0.0569148 -0.0079527 --0.0478674 --0.0207166 --0.067954 -0.0479256 -0.00120722 -0.0128398 --0.00314433 -0.0769908 -0.0378205 -0.0463879 --0.0590753 --0.0181958 --0.0141178 --0.0114092 -0.00199626 --0.0991223 --0.0549293 -0.0235344 --0.030494 --0.0705599 -0.0339234 -0.0231782 -0.0199329 -0.0263445 --0.032457 -0.0114873 -0.0376369 --0.0139657 -0.0481951 --0.00167403 -0.0620391 -0.0547648 -0.00989047 -0.0177765 -0.0575884 --0.0317532 -0.0105847 -0.0277152 -0.0799112 --0.00667031 --0.0649491 -0.0413229 -0.0919509 -0.0124699 --0.0137138 -0.0350373 -0.072038 -0.0735102 --0.0198824 --0.0576239 --0.0371083 --0.0326561 --0.0228647 -0.0154397 -0.0134519 -0.0159232 --0.0480444 --0.0176856 -0.0275336 -0.0173781 -0.0058243 -0.0288326 --0.0428825 -0.00817093 -0.0180135 --0.00237605 -0.0195541 --0.038513 --0.0444175 --0.0302867 -0.0169012 -0.00860807 -0.0370906 --0.032454 -0.0688937 --0.0072119 -0.0410775 --0.0421796 --0.024962 --0.0113994 --0.0583173 -0.0465663 -0.0118351 --0.0290032 --0.0234222 -0.0403362 --0.02766 -0.0421203 --0.00522872 -0.051292 --0.0631361 --0.0493953 -0.00611866 --0.163354 -0.013592 --0.0348307 -0.0657276 -0.0694333 --0.0575691 -0.0426869 --0.0284963 -0.0833062 --0.0821086 --0.04116 --0.0364968 -0.0971966 -0.0552442 -0.0404607 --0.00166745 -0.00326584 --0.0374038 -0.0218321 --0.00135432 -0.0824718 --0.0656949 -0.0701123 -0.0237601 -0.0396105 --0.104017 -0.0468608 -0.00587662 -0.0167189 -0.0633991 -0.0339446 -0.0322918 --0.0339893 --0.0303753 --0.0350008 --0.0103379 -0.00236939 --0.0758554 -0.0380387 --0.00332838 -0.0167873 --0.00369374 -0.0416066 -0.0204933 -0.0115927 --0.0526206 -0.02623 --0.091291 --0.0173983 --0.0430423 --0.0072236 -0.0073815 -0.0680226 --0.0812471 -0.0566916 -0.00480269 -0.0807071 --0.00171119 --0.0217067 -0.0416974 --0.00488341 --0.0153339 --0.0356636 -0.0944586 -0.0188206 --0.016105 -0.00676853 --0.0344056 --0.0162519 -0.070648 --0.0279572 --0.0718772 -0.0463437 --0.014866 --0.000564527 -0.0386148 --0.0251883 -0.0566714 -0.0501327 -0.0100381 -0.0432513 -0.0117371 --0.0471586 --0.0613442 --0.00212274 --0.047976 -0.00332143 -0.0141047 --0.0912891 -0.014394 --0.0336014 -0.0202028 -0.0235041 -0.0918814 --0.00969518 -0.0313499 --0.0531895 -0.0230718 --0.100106 --0.0419567 -0.0538791 -0.0399459 --0.0902457 -0.0125546 -0.0443512 --0.0866511 --0.033744 --0.0132777 --0.030271 --0.026596 -0.00731329 --0.0446911 -0.055356 --0.101313 --0.0473539 --0.0585536 --0.0242309 -0.00248099 -0.0680485 -0.0747408 -0.0174283 --0.014776 --0.0222376 -0.081853 -0.0239438 --0.0455622 --0.0291267 --0.066133 --0.019792 -0.068445 -0.0312779 --0.00455675 -0.0495306 -0.0371584 --0.00267109 -0.0206756 --0.00893295 --0.0300166 --0.130099 --0.0773718 --0.0341588 -0.0294664 --0.110336 --0.0151119 -0.072196 -0.0595554 -0.0129242 -0.0295769 -0.0374476 -0.0403355 -0.01971 -0.0376393 -0.00585879 --0.0526237 --0.00663443 -0.0106361 --0.0206589 -0.0784317 --0.0169252 -0.0707195 -0.0123311 -0.0751196 -0.0319351 --0.0303126 --0.00371154 -0.0251676 -0.0104687 --0.0243523 -0.0229598 --0.0178756 --0.0584369 -0.0685087 --0.043025 -0.0599288 --0.104031 -0.0265802 --0.0958555 -0.126238 -0.0385738 --0.066149 --0.0323348 --0.0265627 --0.0249939 -0.00279289 --0.0861818 -0.0159425 -0.0159794 --0.0735323 -0.0087914 --0.058278 --0.000753359 -0.0255896 --0.00219389 -0.0434749 -0.0113809 -0.0223876 -0.0204622 --0.049507 --0.0208871 -0.0331416 -0.0080852 -0.00283368 -0.0360032 -0.133194 -0.0808627 --0.0518218 -0.0207905 -0.020923 --0.015943 --0.00480301 --0.00185976 --0.0592777 --0.0625255 --0.0563025 --0.0494192 -0.0458636 -0.0410657 -0.0360598 -0.0146833 --0.0106709 -0.0246552 --0.0780472 --0.089056 -0.0180012 --0.0449617 --0.0331184 -0.047845 --0.0899758 --0.0731186 --0.0191137 -0.0778708 -0.0423834 --0.00903747 -0.00487523 -0.0158351 -0.0516707 --0.00527477 --0.0890556 -0.00305879 --0.00031814 -0.0368046 -0.0343321 -0.010436 --0.0556598 --0.0241296 -0.0739113 --0.0472647 --0.00874169 --0.0258971 --0.0083405 -0.00537628 -0.0369978 --0.0392594 -0.0268948 -0.0288317 --0.0484941 -0.0587623 --0.0431189 -0.0181499 -0.0165202 --0.043072 --0.0251407 -0.0362462 --0.015395 -0.00923343 -0.0715643 -0.0285282 -0.0404913 -0.0797597 --0.0310217 -0.0259591 -0.0492603 -0.0508355 -0.0371548 --0.0325778 -0.0579104 -0.0315185 -0.0381053 --0.109737 -0.0122034 -0.0216037 --0.00126834 -0.0176079 --0.00725593 --0.0300489 -0.0589459 -0.000183323 --0.00844223 --0.0175087 -0.00976802 --0.0234324 -0.0162237 --0.00506307 -0.0510903 -0.0115329 --0.0298809 -0.0501338 -0.0571912 -0.0664473 --0.0412531 --0.023118 --0.0060148 --0.0175019 --0.00754819 --0.0363588 -0.00892766 -0.0201971 -0.0195127 --0.013573 -0.030556 --0.0620552 --0.0207941 --0.0362124 --0.0468139 --0.134803 -0.0452676 -0.0384286 --0.0490516 --0.00828892 -0.0426902 --0.00848708 --0.00728128 --0.0286793 -0.0227687 -0.0210654 --0.0476562 -0.00583215 --0.0350339 --0.0169079 --0.0754836 -0.0760396 -0.0413358 -0.0152495 -0.0704943 -0.0177303 --0.0383699 --0.0763523 --0.010212 --0.0662994 -0.0516761 -0.00685389 --0.0402061 --0.0614617 --0.0131569 -0.121886 --0.0231862 -0.0271222 --0.0164144 --0.029522 --0.0175316 -0.0220879 --0.0128054 --0.0253083 --0.0748793 --0.0784257 --0.0174795 -0.128163 --0.0288363 --0.0536269 -0.0299803 --0.00449239 --0.019528 --0.0813871 --0.038136 --0.0374 --0.0263117 --0.0167006 --0.0126169 --0.158554 -0.055903 -0.0569229 --0.0679607 -0.0142563 --0.0187117 --0.00886594 --0.0216265 -0.0113354 --0.0436338 --0.0132685 -0.0328532 --0.0582516 -0.0584207 --0.0586398 --0.0593116 -0.0370531 --0.0230189 --0.0138712 --0.0953459 --0.0460803 --0.0388004 -0.00582825 -0.0837954 -0.00911964 --0.05287 -0.000347064 -0.00776872 --0.0374614 -0.0349828 -0.0409906 --0.00912822 --0.127119 -0.03096 -0.0870721 -0.0694286 -0.0294665 --0.0504042 -0.000556406 -0.0440389 -0.0490997 -0.0598692 --0.0396418 --0.0265927 --0.0439348 --0.0253687 --0.0307624 -0.00317157 --0.0717934 -0.0559544 -0.0461131 --0.0489689 -0.034033 -0.0357222 -0.00932571 -0.0636892 -0.0032733 -0.0710427 --0.018519 --0.0111305 -0.0112822 -0.13416 --0.0101955 -0.0693838 -0.0855662 --0.0751931 --0.0690004 -0.0842129 -0.00782438 --0.0369577 -0.126161 -0.096144 --0.0326198 -0.0180933 -0.048181 --0.037703 -0.0105087 -0.0396607 --0.0579439 --0.0570127 --0.01678 -0.0412346 -0.0504194 --0.0809391 --0.0335248 --0.0077326 --0.0385487 -0.0442581 -0.0572656 --0.0131288 -0.0666218 --0.00123701 -0.0587611 -0.00919375 --0.0463226 --0.0838137 --0.0729783 --0.0469496 -0.00379756 -0.0314846 -0.0479737 --0.0638495 -0.0695229 -0.0826239 --0.00526414 -0.083793 --0.0475323 --0.0164915 -0.0178082 -0.105358 --0.142611 --0.0139957 -0.0533165 -0.0899874 -0.0276008 --0.0463704 --0.0288421 -0.0133495 -0.0231564 -0.0176809 --0.0107782 --0.0139279 -0.148437 --0.0565215 --0.0183719 -0.0320194 -0.00766173 --0.0763714 --0.0441055 --0.0202404 -0.0325432 --0.0272944 --0.0542668 -0.0357696 -0.0281077 -0.0439987 -0.0422268 -0.0408074 --0.0241021 -0.000695876 --0.0498073 --0.0843981 -0.0633283 --0.0330623 -0.0232872 -0.0710042 -0.0376832 --0.0391567 -0.0738643 -0.034768 --0.0929944 -0.0259408 -0.00839183 -0.00210744 -0.00825287 -0.0162434 -0.0389507 --0.0576637 --0.0293654 --0.0262351 -0.112879 --0.0546432 -0.0373891 --0.055018 --0.012127 -0.0726564 --0.0350755 -0.00501531 --0.00867167 -0.017958 -0.0308954 --0.0545251 -0.0237398 -0.0320412 --0.0645018 --0.0269857 -0.0573482 --0.00507367 -0.00714356 --0.0650312 --0.0906482 --0.0767039 --0.0351424 -0.0463538 --0.0870107 -0.0326043 -0.0664314 --0.0323769 -0.0505666 --0.0136069 -0.0101644 --0.0662483 --0.0788819 --0.0600113 -0.0684153 -0.0223111 -0.0122377 -0.032864 -0.00575571 -0.00727422 -0.0845089 --0.0749877 --0.0301764 -0.0101044 --0.0111112 -0.00994955 --0.0693517 -0.00929777 --0.00485216 -6.39922e-05 --0.0124351 -0.016627 -0.0191669 --0.0248832 -0.0594712 --0.0920133 --0.0567426 --0.00311468 --0.00883774 --0.00052606 -0.0115947 --0.0524762 --0.0520614 -0.0345694 -0.00411476 --0.00382708 -0.0842322 -0.0535349 -0.104025 -0.00283574 --0.000629444 --0.0207726 --0.149622 --0.0437077 --0.00501587 -0.0309217 -0.0345683 -0.02572 -0.0147368 --0.0243377 -0.042425 --0.0170182 -0.0305972 -0.0402269 -0.0492961 -0.0496312 --0.0652924 -0.0659862 -0.115651 --0.0194568 --0.0478584 --0.0376837 --0.0201111 --0.0587415 --0.0918497 --0.0681564 -0.0233582 --0.0503627 -0.00645154 --0.0099926 -0.00644224 --0.0309149 --0.0270321 -0.00846381 --0.00160259 -0.0249957 --0.0907434 -0.0651528 --0.0364293 --0.0179953 -0.0165812 -0.0964319 -0.0482995 -0.0180452 -0.0197728 --0.0922781 --0.036209 --0.00427783 --0.00130584 --0.0351445 --0.0705156 -0.000434416 --0.0943552 --0.00427106 -0.0221695 --0.0392584 --0.000752494 --0.0759263 --0.00714801 -0.0557759 --0.0755072 --0.0249403 --0.0224797 -0.0851443 -0.0572726 --0.0436275 -0.00637507 --0.0317108 --0.00303267 -0.0565352 -0.0766106 --0.0227427 --0.0743513 --0.00102423 -0.020455 --0.0544987 -0.0864498 --0.00240548 -0.0276626 --0.0355861 -0.024854 -0.0473133 -0.0343303 -0.00352057 --0.0513794 -0.0954536 -0.0143349 --0.0405657 --0.0193119 --0.0081633 -0.0681965 --0.00835262 --0.0497329 --0.00403522 -0.0413736 -0.00853134 --0.0468312 --0.0773249 --0.0712234 -0.00227106 --0.0738057 -0.0819895 -0.052292 -0.0720707 --0.0188001 -0.0248767 -0.0304395 --0.0459316 -0.0421503 --0.0216499 -0.0016854 --0.0785726 --0.0743296 -0.0965192 -0.0693297 --0.0340437 --0.0164861 --0.052284 --0.0621004 --0.0577709 -0.053822 -0.0693359 -0.0812862 --0.0358353 --0.0169381 -0.0231241 --0.0261144 --0.0283106 -0.0559543 -0.025921 -0.0275481 -0.0108431 --0.0366613 -0.092296 --0.0695863 --0.00863577 --0.0563383 -0.0942624 --0.0014912 --0.0170212 --0.0378486 --0.0620943 -0.00620235 -0.0320634 -0.012893 --0.0251985 --0.119844 -0.0375388 --0.0889235 -0.0137337 --0.0404464 --0.0990266 --0.0480138 --0.0999285 -0.000422291 --0.0380308 --0.0423268 --0.0111254 --0.0299586 --0.0267459 --0.0852136 -0.0034194 --0.0577841 -0.0928204 -0.0493145 -0.0338959 --0.11506 -0.0149311 --0.00265499 -0.00494242 -0.061829 -0.0522291 --0.014259 -0.0402556 -0.0535008 -0.0764377 --0.0280549 -0.000348626 -0.00662811 --0.139727 -0.00301662 -0.00447303 --0.0866494 --0.0104565 -0.00286145 -0.0804191 --0.0473231 -0.0453279 --0.00704827 --0.00362945 --0.0585403 --0.0121152 -0.0693781 -0.0206408 -0.0445988 -0.0106828 --0.00799739 --0.00396245 -0.0117872 --0.000597505 --0.0594557 --0.118516 --0.0387663 --0.0440326 --0.0281167 --0.0666657 --0.00383329 -0.0298735 --0.00135153 -0.101145 -0.0173276 -0.0276778 -0.0332162 --0.0645053 -0.0201566 --0.063469 -0.0324544 -0.00179734 -0.00197814 --0.0448433 -0.0310961 --0.0116692 -0.0177875 -0.0590662 --0.0753775 --0.0250246 --0.0087453 -0.0182777 -0.0181439 -0.0664849 -0.00150019 -0.00540574 -0.00682649 --0.0570745 -0.0417288 -0.0410389 --0.0644538 -0.0126641 --0.0756459 -0.0193503 -0.00368099 --0.0290871 --0.000163442 --0.0632428 -0.021518 -0.0437693 --0.0549683 -0.0374232 --0.101454 -0.0767661 -0.0210633 -0.0565707 -0.0380611 --0.0161929 --0.0378249 -0.0287046 -0.00539149 --0.12135 --0.0216642 -0.0319363 --0.0390825 --0.00471245 -0.100168 --0.067305 -0.0237319 --0.0174352 --0.00927322 --0.0323587 --0.00823328 -0.000649893 --0.0486921 -0.0547322 --0.0703786 --0.0189581 --0.0160948 --0.00408046 --0.0326817 --0.0549724 -0.078862 -0.07909 -0.0319521 -0.0437958 -0.0279736 --0.0848572 --0.0155975 -0.0441411 --0.00962104 --0.0219613 -0.000160015 -0.0683049 -0.0374538 --0.0537129 -0.0514318 -0.0290534 -0.0149122 -0.0408518 -0.0901959 -0.0717793 --0.143112 --0.00457636 -0.0234261 --0.00588258 -0.0485199 -0.0718868 -0.0262298 --0.092662 --0.0317961 --0.0413841 --0.102661 --0.0399096 -0.0950383 -0.0262791 -0.00455989 --0.0213867 --0.0570164 -0.0928325 --0.0272678 -0.148654 --0.0055355 -0.0523847 --0.0327904 --0.0747337 -0.0366298 --0.000699471 -0.017645 --0.0123688 --0.0538887 --0.0189722 --0.005354 --0.026753 --0.0325424 -0.00228043 -0.0579372 --0.0261482 --0.0116283 --0.0453268 -0.0348846 --0.0257474 -0.0155587 --0.00106522 --0.0225576 --0.0817122 -0.00946331 -0.0755179 -0.0693564 --0.0245088 -0.0547763 -2.37632e-05 --0.0751734 --0.0184489 -0.037419 --0.0306262 -0.0101492 -0.0302462 -0.0109802 -0.0225648 -0.0320762 -0.0376083 -0.0167325 -0.0159588 -0.0144279 -0.0382342 --0.00951267 --0.0237088 --0.059842 -0.0522068 --0.00643286 -0.00671009 --0.0240785 -0.015456 --0.0186314 --0.00679573 -0.0268972 --0.0357347 -0.0344757 -0.0745067 -0.07602 --0.00146211 --0.0571548 --0.0821783 --0.0287075 --0.00102444 --0.0485298 --0.00562562 --0.0513241 -0.058098 --0.0433191 -0.0440192 --0.0254869 --0.023851 -0.0499755 -0.0256171 -0.0136765 -0.0643079 --0.0340332 -0.0256732 -0.0196624 --0.0293161 -0.0646952 --0.0192425 --0.0644915 --0.0892472 -0.0246752 -0.026155 --0.00610233 --0.0431106 -0.034485 --0.0355268 --0.0092564 -0.04225 -0.0342593 -0.0174258 -0.0450612 -0.0599826 -0.0542199 -0.0800456 --0.0957669 -0.0362522 --0.0261555 -0.044763 -0.0720201 -0.115498 -0.0692745 -0.0387324 -0.0624581 --0.00331597 --0.0253141 -0.086547 --0.015267 -0.0814688 -0.0450604 -0.019827 --0.0464669 -0.0501863 --0.0946616 --0.0212853 --0.015221 -0.0430963 -0.0239976 -0.0747867 --0.0343673 --0.0573197 --0.038911 --0.0798478 --0.00811289 --0.0271107 -0.0605069 --0.0274125 --0.0271383 -0.0190786 --0.023554 -0.0407136 -0.0205454 --0.041225 -0.0603893 -0.0305522 -0.0506648 --0.0773166 --0.100265 --0.085668 -0.0447411 -0.0496542 --0.0867601 -0.0234157 --0.0482313 -0.0468479 -0.105499 --0.0708862 -0.0656651 -0.0269622 --0.0216166 --0.00759642 -0.0508234 -0.0216316 -0.0474766 --0.0589388 --0.091365 --0.0399141 -0.0625255 -0.029316 -0.0596947 -0.0093152 --0.113581 -0.0425006 -0.00165356 -0.0085338 -0.00345263 -0.0194752 -0.00413604 --0.042584 -0.0526443 --0.0271142 --0.050382 --0.120865 --0.0289954 -0.00349307 --0.0544041 -0.0676604 --0.0215212 -0.0314807 -0.0999237 -0.0196227 -0.0110292 --0.0559823 -0.0634836 --0.0260478 -0.053122 -0.102738 -0.0545795 --0.0930389 -0.0724425 -0.0278453 --0.0406516 --0.0284471 -0.0125187 --0.0443893 --0.0389776 -0.00999666 -0.0361672 -0.0264556 -0.0332599 --0.0661157 --0.00870181 -0.0293441 -0.0668283 --0.0203938 --0.00136074 -0.0345051 -0.0615651 --0.0242804 --0.0740616 -0.0106407 --0.0739582 --0.0308255 -0.0353706 -0.0844128 -0.0746055 -0.0492452 --0.0437034 --0.0177692 --0.0465192 -0.0194822 -0.0112761 --0.0673535 -0.0157373 -0.0232139 -0.00134084 --0.0119668 -0.0628363 -0.018767 -0.0224221 --0.0571727 --0.0114673 --0.00101611 -0.0147443 -0.0231245 -0.0488189 --0.0169247 -0.0412061 --0.0291025 -0.075733 -0.0118918 -0.0801057 -0.00867284 -0.0838164 -0.0736911 --0.0121056 -0.0114743 --0.0276467 -0.0141218 -0.00456343 -0.0406751 -0.0364345 -0.00984998 --0.0762846 --0.0463258 --0.0154543 --0.0314677 -0.0346316 -0.0116469 -0.0425812 -0.0199423 --0.0361584 --0.0546448 -0.0857259 -0.0429594 --0.0109548 --0.0456514 --0.0300311 --0.0782541 --0.0358632 -0.0353993 -0.0608608 --0.0125169 --0.0759103 --0.0290772 -0.0364351 -0.0370029 -0.0760277 --0.0585576 -0.0891598 -0.098411 --0.0679063 -0.0464964 -0.0150251 --0.00767025 -0.0362053 --0.0350317 -0.00982945 -0.0425438 -0.0753382 -0.0182191 -0.0293485 --0.00280042 --0.0123063 --0.0069161 --0.00434677 --0.0514087 -0.034394 --0.0607747 --0.0326276 -0.0579703 --0.0655223 --0.0704117 --0.0819245 -0.0175484 -0.0346533 --0.0303869 -0.0762329 -0.0297603 -0.0821215 -0.0199044 -0.0466562 -0.0376565 --0.0302515 -0.0146 --0.0174004 -0.108474 --0.0394586 --0.0146109 --0.0157812 -0.0280573 -0.0139781 -0.0515402 --0.0493541 --0.0426852 -0.0408514 --0.0061393 -0.0675074 -0.0613927 -0.0684414 -0.00467086 --0.0204042 -0.0556394 --0.055719 -0.0800293 -0.0432035 --0.0262123 -0.0704611 -0.0306689 --0.0148723 -0.00105747 -0.105163 -0.0638361 --0.0650077 --0.0944029 --0.00559098 --0.0130385 --0.00230793 --0.0424478 --0.089428 -0.00964392 -0.0266062 -0.0378329 --0.127161 -0.00716231 --0.033156 -0.0431976 --0.0050609 -0.0198039 --0.0290032 -0.0162173 --0.0576907 --0.011556 --0.0605242 -0.00944019 -0.0727094 -0.00287353 -0.0256326 -0.0280015 --0.0345686 --0.0325494 -0.0244278 --0.0336778 -0.0657317 -0.0466527 -0.0953157 -0.0678151 -0.0235983 --0.0298776 -0.0625059 --0.0495214 -0.0327499 --0.0686024 --0.00467017 -0.110168 --0.0216804 --0.0172763 -0.0539589 -0.0211441 -0.0827091 -0.00473546 -0.0167016 -0.00330766 -0.0885096 --0.0259047 -0.0623879 -0.109564 --0.0317993 -0.0124046 -0.000115394 -0.0727448 --0.00557992 -0.00932431 -0.0956474 -0.0820786 -0.0379923 -0.0336819 --0.00753914 -0.0141469 --0.0483178 --0.0146171 --0.0308727 -0.0702955 --0.0753069 --0.0249486 --0.0578025 -0.0835355 -0.0103271 --0.0318281 -0.0120049 -0.0165025 --0.0715112 -0.0123427 -0.00855107 -0.0455486 -0.0317208 -0.0276156 --0.0495593 --0.0350208 --0.039404 --0.0574634 -0.0141098 -0.0426762 --0.0159097 -0.0620893 --0.0384897 --0.00220595 --0.0350253 --0.00295041 --0.0181075 --0.0675704 -0.00145051 --0.0202288 --0.00190138 -0.0587596 -0.000896791 --0.070244 -0.0300989 -0.000395282 --0.123638 --0.0187668 --0.037419 --0.0583568 --0.0169021 -0.00933359 --0.00176398 -0.0623664 --0.0975419 -0.0364677 -0.0701001 --0.0109627 --0.0588437 -0.0202368 -0.0834428 -0.0303156 --0.00483917 -0.00299575 -0.0604262 --0.017567 -0.0229252 -0.0456099 --0.0385709 --0.0119468 --0.0178113 --0.0730607 --0.0504401 -0.00740186 -0.0165564 -0.0546297 --0.0299053 --0.0182642 -0.0330877 -0.0469218 --0.017972 --0.00503792 --0.0151621 -0.0382396 --0.0381546 -0.104819 -0.0297775 --0.00710438 --0.0618481 --0.0352827 --0.00582076 -0.0224094 -0.0500611 -0.0490625 --0.00353264 -0.0191774 -0.0339262 --0.0115805 --0.0517796 -0.0209635 -0.0358027 -0.0520333 -0.00413373 --0.0469392 --0.0829806 -0.0337181 --0.0117128 --0.00893701 --0.0676021 -0.0244986 -0.00625372 --0.0618209 --0.0207269 -0.0553878 --0.000651056 -0.049141 -0.0398375 -0.0487118 --0.0322981 --0.028801 -0.0757986 -0.0471758 --0.0170165 -0.0155244 -0.0433972 -0.0211888 --0.0395329 -0.0804128 --0.0579057 --0.00385222 --0.00540029 -0.0524295 --0.025873 --0.019146 --0.00697598 -0.104756 -0.0617744 -0.052517 -0.0651412 -0.0770543 -0.0454687 --0.0130958 -0.0713437 -0.0519378 --0.0207839 --0.00865458 -0.0710415 -0.0350137 --0.0612061 --0.0657713 -0.0856788 --0.039017 -0.00133927 --0.0436726 -0.0178005 -0.0448578 -0.00130489 -0.0963017 -0.0303359 --0.0185979 --0.00588035 -0.0276626 -0.0471678 --0.0400239 -0.0554488 -0.0295221 --0.022212 -0.092556 -0.0302569 --0.0958086 --0.0156825 --0.0270511 --0.0556496 -0.0174971 --0.0160281 --0.0125193 --0.0754114 -0.0171173 -0.00696146 --0.0615904 -0.0454026 -0.0488743 -0.00812385 --0.0239744 --0.0763857 --0.0131544 -0.0543379 -0.0547138 -0.0876492 --0.0638205 -0.00721488 -0.0198495 -0.0604786 --0.00208059 -0.0304941 --0.028424 --0.0431969 --0.0755949 --0.0220287 --0.015187 -0.0527572 --0.024743 --0.0399942 -0.0799104 -0.0151265 -0.027151 --0.0166426 --0.0221127 --0.107584 -0.0270123 --0.0500377 -0.0605211 -0.0535847 -0.00989347 -0.0278885 --0.0284314 -0.0349281 --0.0398864 --0.0037528 --0.108717 --0.0295315 --0.0143304 -0.00783372 -0.0781627 -0.0817311 --0.00597135 --0.0184263 --0.00847056 -0.0449719 -0.021412 -0.0218369 --0.0341013 -0.0881473 -0.0502156 --0.0437826 -0.0739624 --0.0355278 --0.0403401 --0.0301824 --0.0080154 -0.07929 -0.00884068 -0.0369622 --0.0981305 -0.0612541 --0.0466189 -0.0416341 -0.0333103 -0.0198388 -0.0197609 --0.0121421 -0.0056897 -0.103313 -0.00940289 -0.0179396 -0.0451896 --0.0662369 -0.0450547 -0.0922661 -0.0691686 -0.027872 -0.071732 -0.0106298 -0.097597 -0.105202 -0.0119929 -0.0574432 --0.00926695 --0.0539572 --0.00266385 --0.100802 -0.0367378 -0.0433225 -0.0910543 -0.0119135 --0.0273263 -0.00845073 --0.0390231 -0.0369885 -0.0861314 --0.0680673 -0.0169813 --0.0385461 -0.053427 -0.0542414 --0.0306292 -0.089371 --0.0359236 -0.0638724 -0.0231651 --0.00157159 --0.00448664 --0.0914731 --0.0108039 -0.00516759 -0.0447499 -0.0299681 -0.0203793 --0.0377064 -0.0317076 -0.0344194 --0.0329114 -0.00914364 --0.0205263 -0.00388633 -0.0504467 -0.0138533 -0.0625117 -0.0382348 --0.0793194 --0.0235635 -0.039896 -0.0739085 -0.0363061 -0.0313776 --0.00226427 -0.0450086 -0.032417 -0.0746046 --0.0577013 --0.0057025 -0.0186333 -0.0746317 -0.040374 --0.0471736 --0.00593842 --0.039659 --0.0712425 --0.0325567 -0.0381661 --0.00513688 -0.0755879 -0.033575 --0.0574357 --0.0249248 -0.0377726 -0.0263845 -0.00878695 -0.160843 -0.0893124 --0.0670243 -0.00862139 --0.0154256 -0.0229283 -0.00657696 --0.0205761 --0.0182189 -0.0514003 -0.0746329 -0.0438917 --0.0855229 --0.119802 -0.00562245 --0.0327289 -0.00568626 --0.024015 -0.0263478 -0.0844262 -0.078202 -0.0164124 -0.0372152 --0.0594684 -0.0834015 --0.0206734 --0.0628923 -0.0239432 --0.0122409 -0.0702927 -0.0674729 --0.0426914 -0.0584327 --0.021761 --0.0246756 --0.116655 --0.0074437 -0.0428041 -0.124359 -0.00610321 --0.0169011 -0.0310177 --0.0176237 -0.0345983 --0.0775108 --0.0110097 -0.056325 --0.0209427 -0.0602962 -0.0320175 --0.0775321 --0.0603701 -0.0438745 --0.0566236 -0.01953 --0.0599376 --0.0507878 --0.00911293 --0.0154921 --0.0470451 -0.134365 --0.0317906 --0.0593531 --0.0243041 --0.016565 --0.015222 --0.0170628 --0.00469141 -0.0119288 -0.0412559 --0.0153056 -0.00850334 -0.0188428 --0.0565078 --0.00103422 -0.0616774 --0.0332837 -0.0811008 --0.0520698 --0.0499773 --0.083521 -0.0262595 --0.0854239 -0.0324941 --0.00480001 -0.017003 --0.00792316 --0.149482 --0.0182762 -0.016964 --0.0436823 -0.0517955 --0.0311677 -0.0323199 -0.0342074 --0.0722053 -0.0388676 --0.0162145 -0.00520599 --0.0360783 --0.016313 -0.0450571 --0.0945794 --0.0480138 -0.00136513 --0.0414496 --0.0202441 -0.0935045 -0.00901132 --0.00684389 -0.0884485 -0.0512675 -0.0107025 -0.0672469 --0.0830346 --0.00618072 --0.00248072 -0.0753867 --0.0357173 --0.0135344 -0.0579951 --0.005502 --0.0672814 -0.048425 --0.06793 --0.0316446 -0.05592 -0.140141 -0.0523819 -0.0789675 -0.00949402 --0.0443382 --0.044967 --0.0653453 --0.0131388 -0.0932512 -0.0971695 -0.0520051 -0.059366 --0.0173197 --0.0480062 -0.0155434 -0.0185152 -0.0478218 -0.0368552 -0.0398182 --0.0155793 -0.0153224 --0.0414123 --0.000649949 --0.0818833 --0.0100721 -0.0587302 --0.0528515 -0.0444116 --0.0171302 -0.0442207 -0.00560354 --0.0406643 --0.0638714 -0.0133857 -0.0335626 -0.0302922 -0.0429072 --0.0621322 --0.0708319 -0.0589443 -0.0467495 -0.0261826 --0.0141608 -0.0762935 --0.104969 --0.0350979 --0.0454634 --0.000138718 -0.0800063 -0.0383592 --0.0128255 --0.071301 --0.0235129 -0.0106589 --0.108038 --0.0648745 --0.024676 --0.0144082 -0.0114567 --0.0323494 -0.0545164 -0.0446769 -0.0122925 --0.063892 --0.0241417 -0.0261585 --0.0650092 -0.0637027 -0.0577201 --0.0380283 -0.0341827 --0.0479678 --0.00568346 -0.00390685 -0.0193188 --0.0366839 --0.0493091 -0.0827477 -0.0745073 --0.0442977 --0.0286791 -0.116437 -0.0623139 -0.00230366 -0.0131507 -0.0330633 --0.0309187 --0.0462175 --0.0778768 --0.0101909 --0.0531147 --0.0168296 -0.0247423 -0.000480421 --0.0069368 --0.0648247 --0.0528301 --0.0302461 -0.0862555 -0.0391306 -0.0391725 --0.0363651 --0.018106 --0.0666769 -0.0311709 --0.0077811 --0.0121737 -0.0445848 -0.0131743 --0.0393303 --0.00104277 --0.0669944 --0.0649909 --0.060853 --0.0659659 --0.115815 -0.0601865 -0.0112148 -0.00147838 --0.0393242 --0.0851157 -0.00701031 --0.0495852 -0.0634127 -0.0115983 --0.0881997 --0.042708 -0.0713863 -0.0419063 --0.0693509 -0.00683325 -0.0315218 -0.0205878 --0.0705248 -0.0572424 -0.119061 -0.0320605 -0.0378375 -0.0810461 -0.0553746 -0.0649485 --0.132395 --0.0955217 --0.053976 --0.00931864 -0.0614094 -0.0815519 -0.0285659 -0.0408087 -0.00312267 -0.0984088 -0.059539 --0.0463921 -0.0318645 -0.00573199 --0.0346672 --0.0507279 -0.0298437 -0.0516119 -0.00943411 --0.0140399 --0.00417769 --0.0361784 -0.0253873 -0.0583509 -0.06722 --0.000579411 -0.00147347 -0.144065 -0.0172923 -0.0264871 --0.0366625 -0.0391293 --0.0368379 -0.0496154 --0.14292 --0.0732369 --0.044404 --0.0396886 -0.0623395 -0.00739169 --0.0821077 --0.0616346 --0.0854167 --0.0244228 -0.0093886 --0.0398087 -0.00597467 -0.0286173 --0.083944 -0.0298107 --0.0562047 -0.0176111 -0.0466753 --0.151139 --0.043713 --0.0587202 -0.0311458 -0.00890841 --0.0353008 -0.0834232 --0.0732398 --0.00409053 -0.0794255 -0.0258189 -0.0386662 --0.00344122 --0.00268007 --0.0272299 -0.00483575 -0.0956926 -0.0314601 --0.0111158 -0.104485 --0.0285336 --0.0283815 -0.0618767 -0.038806 -0.0130133 --0.0267115 --0.0176318 -0.080395 -0.0526933 -0.0394725 --0.00548694 -0.0230637 --0.0334031 -0.0160621 -0.0384943 --0.105886 -0.0319144 -0.0418122 --0.0503468 --0.0431454 -0.0556583 --0.0427405 -0.00864464 --0.00839279 --0.078281 -0.0657453 -0.0565184 -0.0109094 --0.0970845 -0.0431311 -0.0120762 --0.0416117 -0.0881149 --0.00589838 --0.0544175 -0.0434729 --0.0632048 -0.104216 -0.00187609 --0.102795 --0.0632743 --0.0447556 --0.0247689 -0.0424317 --0.00261002 -0.00159651 --0.126583 --0.0516036 -0.0520622 --0.0140992 --0.0822563 --0.124262 --0.0338756 -0.0173493 -0.00298695 -0.0310441 -0.0419889 -0.0603713 --0.000406452 --0.0188532 -0.0617579 --0.0205493 -0.0235107 -0.0251998 --0.0222895 --0.0516633 --0.0133958 -0.0160088 --0.0151711 -0.0774039 --0.0161853 --0.0132267 -0.0563949 --0.0324344 --0.0958419 -0.0653156 --0.00461213 -0.0660459 -0.0700161 -0.0299072 -0.0225717 --0.0922848 --0.0331444 --0.0586294 --0.00123857 --0.103763 -0.0554393 -0.0445749 --0.054732 --0.0282974 -0.0400304 -0.00272902 --0.052408 --0.00362486 -0.125129 -0.045572 -0.0329649 --0.0155586 -0.119674 --0.0109335 -0.049569 --0.012965 --0.0237183 --0.0441433 -0.041777 --0.00958832 -0.0128805 -0.108689 --0.0207687 -0.0170278 -0.03182 --0.0446236 -0.0100511 --0.0667093 --0.0402362 -0.0158046 --0.00434831 -0.0176466 --0.0112784 --0.0922743 -0.0276716 --0.00776693 -0.0373473 -0.00862965 -0.016282 --0.0663711 -0.0274863 -0.00831702 --0.00933101 --0.0482634 -0.0516216 -0.0330002 -0.0476078 -0.0831604 --0.0069754 --0.0371496 --0.0278425 -0.0725207 -0.0169987 --0.0429344 --0.0139971 --0.0811161 --0.00774411 --0.0643977 -0.0191876 -0.0192419 --0.0379976 -0.0251985 --0.0285143 -0.0596489 -0.0462029 --0.0403321 -0.0164576 --0.0460117 -0.0220542 --0.0118934 -0.00197174 -0.00494047 -0.0335646 --0.00540305 -0.0256926 --0.0939884 -0.0342999 -0.103354 -0.0422727 --0.05065 --0.0114755 -0.127802 -0.0400094 -0.0902101 -0.0145126 -0.0103043 --0.0389342 -0.00937957 --0.0122917 --0.0487498 -0.0252179 -0.0706251 -0.0278287 -0.0764825 -0.094981 -0.0618933 --0.00387871 --0.0493021 --0.0362711 --0.0381748 --0.0172135 -0.0658751 --0.00743741 -0.115633 --0.0393611 --0.00865693 -0.0136365 --0.00228073 --0.0295109 -0.0308086 --0.10597 -0.0264105 -0.015619 --0.0836329 -0.0260254 --0.0700473 -0.0577948 --0.102657 -0.0826089 --0.0359133 -0.00173081 --0.0727572 --0.0628573 --0.0261049 -0.0386111 --0.0798824 --0.0450661 --0.108777 --0.000830067 -0.0936936 -0.0237212 -0.0647913 --0.00615468 -0.0387491 -0.0566991 --0.0488256 --0.025266 -0.0227839 --0.0228869 -0.00327419 --0.118836 -0.0222242 -0.00843748 --0.0411863 --0.023073 -0.00408694 -0.00557377 --0.099105 -0.0831088 -0.00108342 -0.0646853 -0.017609 -0.0416715 -0.0536999 --0.0205712 --0.00391368 -0.00698577 -0.0193642 --0.00363798 --0.0123936 -0.00906916 --0.0648344 --0.022655 -0.0162051 --0.0105244 -0.0135771 -0.00394064 -0.0177482 --0.0123166 --0.0338319 -0.0757913 -0.0137628 -0.0731558 -0.0453899 -0.0152821 --0.0419565 --0.0111986 --0.0168056 -0.00624634 -0.0247883 --0.0103153 --0.0888884 -0.038254 --0.0111308 --0.0737781 --0.0309503 --0.0274264 -0.0264654 -0.0399306 -0.00168298 -0.050592 -0.0641067 --0.00268421 --0.090096 -0.0429496 --0.00518764 --0.0641769 --0.019791 --0.0359704 -0.0173237 --0.000412925 --0.00577109 -0.0256805 -0.0711861 -0.0319399 --0.0920668 --0.00251949 --0.0202022 -0.0522068 --0.0595796 -0.113647 -0.0277318 --0.022147 -0.00382165 -0.00112638 -0.00179496 --0.0562126 --0.0620582 -0.0401989 -0.086266 -0.0188599 -0.0182862 -0.0803862 -0.0650175 -0.0174517 --0.0381624 --0.0254492 --0.0130467 -0.00693802 --0.0506259 -0.0105153 -0.106646 -0.032323 -0.0312006 --0.00688619 -0.00785302 --0.000146313 -0.00242618 -0.0410085 -0.0524004 -0.0718831 -0.0526988 -0.0709615 --0.0310552 --0.0544331 --0.00465152 --0.00640931 -0.0451795 --0.0198089 --0.0243013 -0.0559088 --0.0317417 --0.0507449 --0.0224098 --0.0729802 -0.0290616 --0.0244746 --0.0441225 --0.0388869 -0.0969727 -0.00588798 --0.0930338 -0.0365125 --0.0929528 diff --git a/test/energies_missing_dims.txt b/test/energies_missing_dims.txt deleted file mode 100644 index 96b22cf..0000000 --- a/test/energies_missing_dims.txt +++ /dev/null @@ -1,27000 +0,0 @@ -0.0308645 -0.0516409 --0.0372436 -0.0820707 --0.0226339 -0.033735 --0.00625955 -0.0569459 --0.033396 --0.014739 -0.0691835 -0.0534483 -0.0464541 -0.055424 -0.0696277 --0.00808105 -0.00386449 -0.00657428 -0.0132109 --0.0142339 -0.0507394 --0.1246 --0.0223525 --0.00525576 --0.0165646 -0.0415934 -0.0111037 --0.00513877 -0.0770166 --0.0406902 --0.0228645 -0.00648264 --0.0256219 --0.0810463 --0.157624 -0.008885 -0.102756 -0.041444 --0.0675043 -0.0551242 --0.00119549 --0.123272 --0.0175084 -0.0415345 -0.000500868 --0.0215283 -0.0856722 -0.00131738 -0.0295529 --0.0136292 --0.0141261 -0.0274014 -0.057312 --0.0180091 -0.117126 --0.0151423 -0.0446996 -0.00662323 --0.0242292 --0.061973 --0.0412295 -0.0515144 --0.0181647 -0.0246093 -0.0848719 --0.0250809 -0.032719 -0.00825783 -0.0033168 --0.0515549 --0.0522978 --0.0230888 -0.0570586 --0.0147485 --0.0750861 -0.026216 --0.0450335 --0.0497685 -0.0520554 -0.0976396 --0.0224044 -0.0879578 -0.0422316 --0.0183117 --0.0260052 --0.0211067 -0.0334565 --0.0670063 -0.0361228 --0.0435529 --0.0606017 -0.00703022 -0.00286057 -0.134304 --0.00202847 -0.0255919 --0.00269161 --0.00549607 -0.0322925 -0.110516 -0.0168571 --0.103557 -0.0740116 --0.0713564 --0.144603 -0.0224168 --0.115349 --0.00684859 -0.0801709 -0.0104723 --0.00188117 --0.0706797 --0.100856 -0.0279019 --0.0306559 -0.134469 -0.024266 -0.0150065 -0.0544051 --0.00910293 -0.026228 -0.00427096 --0.0139876 -0.00941329 --0.0962699 --0.00127273 -0.00656044 -0.0153704 -0.0380347 -0.0687408 -0.012872 -0.0363604 --0.0350818 --0.0246688 -0.0472708 --0.0343659 -0.00351563 -0.0655163 --0.036697 --0.0346217 -0.0202581 --0.00133536 --0.00410437 --0.0119323 -0.0302696 -0.0188541 --0.0460235 --0.0808116 -0.0310588 -0.112092 -0.0373349 --0.0102428 -0.031298 -0.0364229 -0.0100644 -0.0546984 --0.0445048 -0.0262742 --0.0875192 --0.0310426 -0.118986 -0.070811 -0.0272355 -0.0670444 -0.0325373 -0.0609531 -0.0558104 --0.072597 --0.0280072 --0.0239 -0.03846 --0.0111382 -0.00798039 -0.0179202 --0.128985 -0.0106995 -0.0292859 -0.0287638 -0.0723743 --0.0252697 --0.0612659 --0.0626469 -0.0177292 --0.0216514 --0.0635854 --0.0392152 -0.0364605 --0.0878812 --0.1099 -0.0273616 --0.0246015 --0.0549717 -0.00143716 -0.0449641 --0.000938776 -0.0354448 --0.00285385 -0.0764054 --0.0158451 -0.0101444 -0.0158253 --0.0345056 -0.0213088 --0.0316636 --0.00267209 -0.00560842 --0.0136518 --0.0346598 --0.0415089 --0.0577115 -0.0351439 -0.0568328 --0.0304328 --0.0394946 --0.0592326 --0.0230289 --0.0468417 -0.0215764 -0.0479623 -0.0103009 --0.0148725 --0.0431197 -0.124396 -0.050788 --0.0737177 --0.0748923 -0.057414 --0.0218766 -0.0511078 -0.0212416 --0.107736 --0.0804682 --0.0234674 -0.0239783 -0.0369111 -0.0217391 -0.00480653 --0.00306915 -0.0196276 -0.0491403 -0.0348147 -0.0219681 --0.0481094 -0.00673192 -0.0267093 --0.14759 -0.0412054 --0.00609256 --0.0178759 --0.0980539 --0.0054079 --0.0358975 -0.0845628 --0.0168046 --0.0363894 --0.00607446 -0.0519952 -0.0255141 --0.0752514 --0.12057 -0.0388646 --0.0313669 -0.0399909 -0.0856311 -0.0234747 -0.0358762 -0.0326557 -0.0446998 --0.0222283 -0.0241487 -0.0498218 -0.0275058 --0.067954 -0.050546 -0.0668633 --0.0281753 --0.0116999 -0.003175 --0.0938604 -0.0137827 -0.104784 --0.00221658 -0.027158 -0.000186824 --0.0476551 --0.0810753 -0.0339732 --0.0706504 --0.058123 --0.0188416 -0.0132938 --0.00049426 --0.0956247 -0.030849 --0.0411936 -0.0806831 -0.0441067 -0.0297435 --0.0287092 --0.104163 --0.00521258 --0.0021925 -0.0582449 -0.0427432 -0.032445 --0.0163053 -0.0457383 -0.0510315 -0.0295363 -0.00495594 -0.0563141 --0.0430318 --0.0710721 --0.0174386 -0.0355524 -0.00757032 -0.0370404 --0.011508 --0.018412 --0.00545593 -0.030685 --0.0408334 -0.0367333 --0.0498769 --0.0534089 --0.014726 --0.0301866 -0.0656077 --0.137157 -0.0704891 -0.0230547 -0.0785067 -0.0797534 -0.000159856 --0.0479258 --0.086601 -0.0116875 --0.0171676 -0.088184 -0.0363266 --0.0398442 -0.0497888 --0.0713828 -0.0151341 --0.00620092 --0.00766389 -0.0416875 --0.0150041 --0.0175595 -0.0950308 --0.0208116 -0.00874232 --0.0320298 -0.112517 -0.0299799 --0.0333762 --0.0236949 -0.0433567 --0.0567226 --0.0491892 --0.0323361 --0.00126065 --0.0357083 -0.0579088 --0.0612785 -0.0335077 --0.0147291 --0.0561009 --0.109011 --0.0371523 --0.0352473 -0.0671868 --0.0529559 -0.054803 --0.0533908 --0.00506195 -0.0494594 --0.0114208 --0.0240579 -0.0522038 --0.00551144 -0.000566421 -0.0190744 -0.0176934 --0.00847065 --0.0899255 -0.0358964 --0.00923809 --0.0939659 -0.0251487 --0.0449234 -0.107663 -0.0563524 --0.00684106 --0.00652984 -0.018698 --0.0116574 --0.0329916 -0.101893 --0.0105698 -0.0130979 --0.0690334 -0.0165363 --0.0799316 --0.0506603 -0.0217548 --0.0771469 --0.0721217 --0.0170876 -0.0523118 --0.0476928 -0.0511935 --0.00537641 -0.0556817 --0.0433543 --0.047591 -0.0306336 -0.0339324 -0.00359305 -0.0517035 -0.0107903 -0.100934 --0.000689031 --0.0126249 --0.0163449 -0.108918 -0.00264713 -0.0753448 --0.0400515 -0.00474827 --0.0033369 --0.108544 --0.099045 -0.017586 -0.0331886 --0.0191247 --0.0883805 -0.0169444 --0.0136152 --0.0161712 -0.00230542 -0.043326 --0.00426332 --0.0404782 -0.0124267 -0.0337924 --0.0176871 --0.0755349 -0.0332334 -0.00582624 -0.0485881 -0.0132068 -0.0683532 -0.0389367 -0.00297262 -0.0458018 --0.118238 -0.0513869 -0.0229445 -0.0766255 -0.0854641 -0.0475655 --0.000871688 -0.0486395 -0.0845552 --0.0195395 --0.0582332 --0.00324118 --0.0341277 -0.0890039 -0.0303298 -0.0791043 --0.0814651 -0.00931673 --0.017549 -0.0105482 -0.00995059 -0.0312942 -0.00414318 --0.0184713 -0.0514252 --0.0378693 --0.0462113 --0.0228311 --0.0237844 --0.00965414 --0.036855 --0.011692 -0.0138472 --0.011148 -0.00872011 -0.0542577 --0.0937057 -0.0401512 --0.0181686 --0.0526394 --0.0532819 --0.0500185 -0.0103428 --0.0134959 --0.00355868 --0.0108491 -0.0654506 -0.00118572 --0.0142436 --0.036743 --0.109576 -0.0353489 --0.035055 -0.0422899 --0.0243856 -0.0383666 --0.00594658 -0.033907 -0.0219067 --0.0574439 --0.0522442 --0.0318965 -0.0528587 -0.00921342 -0.0225927 -0.0309255 --0.0371997 -0.0194936 --0.0693847 --0.0169131 --0.0158145 -0.0116853 --0.0162904 --0.0305064 -0.0203308 --0.0210279 --0.0268521 --0.0297152 -0.0140648 --0.0336041 --0.0400495 -0.0178674 -0.0663354 --0.0640586 --0.0123205 -0.00499657 --0.0118408 -0.0293121 --0.0830836 -0.0108871 --0.0225523 -0.0599629 -0.0254025 --0.0608245 -0.033104 --0.00830891 -0.0399999 --0.0913732 --0.0431595 -0.0152059 --0.114812 -0.107574 --0.0645686 --0.0254559 --0.0683296 --0.0574612 --0.0211542 -0.0409796 --0.0427392 -0.078155 -0.000530655 -0.00905785 -0.100133 --0.0674099 --0.0865374 --0.031568 -0.0149109 --0.0244864 -0.039382 --0.00535557 -0.13015 --0.0201789 --0.0592228 -0.00485171 --0.0190597 -0.0139106 --0.0512991 -0.0260171 --0.0534325 -0.00612229 -0.0172686 -0.0409247 --0.136056 --0.00396504 --0.055011 --0.0161666 --0.00128684 --0.074486 --0.0128912 -0.0175768 --0.0298114 -0.0929244 --0.0169275 -0.0270999 -0.0166902 -0.10017 --0.0254456 -0.0756269 -0.0340717 --0.0426125 -0.0131301 --0.0454821 -0.0434918 --0.0167738 -0.00720756 --0.0732456 -0.176666 -0.11344 -0.0822589 -0.0246033 --0.0495199 -0.0433807 --0.0626546 --0.0169422 --0.012137 --0.0529774 --0.0327731 -0.0735774 --0.0776482 -0.0330139 -0.0646434 -0.086031 -0.0256474 --0.0877501 --0.00193148 --0.0273116 --0.00444162 --0.0315537 --0.0103882 -0.0509727 -0.0301982 -0.0725242 --0.00486936 --0.048548 --0.0483497 --0.0152406 --0.0274753 --0.0651148 -0.0524905 --0.0486924 --0.0293263 -0.00784585 --0.0619322 -0.00878343 -0.0565511 --0.018688 -0.0365869 --0.0160295 --0.101998 --0.0512455 --0.0639755 --0.0295721 --0.0484118 --8.10176e-05 -0.0728519 -0.00893463 -0.0210568 --0.0829582 --0.000653867 -0.0872807 -0.0250615 --0.065867 -0.0244047 -0.0323926 -0.0627427 -0.00223812 -0.0306591 --0.0810905 -0.000875676 -0.0754067 --0.0275729 -0.0349838 --0.0188508 --0.0122608 --0.0153236 -0.106542 --0.00298782 -0.0912965 -0.117247 --0.0350692 -0.0364022 --0.0397197 --0.0751481 -0.030992 --0.0895261 --0.0162347 --0.00855308 -0.00432553 -0.0706654 -0.0137814 --0.0601039 -0.0293948 -0.00252111 --0.0126963 -0.00945787 -0.0278767 -0.0362721 -0.0532605 --0.0470446 -0.0262362 -0.0187899 --0.00578905 --0.00896394 -0.0031643 --0.031403 -0.0715505 -0.000418648 --0.00203215 --0.0501922 --0.0626643 --0.00771904 -0.0704528 -0.0312255 -0.0183472 --0.00394311 -0.0710777 -0.0415632 -0.00831271 -0.0133672 --0.00674838 --0.0720237 --0.0302772 -0.0415742 --0.0105835 -0.0550366 -0.0361412 -0.0400411 -0.0735218 --0.00995681 -0.00310443 --0.0129949 --0.0283473 -0.0342393 -0.00876783 --0.0332342 -0.000456335 --0.0797514 --0.0862606 --0.0258245 -0.0308313 -0.036117 --0.0429367 --0.00480292 -0.00875149 --0.00410896 --0.0349268 --0.0491596 -0.0320619 -0.0812149 -0.00339805 --0.116992 -0.015287 --0.123688 -0.0060946 -0.00439938 --0.0483882 --0.0359919 --0.0104474 --0.124052 --0.0304121 --0.0361125 --0.0371059 -0.00127786 -0.00900468 -0.0734184 -0.0538047 --0.0579423 -0.00999966 -0.0842834 -0.0211578 --0.0394338 -0.0463932 -0.0275512 -0.136415 --0.0114801 --0.0242055 --0.027716 -0.0407213 --0.0269746 --0.0382461 --0.0216518 -0.0575415 --0.0212096 --0.0263388 -0.0737194 --0.0805715 -0.0239732 -0.0113193 --0.0382041 --0.00848397 -0.00421294 --0.0531676 --0.0237574 --0.0310292 -0.00990805 -0.0968604 --0.00579088 -0.0996253 -0.0424533 --0.133169 --0.0100535 -0.0487158 --0.0245448 --0.0162917 --0.0164555 --0.0348698 -0.0117864 -0.0517276 -0.030752 -0.0460387 -0.0126396 --0.11842 --0.063258 -0.0101301 --0.0928154 -0.0276784 --0.0201262 --0.0269232 -0.00440432 -0.0994262 --0.00526141 --0.0141071 -0.0109622 -0.0447297 -0.0245941 -0.0333794 -0.0218839 -0.0733158 -0.00606466 -0.0021081 --0.0737226 --0.0345829 -0.0164784 --0.0785822 -0.0578673 -0.0626709 -0.0886445 --0.0314897 -0.0379565 -0.000918703 -0.00182757 --0.00928136 --0.00296388 --0.0576952 -0.0567959 --0.0472562 --0.0308433 --0.0740993 -0.0433313 --0.0138478 -0.0814094 --0.0379088 --0.0234786 --0.0489299 --0.0211154 --0.0662742 -0.00397578 --0.0356576 --0.0114631 -0.0176631 -0.061823 --0.0291237 --0.0194032 --0.0168758 -0.150542 -0.0239572 --0.0595919 -0.0487552 --0.0653994 -0.0697174 -0.0410574 --0.0294576 --0.0367523 --0.010055 -0.0278672 --0.0749002 --0.13918 --0.0390895 --0.0657384 -0.102744 -0.0506849 -0.0169909 -0.0666828 --0.00651389 -0.0432649 --0.0679476 -0.0317009 --0.0229717 --0.0373829 -0.000461347 -0.0197436 --0.0817565 --0.0512504 -0.0417091 -0.0364173 -0.0483391 -0.0460576 -0.0323557 -0.0100054 --0.125625 -0.0125916 -0.0973543 -0.0210599 --0.0681311 -0.039177 -0.00600129 -0.0694246 --0.0615256 --0.0622721 --0.053778 --0.126189 -0.0688255 -0.0866397 --0.0509379 --0.0554828 -0.0764604 -0.0889148 -0.0404121 --0.0739584 --0.00553475 -0.0151495 -0.0374199 -0.0535118 --0.0398661 -0.0484343 --0.0402496 --0.0141245 -0.026733 -0.0190819 --0.0499736 -0.0307454 --0.062608 --0.0495442 -0.0586214 -0.0178168 -0.0136639 --0.0474722 --0.00292084 --0.0323333 -0.08095 --0.0285247 -0.032024 --0.0661616 --0.0239961 -0.00053988 --0.000311742 --0.0236595 -0.0312913 -0.013682 --0.0440841 --0.0963884 --0.019821 -0.0324951 -0.0717487 --0.0103562 --0.00237923 --0.021622 -0.0683229 -0.00559073 -0.0123898 -0.0181455 --0.0110554 --0.0485803 --0.0546186 -0.0753796 -0.0371108 --0.00836091 --0.0517753 --0.0264704 --0.0707627 -0.00484414 --0.168102 --0.0230803 -0.0831571 --0.00599728 --0.0106796 --0.0165397 -0.0491761 -0.0313174 --0.00984378 --0.12453 --0.0240151 --0.0875485 -0.0276417 -0.045802 -0.0577389 -0.00909778 --0.00340933 -0.0370508 --0.0573397 -0.114639 --0.0594927 -0.00480313 -0.0433087 -0.0347686 --0.0170427 --0.0564256 -0.0425665 --0.0300106 --0.0181432 --0.00651065 --0.0354174 -0.0508464 -0.018711 -0.0654419 --0.0954293 --0.0176934 -0.0919089 --0.0436615 --0.00317416 --0.0658618 --0.028968 --0.0887808 --0.0432154 -0.0211302 --0.0244027 -0.0397147 --0.0166538 --0.0334165 --0.0728926 --0.0182748 --0.0507463 --0.0105603 --0.0241478 --0.00757648 -0.0205371 --0.00781067 --0.108523 --0.0278891 -0.00585791 -0.109537 --0.0868394 --0.0383521 --0.0472573 -0.0904804 -0.0648231 -0.0686351 --0.0420609 --0.0359284 --0.0880115 -0.0390079 --0.0521189 -0.121618 --0.12784 --0.0232516 --0.0293747 -0.0103313 --0.0122209 --0.0509269 -0.0300923 --0.0402631 -0.0069758 --0.00829246 --0.0675857 --0.0704106 --0.0295082 --0.00704854 -0.00719801 -0.0142568 --0.0419585 -0.0396344 -0.0257898 -0.0618611 --0.0326476 -0.0108971 --0.0449736 -0.00715288 -0.0626625 --0.0748179 --0.0144087 -0.116982 -0.169526 --0.0230586 -0.0398943 --0.0132717 --0.00727056 -0.0106161 -0.0929748 -0.00595346 --0.0765408 --0.0187015 --0.0045902 --0.0468841 --0.0328693 -0.115646 --0.0695557 -0.0390348 --0.0612541 -0.0198401 -0.00999747 -0.0543206 --0.00478236 -0.0308963 -0.0048764 --0.00424085 -0.0226371 --0.0938846 -0.0190406 -0.0231598 --0.027572 -0.00601491 --0.0146888 -0.0257939 -0.0491861 --0.0102947 -0.048784 -0.00539415 --0.0769831 --0.0265447 -0.0747471 --0.139694 -0.0539122 -0.0420279 -0.0500398 -0.0480328 -0.05689 --0.0720242 -0.00610964 -0.00619409 -0.0556372 --0.0106081 -0.0745705 --0.0605052 --0.0605502 --0.0520455 --0.0511042 --0.0270503 --0.0860654 -0.0259898 -0.0087095 --0.0173826 -0.0188454 -0.025692 --0.0248551 --0.0174404 --0.00111128 -0.0452337 --0.0230688 -0.0135539 --0.0291479 -0.0145137 --0.00172887 --0.0365557 -0.0428527 --0.0873892 -0.0636353 -0.0111876 -0.0148778 --0.0212811 --0.0522247 -0.0188848 -0.050412 -0.0410302 --0.016147 -0.0991374 -0.111782 -0.0259609 -0.069063 -0.0326909 -0.0107307 -0.00795429 --0.0197331 -0.0519998 --0.0527466 --0.038647 --0.0339125 --0.0250723 --0.00684581 -0.0122571 -0.017551 --0.0142178 --0.0692795 --0.0530514 -0.00299294 --0.0548662 --0.0718623 -0.0205775 --0.0930789 -0.0312391 --0.00578388 -0.0540301 --0.0479335 --0.0664082 --0.0235154 --0.0677143 --0.0118039 -0.0252834 --0.0382779 -0.020159 --0.0874742 -0.0232086 --0.00703875 -0.0292776 -0.055119 -0.0319234 -0.0299921 --0.0269493 -0.0325426 --0.140001 --0.0125917 -0.0816204 -0.090867 -0.107778 --0.0768016 --0.0302221 -0.0825788 -0.0786419 --0.000987282 -0.0739908 -0.0114724 -0.0184133 -0.0385497 -0.0991273 -0.00228807 --0.102954 --0.0267818 --0.029572 --0.0947422 --0.0228781 -0.0139503 -0.0298876 --0.00860946 --0.00815995 -0.100994 --0.0413704 --0.00961616 --0.0176303 --0.0510314 -0.0380946 --0.0127398 --0.00115974 --0.00343231 --0.0341758 -0.0244103 -0.0157253 --0.0159728 --0.117339 --0.0220347 --0.0124224 --0.0184627 --0.0437998 -0.0828765 --0.0397875 -0.0168861 --0.046429 --0.00486174 -0.0147167 -0.0267443 -0.0463401 -0.0542968 --0.0102647 -0.00543345 --0.0550344 -0.00688442 -0.0520809 -0.0373445 --0.0393251 --0.0518682 --0.0600102 --0.0267018 --0.000960198 -0.0697365 -0.0482901 --0.0577142 -0.0108452 -0.0527653 --0.0118763 --0.07657 -0.00372756 -0.0112365 --0.0743186 --0.022697 --0.180495 --0.0179139 --0.0401249 -0.00310746 --0.0591562 -0.0604341 -0.042756 -0.041664 --0.0257769 --0.049474 --0.0062609 -0.0165991 --0.0629173 --0.045437 -0.000817151 -0.0703575 --0.0309424 -0.0608772 -0.0202578 --0.0919719 --0.0181653 -0.0416724 -0.0884565 -0.0932045 --0.0491721 --0.0779327 --0.0492453 --0.0880957 -0.110134 -0.0146802 -0.0737094 --0.0843016 -0.0521629 -0.0229557 -0.0174626 -0.0363299 --0.0858385 -0.0274968 -0.103363 --0.0153747 --0.00355752 --0.01016 --0.0557633 --0.00039904 --0.0280463 -0.0152841 --0.0840365 --0.0204045 -0.0234327 --0.0164855 --0.0960661 -0.0409359 --0.0494191 -0.0609321 -0.0432746 --0.00933715 -0.0282997 --0.0269742 -0.0301578 -0.15836 -0.0375643 --0.00866343 -0.0545204 --0.0465181 --0.0908901 -0.0385915 --0.0299671 --0.00744755 --0.0307943 --0.0189873 -0.0774755 --0.06971 --0.0437315 -0.0322671 -0.0480685 --0.0581697 --0.000995907 -0.0955022 -0.0359584 --0.0689132 -0.00346993 --0.0560508 --0.0476859 -0.0265172 --0.0531729 --0.0237352 -0.0677862 -0.0554518 --0.0186259 --0.0227288 -0.0536532 --0.0286803 -0.043311 --0.0336676 --0.019736 --0.0112367 -0.00261729 -0.0681916 -0.0211655 -0.0126865 --0.0139991 --0.0513157 --0.108313 -0.0160165 --0.00429078 -0.0680811 -0.0312591 -0.0428282 -0.0313547 --0.0995978 --0.119048 -0.0577864 --0.016422 -0.00550279 -0.057995 --0.0714404 -0.0825217 --0.00860249 -0.0763362 -0.104091 --0.0459652 -0.0162874 -0.062495 --0.040655 -0.0235642 -0.0244613 -0.101214 -3.49761e-06 -0.0581756 --0.00580707 --0.0666581 --0.00327255 --0.0200188 --0.003494 --0.00866481 --0.0320476 -0.00216219 -0.0206755 -0.00594975 --0.00757634 -0.0386501 --0.0304075 --0.11887 --0.0250131 -0.0236734 --0.0282043 --0.040437 --0.0890501 --0.102919 --0.028277 --0.0608368 --0.021288 --0.125932 -0.000775441 --0.0493882 --0.0150684 --0.079438 -0.064948 -0.00951296 -0.0357952 -0.0559721 --0.107586 --0.0211707 --0.0111487 -0.033858 --0.0191464 --0.00935871 -0.0117812 --0.0203202 --0.00283685 --0.0305018 --0.0943797 -0.0419739 --0.0363971 -0.0433166 -0.0384531 --0.0222643 -0.0365936 -0.03026 --0.0154801 --0.0514547 -0.0422223 -0.139989 --0.00158128 -0.13421 -0.00258245 -0.0238063 -0.061399 --0.0103759 -0.041856 -0.00172355 -0.0272426 -0.0188128 --0.0294872 --0.00745226 --0.137608 --0.0554446 --0.00701622 --0.105783 --0.0253129 --0.0212576 -0.0129159 -0.0129688 -0.0361729 -0.0212668 -0.0282491 --0.0916097 -0.0186799 --0.0477537 --0.000746745 --0.0167945 --0.0159996 --0.0131416 -0.0735302 --0.0374139 -0.01564 -0.0760902 -0.0560913 --0.0168907 --0.047456 -0.0489318 -0.0483093 --0.0228779 --0.0364995 --0.00840871 --0.060877 -0.0119046 --0.064213 -0.0186821 --0.00486365 -0.0457585 -0.016903 -0.0113254 --0.0330514 -0.0954248 -0.00183872 --0.0527253 -0.101908 -0.0162794 -0.0462397 --0.0249353 --0.0531544 -0.0138595 -0.0570421 --0.0188045 -0.0156188 -0.0470614 -0.0544872 --0.00223942 --0.0743863 -0.0504351 -0.071401 -0.0455287 --0.0960784 -0.0811592 --0.0566724 -0.00505807 --0.0349213 -0.00294724 -0.0226531 --0.0278685 --0.0505575 --0.0292898 -0.010509 --0.00805785 --0.0664833 --0.0323559 --0.0364487 --0.0445682 --0.0372404 -0.00740151 -0.105343 --0.0485267 -0.0287049 -0.0545656 -0.0192561 -0.0222744 --0.0166531 --0.011336 --0.0232833 -0.0364384 -0.0668279 --0.0448273 -0.0930648 --0.0328572 -0.053937 -0.0248342 --0.040152 -0.0581853 -0.0776517 --0.0544431 --0.0623781 -0.00899188 -0.0320839 --0.0700729 -0.0194675 --0.0413684 -0.0291336 -0.0394059 -0.00525179 --0.108176 -0.00906513 -0.0581868 -0.0425081 -0.0157437 -0.0453076 -0.0154849 --0.0467498 -0.0480221 --0.00313799 -0.00418631 -0.0647279 --0.013788 --0.068069 --0.033622 --0.045377 -0.0100611 -0.0226647 -0.0680782 --0.0660765 --0.0159892 -0.0389891 --0.0113831 --0.0321982 --0.0889044 -0.0295804 --0.0632579 --0.00299077 --0.00775467 --0.0983093 -0.0648526 --0.00212077 --0.0156415 -0.0344076 --0.058147 --0.0295149 --0.0542967 -0.027461 -0.0618879 -0.0199462 -0.0278257 --0.000397546 --0.0587496 -0.0572175 -0.0406638 -0.0723026 --0.00541511 --0.00628739 --0.0617425 -0.0157407 -0.026491 -0.060939 --0.00634953 -0.0316052 --0.0163823 -0.0382047 --0.0128676 -0.091104 --0.0302222 --0.0801239 --0.0158835 --0.0534638 -0.0669638 -0.00582047 --0.0108642 -0.0304559 --0.0137062 --0.048674 --0.0351953 -0.00546537 -0.0266047 --0.0408896 -0.00961687 --0.0629836 --0.0234768 --0.0529453 -0.0531778 --0.0341539 -0.0261624 --0.0976671 -0.0278047 -0.0400903 --0.0180132 --0.0148096 -0.0809057 -0.0280536 -0.0125604 -0.00537806 -0.033943 -0.00985206 --0.0473585 --0.0482004 --0.0944622 -0.00163601 --0.054499 -0.0712818 -0.0241528 --0.00674741 -0.0599357 -0.0551558 -0.00508733 -0.00416907 --0.00488328 --0.0828257 --0.0405775 -0.00530695 -0.0165062 --0.031002 --0.0220739 --0.0977757 --0.0061985 -0.0134205 --0.0400121 --0.080234 --0.0180974 --0.157161 --0.0404881 -0.0597654 --0.0528541 --0.0807632 -0.0314672 --0.0750229 --0.0679242 --0.0210542 -0.0225396 -0.0681174 --0.0888354 --0.00800006 --0.024458 -0.0168324 --0.0304054 -0.0851629 -0.0980434 -0.0282401 --0.0730447 -0.00642408 -0.0434555 --0.095692 -0.019439 -0.0263532 --0.0217787 -0.0170518 --0.00163942 -0.0353232 -0.0387569 -0.00968297 --0.0049489 -0.0236129 --0.110415 -0.0135929 --0.0106874 --0.0161352 --0.0475247 --0.0288756 -0.0778876 -0.0156476 --0.0230152 -0.0539646 --0.0517804 -0.0386011 -0.000801723 -0.00118111 --0.0420627 --0.0629809 -0.0208727 -0.0451637 -0.0837696 --0.0611876 --0.0143457 --0.0524181 --0.0033114 --0.0246119 -0.143898 --0.0286353 --0.0546981 -0.0885604 -0.0561044 -0.00333736 -0.0160782 --0.0290882 --0.0486491 -0.0191738 --0.0576589 -0.0523428 -0.0549754 --0.0265236 -0.0347006 --0.0107694 --0.0549225 -0.0883097 --0.0142982 --0.0895588 --0.0111439 --0.0481698 --0.0155642 -0.0613868 --0.015091 --0.0583171 -0.000610036 --0.10114 --0.000412612 -0.00659743 --0.00760573 -0.0582459 -0.0120687 --0.104889 --0.0891941 -0.00522005 -0.00457641 -0.040877 --0.0529577 --0.00587124 -0.075493 -0.00419631 -0.00666881 -0.0503815 -0.0313585 --0.00391115 --0.0322299 --0.0852408 -0.0773211 -0.029528 -0.0245523 -0.0081733 --0.0325742 -0.0117921 -0.0407824 --0.00025945 -0.0445202 -0.00719552 -0.035156 --0.0107841 -0.00869308 -0.0420256 -0.0588297 -0.00938035 --0.153553 -0.0346145 --0.0705262 --0.0377164 -0.027317 -0.0155155 -0.105021 -0.0929983 --0.0310588 -0.0132389 --0.00289596 --0.0477715 --0.0240047 --0.047133 -0.0474284 -0.0310582 -0.0653851 --0.018941 -0.0358102 -0.0148694 --0.0395905 --0.0432933 -0.0271986 -0.0624765 --0.0379201 -0.0511127 --0.0435644 -0.0306223 -0.0524283 -0.00290202 -0.00833474 -0.0257306 --0.141366 --0.0341222 -0.0212877 --0.0212693 --0.00224098 -0.00285212 --0.0173012 -0.00363253 --0.0446147 --0.0662786 --0.030783 -0.0659672 -0.0352868 -0.048496 -0.0389534 -0.0412505 -0.0425276 -0.0359669 -0.0486581 --0.0781937 -0.0239578 -0.026307 -0.0599495 -0.0214989 -0.0944006 --0.0777047 --0.0256389 -0.0256198 --0.0596346 --0.0215797 --0.0497575 -0.0221655 -0.0324881 --0.0117818 -0.037262 -0.0349498 -0.026768 --0.0724242 -0.0603441 -0.0505302 --0.0926192 -0.024078 -0.026764 -0.0511092 --0.00249767 -0.00549904 --0.0520094 -0.0980594 --0.0523108 --0.0208284 -0.0165162 -0.0164396 -0.083701 --0.0533018 -0.0581046 --0.00326566 -0.0263939 -0.0281585 --0.0779127 -0.032886 -0.0344879 -0.0320111 -0.0293417 --0.029343 -0.00436257 -0.00286594 --0.0434886 --0.0588907 -0.0160718 -0.0326261 --0.00158162 --0.0392206 --0.0304139 --0.0210439 --0.102764 -0.0308101 -0.00514671 --0.0118458 --0.0287297 -5.78666e-05 -0.0227635 --0.0158095 -0.055439 --0.00291233 -0.0614811 -0.0392284 --0.0415359 -0.0198881 --0.0562737 -0.0353156 -0.012944 --0.0112764 --0.0221105 -0.0237713 -0.0214872 --0.0225386 --0.000471481 -0.0447612 -0.00759804 --0.0181023 --0.0149648 --0.000731674 --0.0162885 --0.00070934 --0.00599792 -0.0203208 -0.029207 -0.00838845 --0.0679078 -0.0218394 --0.00322322 -0.00771666 -0.077108 -0.0730406 -0.0155082 --0.0318544 --0.000984547 --0.00775014 -0.0309504 --0.00556894 --0.0331421 --0.0160866 -0.0634734 -0.0125864 --0.0340042 --0.0244552 --0.0318392 --0.0532131 -0.0254966 -0.0143363 -0.0453328 -0.0308611 -0.051063 --0.0205794 --0.00568485 -0.0587283 -0.0149038 -0.055922 --0.0048781 -0.0476567 --0.0458745 -0.0853551 -0.0854753 -0.0238667 --0.0321833 -0.0368716 --0.0446721 -0.0285306 --0.0553607 --0.00881158 --0.0197942 --0.0379262 -0.0551781 --0.0558834 --0.124869 -0.0272756 --0.0616918 -0.073802 --0.00261749 -0.0520245 --0.101537 --0.0388592 --0.0386402 -0.032795 -0.0764372 --0.0407157 -0.0398196 --0.030268 --0.0766051 --0.0276801 -0.00502217 -0.0628009 -0.00365716 -0.0146808 -0.0628827 --0.0391802 --0.0903182 --0.0127746 -0.0139017 -0.0451983 --0.00951388 -0.0300724 -0.0111627 --0.01139 --0.0216467 --0.0380871 --0.0426103 -0.040651 -0.0748163 -0.0229426 --0.060047 -0.00410496 -0.0986 -0.0661636 -0.0448103 -0.0273784 --0.00505232 --0.00991869 -0.0235808 -0.0178162 --0.0196874 --0.0969781 -0.038163 --0.0318039 --0.0201524 --0.0111612 --0.0379994 --0.00257419 --0.0657118 --0.0192038 -0.0839714 --0.0339604 --0.0540187 --0.00358428 --0.0724429 --0.0364065 -0.00493975 -0.0253508 -0.0434059 -0.0646275 --0.0572191 --0.097178 --0.0345065 -0.0517893 -0.0248374 --0.0787583 -0.0751333 -0.0612806 --0.0299277 --0.0201349 -0.0274747 --0.0252652 -0.0835697 --0.0408753 --0.0531785 --0.05112 -0.0042389 -0.0071722 -0.0228775 -0.058272 --0.0936008 --0.0745494 -0.104003 --0.0050016 -0.0527578 --0.0157093 -0.0343232 -0.0568871 -0.043182 --0.0456473 --0.052137 -0.0270033 -0.0311733 -0.00527341 --0.0232534 --0.0131187 --0.0637446 -0.0305897 --0.001231 -0.00301936 -0.0159899 -0.101775 --0.0244874 -0.0612051 -0.0401718 --0.0960764 --0.032394 -0.00969752 -0.0980595 -0.07551 -0.0189238 --0.0255641 --0.0726197 --0.113502 --0.018552 -0.00863384 --0.0351033 -0.0250232 --0.0269203 --0.0128212 --0.0156512 -0.0397011 -0.00993699 --0.0528899 --0.00148819 --0.11163 -0.0428342 -0.00168157 -0.0396487 -0.0438646 -0.000193842 --0.0300641 -0.0566055 -0.0134133 --0.0857397 -0.0154935 -0.0288285 -0.0901621 --0.0635093 -0.0292564 -0.0221042 -0.0263895 -0.0695828 --0.00232066 --0.0387192 --0.0229961 --0.0362579 -0.0231796 --0.0430763 -0.00551432 --0.00453532 -0.0392759 --0.0139089 --0.0311861 -0.0119769 -0.107248 -0.0294569 -0.0944596 --0.0221984 -0.0280803 --0.0412601 --0.0545471 -0.0303783 -0.0741636 --0.0139333 -0.00652533 -0.0423087 -0.0122459 -0.0201087 --0.00574679 -0.0637114 --0.0275874 -0.142128 --0.00660776 -0.00362675 --0.0688088 --0.03066 -0.0556691 -0.0544564 -0.0547246 -0.00660093 -0.0318825 -0.0236455 --0.00470763 -0.0686664 -0.0107879 --0.022398 -0.0294809 -0.0264035 -0.0562129 -0.0136284 --0.0565996 -0.0139268 -0.116234 -0.0381362 -0.118122 -0.00222617 -0.00652182 -0.0249165 --0.00702003 --0.0203819 --0.0276219 --0.0193134 -0.0785057 --0.0118166 -0.0741641 -0.0296791 --0.00838199 -0.031707 -0.014263 -0.00614419 -0.0276191 -0.00368755 -0.0139839 --0.0799563 --0.0649639 --0.0438761 -0.0749361 -0.0359305 --0.0519741 -0.0212692 --0.0578811 -0.0141759 --0.0290694 --0.059125 -0.040107 --0.0792458 --0.0519133 --0.0375751 --0.0422774 --0.0269501 -0.0560756 --0.0131459 --0.0404176 -0.00458573 -0.0408216 --0.0183038 -0.0800169 -0.00656392 --0.0544793 -0.1046 --0.0354098 --0.00319721 --0.0407932 --0.066212 --0.0132915 --0.0329799 --0.0503706 -0.0347023 --0.00939173 --0.101936 -0.0435854 -0.00633263 -0.00850754 -0.0245121 -0.025911 --0.0567717 -0.0422554 --0.0711115 --0.0493034 -0.0794102 -0.0647193 --0.0322696 --0.0164177 --0.0238949 -0.0232799 --0.0611871 -0.0774031 --0.0595126 -0.02618 --0.067565 -0.0493316 -0.0785532 --0.0272859 -0.0152125 --0.0138975 --0.0536758 --0.057513 --0.0613538 --0.0107567 --0.0251503 --0.0254289 -0.0197129 --0.0507543 -0.0681361 -0.00914167 --0.0323839 -0.0831195 -0.0178089 --0.0254549 --0.00202609 -0.0778062 -0.0975084 --0.00640848 --0.00600931 --0.00319379 --0.0111055 -0.038957 -0.0431852 -0.10243 --0.0459554 -0.013614 --0.0450405 -0.00233137 -0.0259988 --0.0319726 -0.0435976 --0.0742841 -0.0166959 -0.0367754 --0.00388354 --0.08541 -0.00270749 --0.0116201 --0.0455807 -0.00693986 -0.0338178 -0.082041 -0.065112 -0.123357 --0.0700269 --0.050033 -0.0653752 -0.0220729 --0.0350168 -0.120424 -0.0497299 -0.015789 -0.0571727 -0.0396227 -0.0102579 --0.0178852 -0.020237 -0.0736438 -0.00654749 -0.0969507 -0.024353 --0.0913835 -0.06678 --0.00743599 --0.0173508 -0.060217 -0.0682465 --0.0718285 -0.0146093 --0.0424332 -0.0932948 -0.00634314 --0.024248 -0.0456295 -0.07139 --0.046025 -0.029986 -0.133338 --0.0733103 -0.0033843 -0.0881157 -0.0193433 -0.0140152 -0.00690284 --0.0657116 --0.0670312 --0.0205191 -0.000792778 --0.0688034 --0.0292176 --0.0602122 -0.0375195 -0.0488364 --0.0340035 -0.0875278 --0.0408185 -0.0702993 -0.0238278 --0.0195061 --0.0356532 --0.00443205 --0.022906 --0.026836 -0.00131799 --0.0382656 -0.0397966 --0.156361 -0.0327292 --0.0116718 -0.0594936 --0.0929831 -0.0381208 --0.0265783 -0.0232092 --0.0556231 --0.0386535 --0.0151173 -0.00139371 --0.0487515 -0.0966131 --0.0235644 -0.100809 -0.04305 --0.0300986 --0.0153441 --0.0100871 --0.0580848 --0.0868394 --0.0252084 -0.0201882 -0.0253751 --0.0105134 --0.128538 --0.0729616 -0.0569543 -0.0566551 --0.0109836 -0.0494982 -0.0382189 -0.0470578 -0.0619525 -0.0805123 -0.0334474 --0.00958733 -0.0159404 -0.0786387 -0.0128034 -0.00527553 --0.114247 -0.0443535 -0.0501342 -0.0172466 -0.0773354 -0.0420845 -0.0365281 -0.0173423 -0.115696 -0.0205947 --0.0938176 --0.046184 -0.0400496 --0.0157527 -0.0253912 -0.0072561 --0.0343455 --0.000201962 --0.0848684 --0.0680621 -0.116638 --0.0607622 --0.047927 -0.0406248 --0.0022414 -0.0236685 --0.0692755 --0.0231461 --0.00114899 -0.064618 --0.024791 -0.0298326 --0.0152288 --0.0338614 --0.0331422 -0.0137081 --0.0276311 -0.0339391 --0.0118009 --0.162124 -0.113093 -0.0157009 --0.088027 --0.049183 -0.115925 -0.024166 -0.0263355 -0.0752748 -0.0227898 --0.00542907 -0.0347373 -0.00560224 -0.106333 -0.00450972 -0.0566742 --0.0961074 -0.0857393 -0.0510691 -0.0285044 --0.00713335 -0.0230316 -4.86416e-05 --0.0701227 --0.0755555 -0.0358066 --0.0189703 --0.0573207 --0.118019 --0.0574396 -0.0709883 -0.0158696 --0.0212327 --0.0585253 --0.0176093 --0.0100643 --0.000280095 --0.0491947 --0.0348397 -0.0440477 -0.0682846 -0.0766643 --0.010486 --0.111811 -0.0670942 --0.0865725 -0.0255535 --0.00427471 -0.0892868 -0.0487051 --0.0451069 -0.00905236 --0.045553 -0.023589 -0.0181123 --0.042728 -0.0360156 -0.0169864 --0.0183575 --0.0540895 --0.0981227 --0.0275685 -0.0660463 --0.0279913 -0.0194783 --0.124923 --0.0376567 -0.0390642 --0.0701624 --0.00959223 --0.0178921 -0.0275969 -0.0308751 --0.0178574 -0.03456 -0.0721604 --0.0542832 --0.0586392 -0.07505 -0.0571965 --0.0487499 --0.0238891 -0.0301248 -0.0207824 --0.00681579 -0.102493 --0.0025032 --0.0254389 --0.0511379 -0.0378958 -0.0554271 -0.0340722 --0.0700178 --0.140336 --0.0497303 --0.0996241 --0.0317319 --0.0428426 -0.0158027 -0.103952 -0.070515 --0.027155 --0.113083 -0.0634474 -0.0150138 -0.0689527 --0.110582 -0.0223561 -0.0424681 -0.00381474 --0.0600376 -0.0225712 -0.0442837 --0.0351209 -0.0366761 -0.0431762 --0.0440807 -0.00584696 --0.0812667 --0.0228789 -0.0400205 --0.0605309 --0.0436033 --0.0531288 --0.0908309 -0.11499 --0.00707696 --0.0371368 --0.102167 -0.054095 -0.00163704 -0.0509341 -0.0730712 --0.0222844 --0.0385337 --0.0233748 -0.0533599 -0.0479892 -0.0177633 -0.0197053 --0.0805949 --0.0601556 --0.0254053 --0.00184474 --0.0221785 --0.158411 --0.0342015 -0.0306785 --0.0758277 --0.0215358 -0.0357014 -0.0565498 --0.0863424 --0.0224393 -0.0659452 -0.0399599 --0.0230759 --0.031518 --0.042683 --0.000747019 --0.0252437 -0.0549015 -0.0553297 --0.0190629 --0.0207262 -0.00237348 -0.0753408 -0.0597329 -0.0557955 -0.0529767 --0.139927 --0.0920538 --0.0552975 --0.0304003 --0.0291229 -0.0548257 -0.0790078 --0.0875551 --0.0158 --0.0070245 -0.0816809 -0.0301364 --0.0722661 -0.0392054 --0.0552267 -0.0263569 --0.110429 -0.0562528 -0.0423694 -0.0504659 --0.0828894 --0.0126162 -0.0663457 --0.0246781 --0.00222622 --0.0482699 -0.0321647 --0.0209291 --0.0675759 -0.0631978 --0.0623942 -0.0294685 --0.024974 -0.0421806 -0.0454001 -0.0399263 --0.0657352 -0.0154691 --0.0587176 -0.051864 -0.0884437 -0.012578 -0.0211905 -0.0627904 -0.0268538 --0.0757656 -0.0102341 --0.0811455 -0.0225379 --0.0631516 -0.0446767 --0.00228415 -0.0547708 --0.0725254 --0.0137211 -0.0546374 --0.116704 --0.0370153 -0.0559374 --0.0176425 --0.0262643 --0.0300111 --0.0465119 -0.00628839 --0.0490444 --0.00814839 --0.0349926 -0.0751558 --0.02412 --0.034433 -0.0447844 --0.0574011 -0.0358302 --0.0879072 -0.0859985 -0.0391122 -0.0283587 -0.0677519 -0.0456798 -0.0370383 --0.0198111 --0.00839509 -0.123325 --0.0198749 -0.105136 -0.0138153 --0.0225895 --0.0244912 -0.0313955 -0.000730661 --0.0216867 --0.063096 --0.0491835 -0.00365339 -0.0230103 -0.0810429 -0.00356117 --0.0379094 --0.02441 --0.0181062 --0.0288527 -0.0302977 -0.0200138 --0.00170647 --0.113246 -0.0295529 -0.0539129 --0.108433 --0.0406891 -0.0583119 -0.0698485 -0.0407176 -0.00301902 --0.0188969 --0.0346588 --0.065263 --0.0633209 -0.0415122 --0.0360257 -0.068181 -0.0813625 --0.025459 -0.044522 -0.045579 --0.0652772 --0.0484072 -0.0549233 -0.0247573 --0.0129075 -0.0562689 -0.0168077 --0.0333703 -0.0368949 --0.0286833 --0.0211167 -0.0977453 -0.0155957 -0.0669623 -0.000297539 --0.0406896 --0.00942682 -0.103272 -0.00913871 -0.0528347 -0.0573147 --0.0544481 --0.0587169 --0.173302 -0.0343638 --0.114272 -0.0309511 --0.0742712 -0.00971269 --0.0408997 -0.0265184 --0.0291075 -0.0161692 -0.0798694 --0.0128519 -0.0281649 -0.0383121 -0.0596486 -0.0227309 --0.0102975 -0.0102276 -0.0127468 --0.00544071 -0.0907932 --0.133347 --0.0390094 --0.0399121 --0.0450901 -0.0156162 --0.000222686 -0.00904207 -0.0890847 -0.0550298 -0.0336378 --0.0122391 -0.0375573 --0.0158138 -0.0186182 --0.14775 --0.0151248 --0.0482179 --0.113071 --0.000176777 --0.0159687 -0.0807164 -0.0615616 -0.0395819 --0.0153327 --0.0615347 -0.0404138 --0.0127524 --0.0357476 --0.0662018 -0.0335316 -0.0497422 -0.0516109 --0.0409644 -0.115651 -0.0798019 --0.0206715 -0.0124297 --0.04036 -0.00262437 -0.109206 -0.062786 -0.0149181 --0.0199713 --0.00467248 -0.00295006 --0.0711102 -0.055781 -0.0179165 -0.027716 --0.0226624 -0.0587746 --0.0226232 -0.0433897 --0.00260354 --0.0173786 -0.111795 -0.0175277 --0.0239689 --0.0552204 -0.0187391 --0.00273609 -0.00379878 --0.0405871 --0.00307135 -0.0648781 --0.0273637 --0.00510196 --0.0132509 --0.0214998 -0.121985 --0.053072 -0.0157723 -0.0480921 -0.04417 -0.0371932 -0.0160567 -0.0032046 --0.0359205 --0.0559561 --0.0285582 -0.0268722 --0.0404286 --0.00694953 -0.0454825 --0.0131817 -0.00953581 --0.0440286 --0.0889743 -0.00865217 -0.0690273 -0.00877664 --0.0561167 --0.0055494 -0.00730839 -0.00215546 -0.0112704 --0.0519827 -0.0332385 --0.00106003 --0.0231451 --0.00823331 -0.0256424 -0.036643 -0.038792 --0.0516868 -0.00184908 -0.0211414 --0.0938676 -0.00733439 --0.0215463 -0.0628917 -0.0406405 -0.018778 --0.0264743 --0.128128 -0.0403156 -0.0984461 -0.0047462 --0.0226517 -0.0336327 -0.0334272 -0.00348944 --0.00915415 -0.0740392 -0.0437128 -0.104845 --0.0155194 -0.0108864 --0.0137675 -0.0652764 -0.089163 -0.0410991 -0.0345044 --0.0274141 --0.0437731 --0.0200158 --0.0194063 --0.0722367 --0.0176537 -0.012815 --0.0177445 --0.0592709 -0.10764 --0.000563291 -0.00376091 -0.0111923 -0.0748533 -0.0125812 --0.019738 -0.0179982 -0.0376574 --0.0626441 -0.0215948 -0.0701517 -0.0705469 -0.0755997 -0.0851976 --0.0253839 -0.0130802 -0.0617082 -0.0105585 -0.0912907 --0.0346731 -0.0532085 --0.00443283 --0.0057151 -0.0793374 -0.076516 -0.0303929 -0.0789278 --0.0388647 --0.0039869 --0.0638854 -0.00063469 --0.101158 -0.112242 --0.0266675 --0.0576719 -0.0389532 --0.0628443 -0.0366751 -0.0102739 -0.0269227 --0.0582789 --0.0299121 -0.0614583 --0.0819881 -0.0555872 --0.0153836 --0.0588885 -0.0223228 --0.0132964 --0.138953 -0.0538166 --0.0409544 -0.10576 -0.0334018 --0.0106168 -0.0572207 --0.0235588 --0.0380755 -0.028346 -0.0395081 -0.0588721 -0.0419971 --0.0465111 --0.0560205 --0.00651986 --0.0159349 --0.0831733 --0.0708727 -0.0884498 -0.0471423 --0.0180087 -0.0253991 --0.0191569 --0.0172255 --0.130695 -0.0410303 --0.0117811 --0.0406631 -0.0639533 -0.0812159 --0.00781182 --0.107533 --0.0248085 --0.00768038 --0.0731968 -0.0150685 --0.0146487 -0.0320714 --0.020214 -0.0752579 -0.0208191 --0.126027 -0.0235034 -0.085405 --0.0673163 -0.027132 --0.0868955 --0.0802589 --0.087708 --0.0722045 -0.0197083 --0.0415888 --0.0119887 --0.0127486 --0.0178515 -0.0227687 --0.0130552 --0.03906 --0.00931117 -0.00532213 -0.0383233 --0.0754977 -0.0214982 --0.0718343 -0.0957038 --0.0728525 --0.0268069 --0.0760022 -0.0337531 --0.100115 --0.000706056 --0.0317813 --0.0748826 --0.0711881 --0.0101116 -0.0637544 --0.018447 --0.0281727 --0.0310441 --0.0218555 -0.06556 --0.0932947 -0.00421184 --0.00651413 -0.0470887 -0.0402024 --0.0349991 -0.0381652 -0.0174063 --0.0291829 -0.0449892 --0.0424208 --0.0213202 -0.0804321 --0.0366708 --0.00389556 --0.0428497 -0.0265426 -0.0365479 --0.011059 --0.0501137 --0.0325875 --0.0407675 --2.92258e-06 --2.32242e-05 -0.0299428 --0.0418021 --0.0062338 -0.084533 -0.0173357 --0.00695863 --0.0283138 --0.0568555 --0.0139303 -0.0948611 --0.0298776 --0.0707094 --0.0608488 -0.120757 --0.00358206 --0.0186366 --0.0172569 -0.0378546 --0.0094563 --0.0351394 -0.0252244 -0.0179434 --0.066638 -0.0657388 -0.0298036 -0.00553796 -0.0692666 --0.0492529 --0.0125265 --0.14231 -0.0669468 --0.046168 -0.0406047 --0.0212426 --0.0105606 -0.0585925 -0.0362527 -0.0163183 --0.00125301 -0.0369085 -0.0310561 --0.0625768 --0.0950336 -0.0682269 --0.0369159 -0.0331781 -0.0515525 -0.051326 --0.0421299 -0.0720862 --0.107484 --0.0545744 --0.0505737 -0.00217448 -0.02626 -0.0660214 --0.000651034 -0.0571474 --0.0167825 --0.0527427 -0.0193133 -0.0322998 -0.0389812 --0.0525555 --0.0416376 -0.00720011 --0.057157 -0.0176298 -0.0649088 -0.0894325 -0.0158944 -0.00928406 --0.039026 --0.0145563 -0.0603695 --0.0528951 -0.0904926 -0.0367982 --0.109035 -0.0214087 -0.00603939 -0.0201117 -0.0379391 --0.0120116 -0.0267983 -0.124649 --0.0615074 -0.0455472 -0.0896039 --0.0107041 --0.0199854 --0.0049156 -0.00143644 -0.0183572 -0.0204339 --0.000707934 -0.0373633 -0.0122789 --0.0401073 -0.0798597 --0.0228626 --0.0473396 --0.0557291 --0.028932 --0.0581018 -0.113367 -0.0156858 --0.00719987 --0.0166535 -0.0548852 --0.00621179 --0.0267161 -0.0923596 -0.0266379 -0.0121853 --0.0258655 -0.0842582 --0.0275161 --0.0421242 -0.000414699 --0.0155329 --0.00429008 --0.0529266 -0.0119129 -0.0354188 -0.0166644 --0.00443645 --0.0349492 --0.0404579 -0.0856659 --0.006596 -0.0340851 -0.0560947 --0.0406738 -0.0187034 --0.0347144 --0.0414141 -0.0970686 -0.107511 --0.089171 -0.0360609 --0.0370002 --0.016021 -0.0117514 --0.0766337 -0.0677585 --0.0426854 --0.0165606 -0.0457185 --0.0107517 -0.0481543 --0.0255409 -0.00962024 -0.0231221 -0.0565994 -0.0924499 --0.0786492 --0.0341822 --0.00180457 --0.0376839 --0.0697004 --0.0495646 --0.0206417 -0.0436083 -0.0440839 -0.014045 --0.0299084 -0.0184806 -0.0770754 --0.0338255 -0.01348 -0.119852 -0.0473711 --0.0196383 --0.054045 --0.0214559 -0.0686608 --0.109524 -0.071628 -0.0176283 --0.0175791 -0.0786826 --0.037643 -0.026212 -0.0142455 -0.0276336 --0.0416552 --0.0112794 --0.0479026 -0.0180089 --0.024894 -0.00347519 -0.0507914 --0.0945414 -0.0705 --0.0979026 -0.0237979 -0.0117401 --0.0663478 --0.067119 --0.050258 -0.00957307 --0.0124635 --0.0610001 --0.0861058 -0.0101902 -0.130029 -0.0168673 --0.0246388 --0.048864 --0.0289509 --0.093635 -0.00311668 -0.0147639 --0.00665561 --0.039423 -0.00430099 --0.0338432 --0.0187025 --0.141682 -0.050348 -0.114664 -0.0915705 --0.0438719 --0.0268106 --0.0359865 -0.0743311 -0.0822687 --0.0819658 -0.0145871 -0.00468433 --0.00184058 -0.0338172 -0.0338289 --0.0399074 -0.0310301 --0.0661433 -0.0324588 --0.0286918 --0.0210245 -0.0540354 --0.0445236 -0.0162149 --0.0272704 --0.0305299 -0.0300238 -0.0774733 --0.0514892 --0.0443516 -0.00522756 --0.034885 -0.0284661 -0.00827869 --0.0523284 -0.0248389 -0.00676369 -0.0150353 --0.0127769 --0.0048686 -0.0519989 -0.0167704 -0.0323161 --0.00531709 --0.0958439 -0.0382519 --0.0376158 --0.0221029 -0.0309662 -0.00667121 --0.00487173 -0.0295382 -0.0489952 -0.0509346 -0.0509528 -0.0824426 --0.000335882 -0.0402492 --0.0475104 --0.0672216 -0.0554838 --0.0343059 --0.0156534 --0.150809 -0.00192139 -0.0774305 --0.0326144 --0.0384512 --0.0516755 -0.0296228 --0.0809113 --0.0296393 -0.0472077 --0.0353685 -0.0722875 -0.0424875 -0.0457703 --0.0783668 -0.159477 --0.0223309 -0.00309533 --0.0293996 --0.0847161 -0.0981471 --0.0473287 --0.0549975 --0.110546 -0.117348 --0.0747605 --0.0743923 -0.00519402 -0.0375944 -0.0102157 --0.023007 -0.0474115 -0.0290567 -0.00358813 --0.0781353 -0.0179367 -0.0551997 --0.0287154 --0.0282096 -0.0614832 -0.0427458 --0.0392029 -0.116964 -0.0231123 -0.0660052 -0.027215 --0.0293579 -0.0205859 --0.0111383 -0.0507554 -0.0513273 -0.0688079 -0.0426908 --0.0292957 -0.00402039 -0.0857643 --0.0521875 -0.0300208 -0.0665462 --0.0312663 --0.0462535 --0.0250544 -0.0413193 -0.0512677 --0.0518708 --0.0328859 -0.0723039 -0.0534605 --0.0374872 -0.0572123 --0.00207974 --0.027249 --0.020206 --0.0898118 -0.0676315 -0.0333659 --0.0235304 -0.0238432 -0.0280222 --0.0238216 --0.0195255 -0.0201712 --0.036287 --0.0222707 -0.0444395 --0.00465019 --0.000748645 -0.0508472 -0.0290077 --0.038997 --0.0303162 --0.0625545 --0.0230992 -0.0923677 -0.107076 --0.0549146 -0.0165821 --0.0591508 -0.0202553 -0.0636878 -0.0930246 -0.0678752 -0.0327225 --0.0139707 --0.0272682 -0.103109 --0.0159798 -0.0562661 -0.0463125 --0.00776652 --0.0728558 -0.0541761 -0.0344086 --0.0219538 -0.0314077 --0.0213158 -0.0210698 --0.0457569 --0.0518442 --0.0613443 -0.0548178 -0.0383619 -0.0455082 --0.0730473 --0.158303 --0.0334338 -0.00379193 --0.0870746 -0.00147022 --0.00841073 --0.0173428 --0.0161297 --0.0893751 -0.00395229 --0.017852 --0.0294218 --0.0443472 -0.0912628 -0.0499377 --0.00726837 --0.00698983 -0.10851 -0.0305192 -0.034589 --0.0311624 --0.0370458 -0.0623437 --0.00332749 --0.00619301 --0.0501285 --0.0381971 -0.0042371 -0.0407641 -0.0222201 --0.0426422 --0.000580743 --0.093465 -0.0375654 --0.0732241 -0.0215374 --0.0250285 -0.0673708 -0.0465746 --0.0117906 -0.0175765 -0.0181364 --0.0101962 -0.0241825 -0.00224916 --0.0346969 -0.0242295 --0.043255 --0.0609981 --0.0361394 -0.0735833 --0.016586 -0.0592338 -0.121542 -0.0459789 -0.04791 --0.00446001 --0.0106367 -0.0245079 --0.0253304 --0.00234336 --0.0888163 -0.0656793 --0.0138288 -0.00790238 -0.0461873 -0.0228948 -0.122231 -0.0742779 -0.0116017 --0.0656565 --0.0670472 -0.0863436 -0.0500276 -0.0448351 --0.0393257 --0.0665352 --0.0532658 --0.0274592 --0.067734 --0.0199751 -0.0536309 -0.0716334 -0.0502429 --0.0266079 --0.0353992 -0.010622 -0.0384945 -0.0203014 -0.0290815 --0.063915 --0.00939636 --0.0401247 -0.0891639 --0.0120976 --0.0374854 --0.0632326 -0.00593846 --0.0108226 -0.0220823 -0.0486265 --0.029765 --0.0560106 -0.0704327 --0.0551786 --0.0250049 --0.0953982 --0.00755765 -0.0579897 --0.101825 --0.109607 -0.0235277 --0.0162146 -0.0374731 --0.0697238 -0.064836 --0.0633432 --0.0850541 -0.0211228 --0.0190803 --0.0351315 --0.0381519 -0.102165 -0.0325618 -0.0741473 --0.0647761 -0.0281699 -0.0554291 -0.0394947 --0.00757437 --0.0267678 --0.0497867 --0.0268551 --0.0695429 -0.037373 --0.0093864 -0.028952 -0.0925874 --0.0933935 --0.0196832 --0.054168 --0.0452687 -0.0632299 --0.0414339 --0.0362675 -0.0924763 -0.0558297 -0.0460124 --0.0267723 -0.0214035 --0.0311903 --0.121082 --0.0547506 --0.0116298 --0.0557337 --0.0944458 --0.0488199 --0.0127582 --0.086218 -0.04873 -0.0158307 -0.0792827 --0.071072 -0.0674666 --0.0570815 -0.0240809 --0.0183493 -0.0343748 --0.0564014 -0.055757 --0.00902909 --0.0250937 -0.0386811 -0.0598853 -0.0163606 --0.0252053 -0.00670754 -0.0249081 -0.0105453 -0.0250787 --0.0565774 -0.0157913 -0.0449051 -0.0230038 --0.0292816 --0.00956204 --0.0435031 -0.0274471 --0.0719395 -0.0439014 -0.0651895 --0.0457885 --0.0802727 -0.0364655 --0.0304274 --0.00232512 --0.0189956 -0.038916 -0.03096 -0.121953 --0.0119417 -0.018602 -0.0451586 --0.0518601 --0.10594 -0.00227861 --0.0704417 --0.00134752 -0.0283151 --0.0516528 -0.0608335 -0.0500745 -0.0383539 -0.0213477 --0.0348511 --0.0219241 -0.123089 --0.0769704 --0.0585793 --0.0232987 -0.0775409 --0.0194088 --0.0379184 --0.0353849 --0.0229584 -0.0368147 --0.0241218 -0.0487944 --0.0542294 -0.0120278 -0.0253761 -0.00410182 --0.0567866 -0.0402446 -0.0322406 --0.01291 --0.0467585 --0.046955 -0.0522812 --0.0195473 --0.0615477 -0.0155809 --0.129552 --0.0180102 --0.059798 --0.16366 --0.0376817 -0.0723378 --0.0233753 --0.0749876 --0.0576153 --0.0494059 --0.10142 --0.0902036 --0.0763341 -0.0687126 --0.0410245 --0.00504955 -0.0638192 --0.071607 --0.00236713 --0.0106845 --0.0169122 -0.0173968 --0.0662626 -0.0176886 -0.0539947 --0.0127022 --0.0450394 --0.00287668 --0.0955141 -0.0326017 --0.0179269 -0.0095865 -0.0321032 --0.0706356 -0.0738475 --0.00782208 -0.00630213 -0.0244963 -0.0466498 --0.0101238 -0.0640008 --0.0293747 -0.00189115 -0.0626944 -0.0142799 --0.0245555 --0.022152 --0.0427901 -0.0578141 -0.0129644 -0.0157277 --0.0160022 -0.0430959 -0.0107798 -0.0395329 --0.0678338 --0.00864713 --0.0151558 -0.0148559 --0.0229416 --0.107897 --0.0157513 -0.133713 -0.0618429 --0.00354064 --0.0564121 -0.0229478 --0.0447436 -0.034267 --0.0273987 -0.00745436 --0.0024451 --0.0253182 -0.0789295 --0.0588395 --0.0493126 --0.0226402 --0.0296531 -0.00781994 --0.0579297 --0.0322235 --0.0519713 --0.0394506 -0.0406082 --0.00730982 --0.038779 --0.00261675 -0.0673811 -0.0115478 -0.0743513 --0.0310319 --0.00276673 -0.0628376 --0.00586333 -0.0635189 --0.0126551 -0.0279254 -0.128921 --0.0100678 -0.0175692 --0.0881614 --0.00333376 --0.020695 -0.011085 --0.0681698 -0.0534576 -0.00818118 -0.057043 -0.0483485 -0.0477198 -0.0220535 --0.0347208 -0.0194621 -0.0108479 --0.0408739 -0.0148143 -0.0242407 -0.0201976 -0.0357707 --0.0718819 --0.00360734 --0.0643023 --0.0571025 -0.0100956 --0.0559954 -0.0653352 -0.0032502 -0.0531163 -0.0439338 -0.0188054 -0.00308261 -0.0409965 -0.00873512 -0.00978857 -0.054522 --0.0348 --0.0504254 --0.0382744 --0.031225 --0.136595 --0.0511034 --0.0387634 --0.0673733 -0.0304495 --0.0457999 --0.0401166 -0.0215378 -0.00910457 --0.0270609 --0.0813655 -0.0775921 -0.0664609 -0.0116984 -0.0415247 --0.0573032 -0.0559324 -0.0728757 --0.00315781 -0.0492447 -0.093056 -0.0762153 -0.0198336 --0.043178 --0.120813 --0.0530434 --0.00801433 -0.0299807 -0.00605067 --0.0214406 -0.07717 -0.0336551 -0.0375404 -0.00761336 -0.127793 --0.0351936 --0.0671526 -0.0988659 -0.016817 -0.106355 -0.0445772 --0.0175123 -0.0129793 --0.0074879 --0.0252648 -0.0263595 -0.112266 --0.0288599 -0.125853 -0.0435079 --0.0319112 -0.0660039 -0.0481476 --0.0253472 --0.0448402 --0.00986011 --0.120554 -0.0951973 -0.00274954 -0.0100685 --0.0828565 -0.021101 -0.0172312 --0.00529714 --0.0213141 -0.0234286 -0.0495712 -0.0473181 -0.0201212 --0.041537 --0.101093 -0.0265623 -0.0365556 --0.0237165 --0.050403 -0.0307915 --0.0748241 -0.0633114 -0.0148705 --0.021499 -0.103094 -0.0303637 --0.0846535 --0.0096566 --0.0524182 --0.0380212 -0.0775405 -0.0421633 --0.0357504 --0.0837767 -0.0330138 -0.0427924 --0.0604395 -0.0572436 -0.027096 -0.0748955 --0.0187306 --0.0511368 -0.0418238 --0.0524248 --0.0552934 --0.00147715 -0.0369565 --0.0115274 -0.0337523 --0.0410421 --0.0376812 -0.0110537 -0.0180474 -0.0118009 --0.0334213 -0.105898 -0.0475703 -0.0979787 --0.0555501 -0.0347125 -0.0173844 --0.023382 --0.0278491 -0.0514988 -0.0233109 -0.0292564 -0.00720984 -0.072357 --0.0522097 --0.041852 --0.0265214 --0.0542193 --0.0455773 --0.0247615 -0.0786552 -0.0498001 -0.0395476 --0.131093 --0.0659752 -0.0840399 --0.00589539 -0.0509471 -0.0251329 --0.0215151 --0.0233311 --0.11042 -0.040955 -0.0699252 -0.0392986 --0.101312 --0.0792764 --0.00908105 -0.0402129 --0.0344711 -0.00428957 -0.0184642 --0.132474 --0.0206164 -0.0717602 -0.00649947 --0.0467717 --0.0734485 -0.0696008 --0.0244893 --0.0180745 -0.0565778 --0.03987 --0.00989569 --0.00611204 -0.00185208 --0.0646177 -0.0358645 -0.110742 -0.0355131 --0.0160311 --0.0218104 -0.0672141 --0.085132 -0.0212864 -0.0170162 --0.00355298 --0.0587141 -0.0200835 --0.0406065 -0.0228776 -0.0248808 --0.0808761 -0.0111148 --0.0203436 --0.00953204 --0.0671392 -0.12539 -0.00329998 -0.0758453 --0.0119274 -0.0420541 --0.0333414 -0.0273321 -0.0177504 -0.0704269 -0.0751582 --0.0308958 -0.125494 --0.0651062 --0.0496775 --0.0495696 -0.022463 --0.00430071 -0.0130783 --0.0246986 -0.0239401 --0.0651961 -0.0200811 -0.0927544 -0.0303803 --0.0954936 --0.0197106 --0.104164 --0.00368722 -0.0217645 -0.0537376 -0.0397365 -0.0307436 --0.0126159 --0.00444202 -0.0409618 -0.0538066 --0.0234291 --0.00519745 --0.0743431 -0.0698808 --0.0206434 -0.108596 -0.00651192 --0.0870301 -0.0403499 -0.0237972 --0.0432325 --0.0551012 --0.00217564 --0.0224082 -0.0347431 --0.0323103 --0.072918 -0.0388224 --0.0519148 --0.0127346 --0.0502291 --0.000959023 -0.0381748 --0.0271884 --0.03613 -0.0631972 --0.00332386 -0.0503408 --0.0404905 --0.0142764 -0.0201722 -0.0397963 -0.134307 --0.0049076 -0.104034 -0.013099 -0.0124466 --0.0394549 -0.0435069 --0.0475938 --0.0789179 --0.0420555 --0.0106137 -0.0127327 --0.0626302 -0.0821 --0.00714563 --0.00197422 -0.0138835 --0.00972479 --0.0713977 -0.0149082 -0.079863 -0.00179184 --0.17228 --0.0475095 --0.00503257 -0.00285109 --0.022651 -0.0123351 --0.047248 -0.0214752 --0.0379351 -0.0440019 --0.0165416 --0.0158067 --0.0559149 -0.0174753 --0.0155578 --0.00279413 -0.0168053 -0.0766407 --0.00968858 --0.134435 -0.0658914 --0.0338604 --0.0456001 -0.0771681 --0.147693 --0.0582881 --0.0207172 --0.0479855 -0.0146955 --0.0532443 -0.168031 --0.0508092 --0.0715133 -0.0795431 -0.0792251 -0.0761449 --0.0725549 --0.0950862 --0.0475981 --0.0305582 --0.0297474 -0.00626181 -0.0145173 -0.0352486 -0.0455514 -0.0546327 --0.0128475 --0.0191776 -0.0389259 -0.00928482 -0.0331514 -0.0260625 --0.0244863 --0.016405 --0.0481223 --0.0116513 -0.00326083 -0.116492 -0.0478704 -0.0562298 --0.0729581 --0.0371037 --0.0232732 -0.0682983 -0.072941 --0.0598704 -0.0356084 --0.0368695 --0.0206033 --0.0659498 -0.0252678 -0.0229624 --0.0310334 -0.0633864 -0.075077 -0.0136519 --0.0818265 -0.0610152 -0.0253779 --0.0151544 -0.034056 -0.00414973 -0.00906515 -0.0472026 -0.123542 --0.0312757 --0.0409944 --0.0509157 --0.0418847 --0.0121707 --0.0123697 --0.0213135 -0.0124955 --0.0326955 --0.0189365 -0.0251815 --0.0286342 -0.0976788 --0.038616 -0.0807104 --0.0420665 -0.0148554 --0.0182146 -0.00924424 --0.00704573 --0.0581762 -0.0803685 -0.0409821 --0.0343688 --0.0288501 --0.0246715 --0.0333018 -0.0466995 --0.105999 --0.00518618 -0.00318348 -0.0140479 -0.00939752 -4.06017e-05 --0.0317459 --0.0194111 -0.117991 --0.100305 --0.00644528 -0.0465466 --0.0187361 -0.0535089 -0.0321543 --0.0354982 -0.0216768 -0.00788886 -0.0554982 --0.00660328 --0.0446555 --0.00844832 --0.0798707 --0.0452399 -0.0584809 -0.00225836 -0.013494 -0.0259963 -0.0686616 -0.0454763 -0.0274622 --0.00251365 --0.0560095 -0.0314059 -0.0366848 --0.0731199 --0.00859481 --0.0454113 -0.0400719 -0.00688573 -0.00576957 -0.0536335 -0.0286632 -0.00604642 --0.0365161 -0.0774464 -0.0244455 --0.0359399 --0.0952025 -0.044839 --0.0589783 --0.101073 -0.0867611 --0.0133885 -0.0660784 --0.0228128 -0.0267014 -0.0460823 -0.107598 --0.0559986 -0.011583 -0.0123289 --0.0557623 --0.0911459 -0.0319672 --0.103078 -0.0537382 --0.0277061 -0.0722438 -0.0592495 --0.0963226 -0.0220787 --0.0626661 -0.0158581 --0.0423298 -0.0414549 -0.00607861 --0.00240967 -0.116958 --0.00385151 -0.120281 --0.0538215 --0.0562814 --0.0145526 --0.0305296 --0.0186015 --0.0187041 --0.0296758 -0.00542449 --0.088304 --0.0298617 --0.0437003 -0.0169816 --0.0556742 -0.0104668 -0.0114415 --0.0630653 -0.00449781 -0.115021 -0.0114503 --0.0890939 -0.0487245 --0.0214173 -0.046131 --0.0446419 -0.0444974 -0.0501955 -0.0346589 -0.0287381 --0.0154413 --0.0646584 --0.0332268 --0.117514 -0.075179 --0.022417 --0.0177199 --0.0307652 -0.0492863 --0.021765 -0.0607492 --0.0239977 -0.0680547 --0.111499 -0.030832 --0.072553 --0.0611222 -0.077461 -0.0166902 --4.83599e-05 -0.0170619 -0.0294324 -0.00870701 -0.000113252 -0.00444567 --0.0611281 --0.0209383 --0.139381 --0.0264017 -0.0417271 -0.0134412 -0.0205417 --0.0115822 -0.027585 -0.0203299 --0.0571005 -0.0021999 -0.0423816 -0.0365939 -0.0538389 --0.0600166 -0.0338809 -0.0579864 -0.0564552 -0.00806192 -0.0508804 --0.034596 --0.0066111 --0.0189719 -0.03618 --0.0795815 -0.0228057 -0.0450689 --0.0134862 --0.0126316 -0.020549 -0.0200985 --0.0302911 --0.0188943 -0.0585109 --0.0191918 --0.0610056 -0.147652 -0.0165133 -0.0547183 --0.0692788 --0.0114006 -0.115125 --0.0426095 --0.0808976 --0.0381468 -0.0108935 --0.010391 --0.0138561 -0.0119915 -0.0459399 -0.0328495 -0.0762172 --0.0281407 --0.0419755 -0.0464962 --0.0192257 --0.0253105 --0.0186407 -0.00174338 -0.0608123 -0.000694187 --0.101918 --0.000365324 -0.0617352 --0.021023 -0.0161607 -0.0662487 -0.00760913 --0.0138122 --0.0128019 --0.0119615 --0.0387457 --0.0975483 --0.0277917 -0.0696464 --0.0228403 --0.0159603 --0.111269 -0.0292408 --0.00392785 -0.0570437 -0.0424398 --0.00956917 -0.00265739 -0.0552711 --0.04003 -0.0287018 --0.038769 -0.00982772 -0.0252118 -0.116993 --0.0396003 --0.0624168 -0.128875 --0.0349594 --0.0733782 -0.0212874 -0.0336491 --0.0688469 --0.048346 -0.0177298 --0.00691161 -0.0616199 --0.0669637 -0.0584475 -0.0537141 -0.100672 --0.0691973 -0.0373118 -0.0432287 --0.0399517 -0.00358438 -0.052426 --0.028978 -0.00561622 --0.0675223 --0.0205969 -0.0192936 -0.0959861 --0.0453869 -0.111159 -0.00568553 --0.0445305 -0.0155822 -0.022983 -0.0924486 -0.104132 --0.0366455 --0.0109321 -0.114839 -0.0343498 -0.0110118 --0.0693408 --0.00300898 --0.0369871 --0.0166787 -0.0178302 --0.0457066 -0.0138243 --0.0243129 -0.00125631 --0.0459816 -0.0593204 -0.000730553 --0.0144901 --0.00645476 -0.0263218 -0.00918144 --0.12517 -0.0557381 --0.0177046 --0.0280251 --0.00506399 --0.0820583 -0.0753464 -0.0261253 -0.0581749 -0.00710972 -0.0783386 -0.0197841 -2.94837e-05 --0.0438089 --0.00516119 -0.0622728 -0.0368493 -0.0453871 --0.0164944 --0.0748588 -0.0915316 --0.0392938 --0.0787185 -0.0726928 --0.0662266 -0.125629 -0.0271836 --0.0647221 --0.0564672 -0.0160444 -0.0159526 --0.100696 -0.0316245 --0.0276331 -0.00630555 -0.0156348 --0.0185277 --0.0768997 -0.0347788 -0.0813805 --0.0990807 --0.0355176 -0.089412 --0.0581756 -0.0632275 -0.0272315 -0.000409084 --0.0762171 --0.0199985 -0.00341944 --0.0726035 --0.0289456 --0.0292165 --0.0241603 --0.0223592 --0.0278889 --0.0203977 -0.107482 --0.000619195 -0.111125 --0.0213836 -0.0191436 --0.0147127 --0.0202417 -0.0102175 --0.0439786 -0.0109278 --0.00132489 --0.0465361 --0.007802 -0.0724798 -0.0121214 -0.114211 -0.00215293 --0.02975 --0.00921154 --0.0287523 --0.0216255 --0.00611288 --0.00533524 --0.0244185 -0.115008 -0.0391707 --0.0173543 -0.0693762 -0.0576227 --0.0320504 --0.0680261 -0.00886816 --0.046397 --0.0282151 -0.025502 --0.0135531 -0.108891 --0.0698283 --0.0701893 -0.0798493 --0.110086 --0.00133064 --0.0391715 --0.0953495 --0.031015 -0.047224 --0.0143218 -0.116202 -0.0396263 -0.029324 --0.0455718 --0.00668284 -0.00267262 -0.0481377 -0.0480972 --0.00964627 --0.0168308 -0.0178954 -0.00800021 -0.0587054 -0.0524383 --0.00186662 --0.0623766 --0.0114808 -0.0561781 -0.0758744 --0.126812 -0.0665085 --0.0348714 --0.0451803 --0.0174053 -0.042391 -0.0232769 -0.0656231 -0.0475113 --0.00293999 --0.00389536 --0.0165307 --0.0821472 --0.0855005 --0.0500437 -0.0772753 -0.00230322 -0.000849593 --0.0620437 --0.0125027 --0.0134503 -0.0191702 --0.064979 --0.0172832 --0.103623 -0.00820442 --0.0771426 -0.107645 --0.0181536 --0.0169918 -0.0739403 -0.0405334 -0.0319212 -0.0681448 -0.0464299 --0.0802267 --0.0308704 -0.12866 --0.0812379 --0.108968 -0.0106035 --0.0150262 -0.0314413 -0.00294056 -0.00740344 --0.0594208 -0.0242813 -0.0211435 --0.0394764 --0.047959 --0.0280018 --0.000666834 -0.0106659 -0.0268797 --0.0585831 -0.0573295 -0.0111613 --0.0587336 --0.101632 -0.0391626 --0.0438723 --0.0168507 -0.0264268 --0.0315218 -0.123737 --0.0164342 -0.0165449 -0.00785665 -0.0151518 --0.105062 --0.0123202 -0.00176569 --0.00895732 --0.016182 --0.0599971 --0.022966 -0.0125509 --0.104698 --0.11591 -0.0588232 --0.00541252 -0.0289333 -0.0157827 --0.00189871 --0.0132502 -0.0114042 --0.00405763 --0.011891 -0.0300931 -0.0369946 -0.0404599 --0.0794212 --0.00830756 -0.0824923 --0.0312402 -0.0733484 --0.0180419 --0.0443431 -0.088957 -0.000820968 -0.0496085 -0.0108782 -0.00947037 --0.0919806 -0.0416342 -0.00860895 -0.0119028 -0.0130821 -0.0199132 --0.0608412 -0.0191128 --0.0163223 --0.0195289 -0.00998923 -0.0737261 --0.0382318 -0.0535042 --0.0301928 -0.0200539 --0.132202 -0.0294924 --0.0795365 --0.0318888 -0.0579538 --0.0257168 -0.0857682 --0.0476053 -0.087438 --0.0163828 -0.0177702 -0.0313293 --0.000976401 --0.0216073 --0.0397308 -0.0461976 -0.0384438 -0.0305988 --0.0179604 --0.0209974 --0.0349518 -0.121391 -0.054394 --0.048957 -0.0718661 -0.00721403 -0.00684247 --0.0716607 --0.0058869 -0.0415734 --0.0116048 --0.00391229 --0.00816445 -0.0159742 -0.0129912 --0.0381472 -0.0654412 --0.0134234 --0.0263521 --0.0708796 --0.025632 --0.0868578 -0.0573181 -0.0220729 -0.02203 -0.0916327 --0.0787203 -0.029879 --0.019075 -0.0697546 --0.0566581 --0.00997104 --0.0174557 -0.014601 -0.0657423 --0.0177874 -0.0156876 -0.0138685 --0.0342839 -0.00630088 -0.0338998 --0.101663 -0.0543998 --0.0532347 -0.0231342 -0.0149586 --0.0172615 --0.020778 -0.00838788 -0.0108424 -0.019581 --0.0553981 --0.0350294 --0.0910183 --0.000814401 --0.0428686 --0.0216156 -0.0605019 --0.0534445 -0.0642426 --0.00789664 -0.0243183 --0.096875 -0.0288374 -0.0524902 -0.0126217 -0.00679021 --0.0291191 -0.0222341 --0.00458732 -0.0924135 --0.0267873 -0.0592915 -0.0721899 --0.0590669 --0.0607621 --0.0405184 --0.0244724 -0.0100277 --0.0445814 --0.0340972 --0.0280367 --0.0149895 --0.0604624 --0.0264269 -0.103888 -0.0666657 -0.0118623 --0.0392797 --0.00696246 --0.0233623 --0.0213771 --0.0444357 -0.0433145 -0.0572447 -0.0116919 --0.0229331 -0.0350158 -0.04725 -0.0237281 -0.0152356 --0.0400238 --0.0380441 --0.143478 --0.0477222 -0.0307865 --0.0259238 --0.00404605 -0.000335026 -0.0124029 -0.0166256 -0.0369179 -0.0221104 --0.0166509 --0.0113616 -0.0133218 -0.0647862 --0.0472658 -0.0324564 -0.0317118 --0.0955331 --0.0148108 -0.03599 --0.0350659 --0.0509775 --0.0831011 -0.0132551 --0.00698443 -0.00594698 --0.0679663 -0.0118414 -0.0544615 -0.042234 -0.0976884 -0.0585088 -0.00383094 -0.078135 -0.0227359 -0.000157735 --0.0419803 --0.0928715 -0.0159374 --0.0011659 -0.0921577 --0.0387 -0.0181686 -0.0533775 -0.0630671 --0.0173886 --0.0243288 -0.0149995 --0.0358622 --0.0638495 --0.115886 -0.00193528 -0.0307567 -0.0229936 --0.0393481 --0.0397974 --0.0225537 -0.00234269 -0.027678 -0.0426599 -0.0404505 --0.0125949 --0.0269844 -0.0265993 --0.0444091 --0.0222447 -0.00462334 --0.00814622 -0.0306556 --0.0194247 -0.000754156 --0.0861167 -0.063511 --0.0702223 -0.00328608 -0.0138171 -0.0371843 -0.0208216 --0.0777428 -0.00723982 -0.0313808 --0.0152524 --0.0138812 --0.0221341 -0.0389522 -0.0254553 --0.0356401 --0.0043824 -0.0338348 -0.0675273 -0.0467507 -0.0149701 --0.0740112 -0.022021 --0.0909968 --0.0366999 -0.00238869 --0.0751036 --0.029525 -0.0493791 --0.0428212 --0.0239806 -0.0363189 -0.00709816 --0.0804639 --0.0161477 --0.0764852 --0.0160956 -0.048552 -0.0152951 -0.0641617 --0.0634845 --0.085589 -0.0283911 -0.0679574 --0.0331918 --0.00392718 -0.0325553 --0.0655624 -0.0106254 -0.125227 -0.063296 -0.0342141 -0.113995 --0.00580818 --0.0750407 -0.0285802 -0.00974716 --0.00850147 -0.0501923 -0.0254109 -0.0536159 --0.0453964 -0.0595107 -0.0310588 --0.0654797 -0.00271314 --0.00618346 -0.0422381 -0.0171934 -0.12807 -0.00848823 --0.0707538 -0.0425748 --0.0191656 --0.0132256 -0.00760121 -0.00659139 --0.0455526 -0.00125045 -0.0595687 -0.00343687 -0.0507634 -0.0121905 -0.0639522 --0.0477006 --0.0327601 -0.0798032 --0.0396407 -0.0458223 -0.0281382 -0.0675514 --0.0688883 -0.0275241 -0.0442018 --0.0478588 --0.0188667 --0.0144317 -0.0185972 -0.00207942 --0.0481785 -0.0297352 -0.0742305 --0.00466067 --0.0492167 --0.00906881 --0.0921403 -0.0648747 --0.00515756 --0.0515534 --0.0999441 -0.0690042 -0.0667655 -0.0317445 --0.102141 --0.0167316 -0.0415492 --0.0659075 --0.0386922 -0.00513637 --0.0154362 --0.000799827 --0.0126662 --0.019374 --0.0455625 -0.032493 --0.0281192 -0.00432448 -0.0177481 -0.0195423 -0.0834503 -0.0143875 --0.014087 --0.00759893 --0.0580939 --0.010893 --0.039855 --0.119227 --0.0761941 --0.0503676 -0.0353506 -0.0406727 --0.0218828 --0.0778381 --0.0151238 --0.015074 --0.00887316 -0.0124008 -0.025807 --0.0302503 --0.0282348 --0.056074 -0.0471255 --0.000457524 --0.0111641 -0.0493046 --0.0323095 -0.0491185 -0.00123142 --0.00173744 -0.0321123 --0.0604892 -0.0459071 -0.0193557 --0.00212612 -0.0132342 -0.06308 --0.00164168 -0.127365 -0.136832 -0.0477367 --0.0552248 -0.0627097 --0.00592183 -0.0416483 -0.0429565 -0.0925479 --0.0106488 -0.0262001 -0.0223876 --0.0271881 -0.0658776 --0.0309185 -8.39879e-05 -0.0662296 -0.0239865 --0.00184843 -0.104075 -0.00175235 -0.0289413 --0.0478485 --0.0346564 -0.0410009 -0.0191382 -0.011084 -0.0818444 --0.00989545 --0.0258854 -0.00181424 --0.00300098 -0.0718649 --0.0203674 --0.0516197 -0.0075877 --0.0237639 --0.0474375 --0.0373473 -0.0350032 --0.0230677 --0.0433476 --0.0630235 --0.138901 --0.106175 -0.0529759 --0.0531038 --0.0161222 -0.0611479 --0.00600257 --0.0159477 -0.0391554 -0.0245479 --0.0145113 --0.0181247 --0.0324154 -0.0697092 -0.0684893 -0.0273494 --0.00484104 -0.0525629 --0.0131343 --0.0433985 --0.0428844 -0.0683992 -0.0177704 -0.00440281 -0.0301286 -0.015355 -0.101437 -0.0330133 --0.00296252 --0.0116586 --0.00132845 -0.00842176 --0.0241936 --0.00563083 -0.0288767 -0.0348219 --0.0350285 -0.0504766 -0.0267564 -0.0342018 -0.0363942 -0.0276249 --0.0495615 -0.0408034 --0.0119309 --0.0221608 --0.0870542 --0.0530328 --0.0321418 --0.0550902 --0.1236 --0.0100184 -0.00551775 -0.028351 -0.0576514 --0.00350648 --0.0248119 --0.0392448 --0.0269158 --0.0354591 -0.027716 -0.00411085 --0.0688819 --0.0483115 -0.0486172 --0.000572323 --0.061433 --0.056384 -0.0478709 -0.0563626 -0.039933 --0.0287492 -0.0251236 --0.000740159 --0.0427561 -0.0187881 -0.0370296 -0.0541428 -0.0304673 -0.00794125 -0.0257639 -0.0104623 -0.0537347 --0.0521608 --0.0706035 --0.077893 --0.140039 --0.00443261 -0.00307511 --0.0247034 --0.0161884 --0.0228618 --0.102667 -0.0628337 -0.056 -4.85078e-05 -0.0111637 --0.06847 --0.0645821 --0.0382113 -0.0522447 --0.00736432 -0.0550795 -0.031803 --0.0923616 --0.0369753 -0.00217865 -0.0531093 -0.0640529 --0.0155617 -0.0142415 --0.042816 --0.0525389 -0.0517248 -0.0589131 -0.0273482 --0.0248524 -0.03183 --0.012497 -0.0397145 --0.0330779 -0.101517 -0.0326959 --0.0814812 --0.0674993 -0.00194799 --0.0709246 -0.0517302 -0.0244754 --0.00288985 --0.0495933 --0.00957482 -0.023781 -0.018628 -0.0891168 -0.0773148 -0.0276696 -0.0263308 --0.0113783 -0.00999652 -0.0047705 -0.0560349 -0.0192785 -0.0529884 --0.0379589 --0.11765 -0.00259923 -0.058555 -0.0574495 --0.0920886 -0.0109137 --0.0122549 -0.00881967 --0.011705 --0.0994852 --0.0444859 -0.0194317 -0.012335 -0.0288926 --0.0526689 --0.0544607 -0.00796683 -0.00495442 --0.0512577 --0.0233279 --0.0612864 -0.0553205 --0.0172677 -0.0842538 -0.0305491 --0.0222112 -0.0248018 --0.00256865 -0.0877753 -0.0495292 --0.0182975 --0.0550576 --0.0877554 --0.0369258 --0.071096 -0.0325065 --0.0151133 -0.0382064 -0.00902415 --0.013241 -0.0802088 --0.0257249 -0.0586662 --0.0228682 -0.0685165 --0.022175 -0.0409182 --0.0201732 -0.0675741 --0.087966 -0.0498838 --0.0116988 --0.0378363 --0.0151323 --0.0242531 --0.0371961 -0.0573634 -0.0948964 -0.0157038 --0.00165242 --0.0982604 -0.00397301 --0.00888485 --0.0600621 -0.0344671 -0.0219076 -0.0575493 -0.0130879 -0.0865419 --0.0165568 --0.040379 --0.0827543 -0.00255577 -0.0128324 --0.0116585 --0.0674422 --0.0425109 --0.0398634 --0.0531835 --0.05243 --0.0691099 -0.036574 -0.0651994 --0.0155029 -0.0555064 --0.0327804 -0.0182907 -0.0166352 -0.00912913 --0.0754672 --0.0392159 --0.0111949 -0.00938729 --0.0275624 --0.0893494 --0.0224215 -0.00967344 --0.0906737 --0.0103626 --0.00262047 -0.00152452 --0.0405506 -0.0545249 --0.00595934 -0.0340505 -0.00744254 --0.018336 -0.0610065 --0.0521819 --0.0221709 -0.00392248 -0.0448022 --0.0217511 --0.00366649 --0.0701667 --0.00333286 -0.0294194 --0.0544205 -0.0391567 --0.0382435 --0.0111665 -0.00113424 -0.0846073 --0.0191305 --0.0326415 -0.0205999 -0.0458219 --0.0524747 -0.0565041 --0.0216917 -0.060571 --0.0333948 --0.0367079 --0.0485342 --0.0569813 --0.0580468 -0.0208197 -0.0409353 --0.046074 -0.0403463 --0.0202087 --0.0117276 --0.0512299 -0.0711022 --0.0424474 -0.0332793 --0.0587868 -0.00633621 -0.0712389 --0.0301066 --0.0833016 --0.0543486 -0.0288213 -0.0314193 -0.0552354 --0.027379 -0.0485338 --0.0022624 -0.0950212 --0.0601669 -0.0406885 -0.0240953 -0.0782341 --0.0598057 --0.0188473 --0.0306269 --0.0314776 -0.121289 --0.0849696 -0.0492416 --0.0188083 --0.0299177 -0.0135608 -0.0902191 --0.0780798 --0.0705808 -0.00523211 -0.0337756 -0.0460782 --0.017586 --0.0517757 --0.104517 -0.0402861 --0.00628888 --0.0270516 --0.0473796 --0.00247243 -0.0824114 --0.0175907 -0.00101381 -0.0524845 --0.00841059 -0.109546 -0.0228899 --0.0268366 -0.0193243 --0.0231967 -0.00398089 -0.0826362 --0.0884839 -0.0159461 --0.0420479 --0.0687688 -0.00677194 --0.0350536 -0.0620674 --0.0280286 --0.0499964 --0.0887836 -0.00693343 --0.0221271 -0.0765232 --0.0199976 -0.0153256 --0.169247 -0.0519018 --0.10342 -0.0292525 --0.00671891 --0.00473747 --0.00838013 -0.041048 -0.118026 -0.0323612 --0.021615 --0.000517995 -0.068013 --0.0509767 -0.0515046 -0.0154623 --0.0213926 --0.0298817 --0.00453736 -0.00592846 -0.0502849 --0.0567293 --0.112973 -0.0233414 -0.0316077 -0.0811278 -0.046108 -0.0175676 --0.0729494 --0.00164775 -0.0157624 -0.0368461 --0.0334965 -0.00775661 --0.0501085 --0.0200639 -0.0370346 -0.0540547 --0.0125048 -0.0115868 -0.0448282 --0.0494347 --0.0160261 --0.108588 -0.0469966 --0.0123161 -0.107256 --0.0562196 --0.0670091 --0.0274788 --0.00581534 --0.0174449 --0.10103 -0.00572217 --0.0179126 -0.104003 --0.0509564 -0.0122289 -0.0494048 --0.0389504 -0.0247455 --0.0408632 --0.0136797 --0.0247703 --0.00596017 --0.0112213 -0.00946885 --0.0138327 -0.10604 -0.0227831 --0.0226739 --0.0329087 -0.0327993 -0.0757124 --0.00941645 -0.0706231 --0.0402427 --0.0409321 -0.0593636 -0.0588326 -0.00973775 -0.0559922 -0.0115327 -0.00158803 -0.0769671 -0.0918873 --0.0303447 --0.0354694 -0.0011564 --0.0139013 -0.0315475 -0.000795672 --0.0483103 -0.0957459 -0.0194696 -0.051469 --0.0633083 -0.00698036 --0.0315583 --0.0668193 -0.0405375 --0.0396155 --0.0616679 --0.0576703 -0.0545437 -0.0559885 -0.0528447 -0.0488045 --0.0110375 --0.0365498 --0.0153299 -0.00150123 --0.0513137 --0.0202917 -0.0663251 -0.134499 -0.019035 -0.0229516 --0.032805 -0.0456032 -0.0489763 --0.0123439 --0.0404978 --0.0118635 --0.0183489 -0.0439957 --0.0321823 -0.0423983 --0.0633676 --0.0359255 --0.0212472 --0.124052 -0.0260052 -0.0367869 -0.0405214 -0.00670286 -0.00598314 -0.0153122 -0.0358514 -0.0911168 --0.0647294 --0.0314803 -0.00450239 --0.0373229 -0.0605465 -0.00709071 -0.0453109 -0.0228511 -0.021067 -0.0536143 -0.00448601 --0.0821808 --0.00843207 -0.055934 --0.019238 --0.0172849 --0.105043 -0.0271801 --0.0327632 -0.0741008 -0.0491873 -0.0284617 -0.00485798 --0.0356481 --0.0192323 --0.0548299 -0.0136958 -0.047187 -0.0682287 --0.034919 --0.00426504 -0.0198226 -0.0634851 --0.0159355 -0.0195203 -0.0564298 --0.0227872 -0.0659144 -0.0139402 -0.0654956 --0.0339494 --0.0574629 --0.0867644 --0.0467254 -0.034164 -0.0391276 --0.049476 --0.00573053 -0.0505425 -0.0110785 -0.0841392 -0.0271141 --0.13653 --0.00989238 -0.0259036 -0.106943 -0.0439225 --0.0140493 --0.00147441 --0.0117671 --0.0137053 -0.064632 --0.0792859 --0.00163079 -0.0352092 -0.0224624 -0.0206567 -0.115873 -0.0396271 --0.0252404 -0.052163 -0.027853 -0.060241 --0.0148412 -0.00811442 --0.0114945 -0.0315776 -0.0577415 -0.0703026 -0.00549913 --0.0783241 -0.0175958 -0.0815019 -0.0156013 -0.0551634 --0.0488853 --0.0384579 --0.0482124 -0.0454689 --0.0254572 --0.0496029 --0.102733 --0.0388697 --0.0558212 -0.0220557 -0.0472038 --0.0247579 -0.0437811 -0.0769459 --0.040836 --0.067417 --0.0639352 --0.122759 -0.0119221 -0.0340243 -0.0220748 --0.0382289 -0.000605291 --0.00725759 --0.0725601 -0.0733289 -0.0901035 -0.0775647 --0.0221916 --0.0494117 --0.0762916 -0.0579404 --0.0745012 -0.00712724 --0.0811213 -0.0249034 --0.0225904 -0.035369 -0.11303 -0.0458134 -0.165298 -0.0389821 -0.074127 -0.0357659 --0.0766109 --0.0329677 --0.132411 -0.047269 -0.0199064 --0.0120392 --0.0538989 -9.49002e-05 --0.00421408 -0.0158882 -0.103696 --0.0400117 --0.0697362 -0.0341006 -0.0356838 -0.0607022 --0.0136985 --0.0408019 -0.0534034 --0.0102578 --0.0728517 -0.00780226 --0.0266419 -0.0324573 --0.0222651 --0.0425947 --0.00850287 --0.0279942 -0.0231418 --0.00545116 --0.0322533 --0.0232058 --0.0283301 --0.0602385 -0.037352 -0.00125708 -0.0637639 -0.0357107 -0.0526789 --0.0156527 -0.0560419 -0.0242624 -0.0154359 -0.0470021 -0.0509131 -0.0213149 -0.0320023 -0.0853117 -0.00676328 -0.0151403 --0.00726717 --0.00262696 -0.0166359 --0.0427763 --0.0690163 --0.0687419 --0.0278296 -0.0303124 --0.00423463 -0.0338954 -0.0133289 --0.0602122 -0.0564264 --0.0237327 --0.00717417 --0.0647984 --0.00514749 -0.0538098 --0.00423755 --0.0464726 -0.0526274 --0.000683789 -0.0823233 --0.0311527 --0.0190652 --0.0415299 -0.0221798 --0.0182698 -0.00988894 --0.0659133 --0.0393911 -0.049913 --0.0488299 --0.0559155 --0.041007 -0.0182576 --0.0388739 --0.00850767 --0.10328 --0.00142778 --0.0854841 --0.0190077 -0.0797215 -0.021026 --0.0149658 -0.0157782 --0.0470051 --0.0208422 --0.00945111 -0.0595166 -0.0212748 -0.0117885 --0.0287524 --0.108725 --0.0101425 --0.0041369 -0.0514892 --0.124897 --0.0183443 --0.0178369 --0.0145805 --0.0414572 --0.0524395 -0.00342781 --0.0248554 --0.0489044 --0.0156017 --0.0170128 --0.0261334 --0.0109679 --0.0572406 -0.0356131 --0.0350959 -0.0168314 -0.0605943 -0.0312483 --0.0205602 -0.0483225 --0.0905763 -0.109491 -0.00667246 --0.0398399 -0.0402075 --0.0257191 --0.0199764 -0.0618145 --0.016006 -0.00574369 -0.00375843 -0.0300851 --0.0667627 --0.016412 -0.00173977 --0.0342488 -0.0146364 --0.0362823 -0.0700497 --0.108575 -0.0225894 --0.0150268 -0.0515751 -0.0752382 -0.0580582 -0.0520227 --0.0351186 -0.0488749 --0.0311582 -0.0140429 -0.010934 -0.0354331 --0.0399774 --0.0335695 --0.0314479 --0.00081635 -0.00176819 --0.00405224 -0.0347482 -0.0931293 -0.0441723 --0.0271718 --8.20486e-05 -0.0387767 -0.00712997 --0.0291606 --0.0584906 -0.0493719 --0.022285 --0.049572 --0.0133355 --0.0675226 -0.0512877 --0.0560396 -0.00901035 -0.0787192 --0.00285916 --0.0752905 --0.0486998 --0.0505627 -0.000257169 -0.00578079 --0.0309344 --5.96307e-05 --0.101082 --0.0111241 -0.0033677 -0.0607582 --0.0283202 -0.0183853 --0.00931347 -0.0215394 --0.0417905 -0.0807982 -0.0679444 --0.0501434 -0.0578513 -0.0635239 --0.0285744 -0.0775431 -0.0885057 -0.065454 --0.0356108 -0.0307145 -0.0388492 --0.116029 -0.0265412 --0.00417516 --0.0224936 -0.0184088 -0.0246003 --0.000331321 -0.0495306 -0.0803036 --0.00361699 --0.0126614 -0.0192011 --0.0303297 -0.0654177 --0.0341571 -0.0565779 --0.0103844 -0.0606909 -0.0024081 --0.0636242 --0.0803186 --0.0163799 -0.0373487 -0.0505222 --0.0138249 --0.0572815 -0.118749 -0.0826902 -0.018628 --0.00656231 -0.0405989 --0.00625508 --0.040388 --0.00357253 --0.0256621 --0.0589082 -0.0422664 -0.0187519 --0.0186396 -0.0991312 --0.0851737 -0.0258835 -0.0695052 --0.0231525 --0.0426816 --0.0161319 --0.0315383 -0.0372353 -0.0096593 -0.0547439 -0.0113738 -0.0603793 --0.0129522 --0.0107063 -0.00773719 --0.040282 --0.0251353 --0.0182858 -0.0526522 --0.0495124 -0.0684808 --0.0382075 --0.0554155 --0.0157159 --0.0227729 --0.0259662 -0.0486206 -0.0156873 --0.0676117 --0.0641042 --0.0660397 -0.105934 --0.113679 -0.046617 -0.0136234 -0.0367251 --0.0306481 -0.0850859 -0.065384 -0.0749506 --0.0160689 -0.043963 --0.0266473 --0.0155562 --0.0753214 -0.0207836 -0.0376532 -0.00706247 -0.0105832 -0.00329868 -0.0219332 --0.0120442 --0.0318131 --0.100804 -0.0315618 --0.0176262 -0.0118699 -0.0100314 --0.0135507 --0.000891035 --0.10512 -0.0696102 -0.0560123 -0.0355679 --0.0114458 -0.105851 --0.0536683 -0.0856087 -0.00918146 --0.0517371 -0.022977 --0.0192047 -0.0750467 --0.0175582 -0.0745985 --0.0149058 --0.0860021 --0.036381 --0.0248288 -0.0195574 -0.0735009 --0.0210867 -0.0285255 --0.0276585 -0.0421703 -0.077446 -0.0419173 --0.0731225 -0.0201842 --0.0318426 --0.0148657 -0.0018661 --0.00267648 -0.0503808 -0.0362871 --0.035103 --0.0208859 -0.0683801 -0.097555 --0.0511984 --0.00292322 --0.123889 -0.0248281 --0.0496353 -0.0389608 -0.0155279 --0.0178449 -0.00968432 --0.0650842 --0.043011 -0.0434939 -0.0109103 --0.0134379 -0.039514 -0.00317301 --0.0113229 -0.00185585 --0.0251784 -0.00458636 -0.0863913 -0.0193618 --0.0738024 --0.0136959 -0.00469991 --0.0766041 --0.0304181 --0.000539717 -0.00387734 -0.0916616 -0.0803499 -0.0122659 -0.00415788 -0.0439742 --0.0536845 --0.0735997 --0.0109212 -0.0569361 --0.0664542 --0.00168131 --0.0224474 --0.0153474 -0.000187071 --0.000681393 --0.0166042 -0.0121672 -0.0725167 -0.0915679 --0.0399188 --0.0607454 -0.000366485 --0.00623758 -0.0648773 --0.0129734 --0.0100542 --0.00531537 -0.017538 -0.0231188 --0.0583554 -0.0244653 --0.0563538 --0.00290287 -0.0371067 -0.010075 -0.000713765 --0.00222223 --0.013296 --0.0242983 --0.0573207 -0.00434428 --0.00864097 -0.0287433 --0.0766561 --0.0654766 -0.0945939 --0.0434994 -0.0394365 -0.0981027 --0.0618177 --0.0771809 -0.0283519 --0.0187787 --0.0675996 -0.0591836 --0.0276984 -0.0308913 --0.0552344 --0.00732585 --0.0173021 --0.0154776 --0.0488933 -0.0598803 -0.104117 --0.0703863 --0.0127108 --0.0241699 --0.0487433 --0.00755308 -0.0728241 --0.0194782 --0.0493008 -0.0241261 --0.130892 -0.0138217 --0.0360588 --0.0125039 --0.0091496 -0.0822338 --0.158946 -0.0426237 -0.0114844 -0.0966238 -0.00841514 --0.0348544 -0.0355114 --0.0529672 -0.104864 -0.055148 --0.0823935 --0.0687296 -0.0838031 -0.0208512 -0.0162124 -0.065444 --0.00128632 -0.021787 --0.00679642 -0.0494993 -0.030988 -0.00769038 -0.0194834 --0.0482215 -0.104573 --0.0154422 --0.0142889 -0.109575 --0.0809512 -0.0651121 -0.0115344 -0.000349122 -0.100933 -0.203069 -0.0784537 --0.041557 -0.00249121 -0.0266923 --0.0270338 --0.0580272 --0.159451 -0.0665625 -0.00931003 -0.0402582 -0.0201973 -0.0260412 -0.0703049 -0.00158253 -0.037246 -0.0633862 -0.00734873 -0.108875 -0.0609634 -0.00793097 -0.0122762 --0.0428032 --0.0520298 -0.0109591 --0.0130288 -0.0193933 --0.0182593 --0.000677093 --0.0187224 -0.0289502 --0.0566005 --0.0418175 --0.0606093 --0.0484892 -0.0292106 -0.031144 --0.0153595 --0.00096297 -0.0527386 --0.0742189 -0.00805306 --0.00151734 -0.066603 --0.0150268 -0.0546953 -0.00329591 -0.0201881 --0.0290285 -0.049507 -0.095758 --0.022436 --0.0330048 --0.0352455 --0.0704239 --0.0850268 --0.0634067 --0.087144 --0.0534295 --0.0823573 -0.021066 --0.084725 --0.0391184 --0.0483156 -0.020873 --0.0360994 --0.020979 -0.00404354 --0.158867 --0.0491304 --0.021602 --0.00658113 -0.0366738 -0.0632878 --0.0769069 -0.0267766 -0.00835639 --0.118181 -0.0586229 --0.019644 --0.120258 --0.033452 -0.0304605 -0.0241571 --0.0154704 --0.0732237 -0.141528 --0.0495804 --0.0737272 --0.0233 --0.0143493 --0.0165916 -0.0542255 -0.0154554 -0.00279517 -0.105231 --0.0955197 -0.0246332 -0.0586758 -0.0238668 -0.00549068 --0.0450206 --0.00971519 --0.0812497 --0.123107 --0.0486748 --0.035498 -0.00238312 -0.0231383 -0.102201 --0.110378 -0.00306669 --0.0270746 --0.0594047 -0.0103119 -0.0281216 --0.0230291 --0.0579792 --0.0328766 -0.0210708 -0.0400573 --0.00857936 -0.0568766 --0.047236 --0.0869201 -0.120779 -0.0264696 --0.0983173 -0.0235554 --0.0393399 --0.0751675 --0.0849003 --0.00963854 --0.0815832 -0.0780428 -0.0574238 -0.00691166 -0.0735234 --0.0517378 --0.00986244 --0.0296468 -0.0223444 -0.114523 --0.00486041 --0.0612355 -0.0290071 --0.0282013 -0.130613 --0.00637939 --0.044366 -0.0182617 --0.0432888 -0.0359759 --0.00686364 -0.0122766 --0.0851656 -0.0431394 -0.039207 -0.0412938 --0.0248541 --0.0150994 --0.0350417 --0.0493383 -0.0395346 --0.0111999 --0.000495893 -0.0322071 --0.105762 --0.0398636 -0.00633331 -0.0854073 --0.00733046 -0.029402 -0.060248 --0.00873453 -0.0438067 -0.0131648 --0.0354791 --0.0274271 -0.0456383 --0.000711679 -0.0242955 -0.039809 --0.0516595 -0.0370142 -0.0184072 --0.007065 --0.0987402 -0.023831 --0.00851459 --0.0276471 --0.0114865 --0.0242085 -0.00918373 --0.0472321 -0.101853 -0.0567118 -0.0281598 --0.0613338 --0.021133 -0.0276999 -0.0239165 --0.118007 --0.0218871 --0.0368363 --0.00997551 -0.00487683 -0.0420238 --0.0340432 --0.0192823 -0.0550792 -0.0365142 -0.0082082 --0.0497227 -0.0504208 --0.036744 -0.0949193 --0.0128835 -0.0555778 -0.00825919 --0.100018 --0.0118634 --0.05725 --0.0852074 --0.0526763 -0.0626938 --0.0234351 -0.0529764 -0.0544878 --0.0538459 --0.0592941 --0.0268153 -0.106732 -0.0290357 -0.0182919 -0.0270827 -0.0129453 -0.0278431 -0.010126 --0.0294364 -0.0314234 --0.0605011 -0.0499004 --0.00364327 -0.0417681 -0.0398177 --0.104355 --0.0102496 -0.0192734 --0.0593757 --0.022737 --0.044075 --0.057929 -0.194982 -0.0560982 -0.040585 --0.0251504 --0.00448456 -0.00946654 -0.0384149 -0.00998312 -0.0327206 -0.0223077 --0.0284792 --0.000766355 --0.0371639 -0.0495754 -0.015099 -0.0520939 -0.0810771 -0.0484899 --0.101793 --0.0175311 -0.0642496 --0.00706479 --0.0111619 -0.0701583 -0.025406 -0.0107497 -0.0378436 --0.00878423 -0.0056493 -0.0324956 -0.0527364 -0.0168508 --0.0577268 --0.0074867 -0.0867927 --0.0795822 --0.0494088 -0.00679595 --0.0539002 --0.107045 -0.0604543 --0.00671015 -0.0129346 -0.0412918 -0.0565815 -0.032561 --0.00598493 -0.0411479 -0.00278237 -0.0098571 --0.0462983 -0.0212196 --0.065114 -0.0819622 -0.0736152 -0.0132839 -0.024387 --0.0440569 -0.0638483 -0.0378122 -0.0110241 -0.0324031 --0.0431437 --0.0395117 -0.0336672 --0.00355114 -0.0369372 -0.0672152 -0.00973308 --0.0368213 --0.0713449 --0.0236498 -0.017604 -0.025304 -0.0448121 --0.033276 --0.00578895 --0.0900333 -0.0260386 -0.0777144 --0.0788628 -0.0513288 --0.0301515 -0.0395152 --0.0886003 -0.0584209 -0.0221092 --0.00105357 -0.0581161 -0.0686855 --0.000430558 -0.0666208 -0.0344472 -0.12793 --0.0533762 -0.0180634 -0.127616 --0.0651094 -0.112931 -0.0189881 --0.0787676 -0.0859762 --0.0444282 -0.00868176 -0.00598006 -0.0794239 --0.041868 --0.0129784 -0.0659884 --0.0493451 --0.0170526 --0.0672568 --0.10643 -0.0389394 -0.040099 -0.0264097 --0.0492632 -0.0462704 --0.0220689 --0.050681 --0.00916457 --0.0841107 -0.0586478 -0.0702795 --0.0701529 --0.0538891 -0.0209655 -0.00930088 --0.104488 -0.0216606 --0.0676592 --0.179125 -0.0566545 -0.0246655 --0.0366117 --0.0392865 --0.0112275 -0.0630329 --0.00270912 -0.0143154 --0.00274781 -0.00190014 -0.0370576 -0.0414258 -0.0384573 --0.0272884 --0.0352552 -0.024257 --0.0681583 -0.0338474 -0.0440782 -0.0016562 -0.0336462 --0.0418734 -0.00452452 -0.0680286 --0.0715545 -0.00344447 -0.108323 --0.00617545 --0.0891435 -0.00990142 --0.106406 -0.0206217 -0.0332467 -0.0481459 --0.0102545 -0.0436872 -0.00628274 -0.128918 -0.0457875 -0.080352 -0.0368423 -0.00415703 --0.0189961 -0.00591885 -0.0367636 --0.0382987 --0.0217557 --0.0654074 --0.0584189 --0.0284063 -0.00453129 --0.00882054 -0.0343061 -0.0337032 --0.0348581 -0.0234602 --0.0371815 -0.0256737 -0.020406 --0.0286608 --0.03811 --0.0233543 -0.00558387 --0.0843023 --0.0372036 --0.0167864 -0.0540955 --0.106341 --0.00670305 -0.0641467 -0.00460203 -0.0822707 --0.0469603 --0.0227736 --0.062516 --0.00827191 --0.0504438 -0.029791 --0.0135805 -0.0455656 --0.0141477 -0.0706425 -0.0511115 --0.114506 -0.11551 -0.0408273 --0.0147126 --0.016868 --0.0852793 --0.0278438 --0.0673657 -0.000687794 --0.0277948 -0.0688265 --0.0584736 -0.0464031 --0.0248382 -0.0485472 --0.0500579 --0.00992155 -0.0487637 --0.0214727 -0.00768665 --0.0886805 --0.0028801 --0.0184952 --0.00438713 -0.0176716 --0.113144 --0.0648896 --0.0484216 -0.0283695 -0.102859 -0.0920784 -0.0021824 -0.0522061 -0.0195353 --0.00542224 --0.0551078 -0.00330767 -0.0299223 --0.0461995 -0.0473956 --0.0349537 -0.0219231 -0.0127556 -0.0122574 --0.0630881 -0.0192777 --0.0344321 --0.0144184 --0.00724054 --0.0976701 --0.0215934 -0.00629072 --0.0284264 -0.00429267 --0.0781069 -0.0430631 --0.0679255 -0.0818432 --0.043555 --0.0308173 --0.0877117 -0.0394005 -0.0433017 -0.152255 -0.0362683 --0.0196907 -0.0331706 -0.024577 --0.0375367 --0.0450213 --0.115397 -0.0369955 -0.0477994 -0.0552519 --0.0142359 --0.034612 --0.0605364 -0.0370456 --0.022944 -0.0143555 --0.0234259 --0.0346199 -0.0672674 --0.0360205 -0.0324672 -0.0754493 -0.0970168 -0.00348036 -0.101235 -0.00410962 --0.0690675 --0.0642586 -0.0315097 -0.106472 --0.116713 -0.0331935 -0.0673213 --0.0369318 --0.00204596 -0.102056 --0.0844902 --0.00123898 --0.0771502 -0.0309793 -0.0736331 -0.0919916 -0.0366533 -0.0350274 -0.025812 -0.00254514 --0.0271121 -0.0156223 --0.0684797 --0.00876964 -0.0289942 -0.0340048 --0.0428142 --0.0765989 -0.0350238 --0.0357638 -0.0445802 -0.0123874 -0.019919 --0.0358412 --0.0663593 --0.0561269 -0.0350982 --0.0283941 --0.0760347 -0.0230354 --0.00710275 -0.00645056 --0.101904 --0.00685341 -0.0138852 --0.0529659 -0.093153 --0.00765789 --0.00654855 --0.0363873 -0.0340837 --0.0193234 -0.00370128 -0.0824683 -0.0725446 --0.108095 -0.0169239 --0.0933232 --0.012626 -0.0137045 -0.00121357 -0.0156242 --0.0599897 -0.0715705 -0.0203433 -0.0139804 --0.0221468 -0.0297072 -0.00775111 -0.0151183 --0.00901443 --0.00365303 -0.0633816 --0.0389834 -0.0525188 --0.0100128 -0.00382542 -0.0503457 --0.00861587 --0.0247338 --0.0297352 --0.0201363 -0.0257718 -0.0641536 -0.0099282 -0.0124435 -0.011585 -0.0106933 -0.0173298 -0.00673276 --0.0509353 --0.0385148 --0.0120366 -0.0254919 -0.102347 --0.0216665 -0.0387166 --0.0932853 -0.0160518 --0.00628113 --0.0551544 -0.0165548 --0.0676933 -0.0542799 -0.0218421 --0.0638901 -0.00789358 -0.140211 -0.0330041 --0.0247604 -0.0409116 --0.0276589 -0.028738 --0.0373336 -0.0148621 --0.107412 -0.0326873 -0.00355567 --0.00273909 -0.0105876 -0.0546711 -0.0198846 --0.0702241 --0.00977926 --0.0232621 --0.00404993 --0.131435 -0.0134028 --0.112772 --0.0714928 --0.0321737 -0.0371472 -0.0759927 --0.0735178 -0.0191304 -0.0607963 --0.00749143 --0.0301056 --0.00804527 -0.0315179 -0.00253723 --0.0396442 -0.0266907 -0.0612525 -0.0547959 -0.064169 -0.0261 -0.0565541 --0.0441685 -0.0699121 -0.0703243 --0.0133843 -0.0244188 -0.0585077 -0.100296 -0.0950457 --0.0941488 --0.00774909 -0.0561509 -0.0428646 -0.0168144 --0.0302738 -0.105451 -0.130846 --0.0637491 -0.0420559 -0.00674652 -0.0133134 --0.0160303 -0.0884686 --0.0233044 --0.00855802 -0.0610333 -0.0430626 -0.00793868 --0.0573246 -0.025598 --0.143425 -0.0526062 --0.0342207 -0.0171699 --0.0246617 --0.0558681 --0.0397712 -0.0232473 --0.043606 -0.0131873 -0.0631697 -0.0377334 -0.00409753 -0.0103547 --0.0689576 --0.0968631 -0.0581939 --0.0839858 -0.000813218 -0.0173946 -0.0637643 --0.0862701 --0.0757277 -0.0519249 --0.0440267 -0.0419596 -0.0908387 --0.0126996 -0.0419913 -0.013079 -0.0270273 -0.0839438 -0.0266999 -0.00159737 --0.0696343 --0.0398796 --0.00469377 -0.0858488 -0.0550644 --0.00468178 -0.0317773 -0.0229798 -0.0278737 --0.00107016 -0.0856328 -0.0539885 -0.0276557 -0.0579833 --0.0744846 -0.0311346 -0.0703478 --0.0313845 -0.00429556 --0.000547215 -0.00598692 -0.0548402 -0.0698044 -0.112687 --0.0485271 --0.0092848 -0.0111999 --0.0148396 --0.0509748 --0.0313794 -0.0607236 --0.024337 -0.0176638 -0.0477574 --0.0535115 -0.0149347 --0.0593851 -0.0638118 --0.0685481 -0.0293423 --0.00870826 --0.0207803 --0.0932547 --0.0792888 --0.0093163 --0.0217803 --0.0822588 -0.0243119 -0.0553149 -0.0595764 -0.0892537 -0.0432787 --0.0567425 -0.0793643 --0.00373277 --0.0266653 --0.06445 --0.00633522 -0.010298 -0.0576901 --0.0076835 --0.0396042 -0.023759 -0.0293955 -0.0370681 --0.0202511 --0.00715059 --0.0328288 --0.0476365 -0.00568505 -0.00473381 --0.0631125 -0.00489755 -0.0946966 -0.0334845 --0.0771503 --0.0516038 --0.00693376 --0.0157002 --0.0228662 -0.0379918 -0.0162298 --0.024252 -0.0218888 -0.00182512 --0.00424781 --0.0127413 --0.0599355 --0.0354965 -0.028875 -0.0708166 -0.0200357 --0.0880781 --0.0115465 -0.125567 --0.0855043 --0.0090313 -0.0324949 --0.0324759 -0.0450629 --0.0742353 --0.0313341 -0.0553077 --0.0366598 -0.0160551 -0.037546 -0.0602401 -0.0172482 --0.00419709 --0.00662752 --0.0373866 --0.0937747 --0.0747785 --0.0349437 --0.0185244 -0.108466 -0.0447066 --0.0462204 --0.0596612 -0.0342443 -0.0354801 --0.0373304 --0.0205304 -0.0153442 -0.0190026 --0.0282339 --0.0441252 -0.00171681 --0.00504101 --0.0227759 -0.0485694 --0.0175133 --0.0306982 --0.0304984 --0.0447177 --0.00383587 -0.00416811 -0.0477288 -0.0444942 -0.0510551 -0.0154404 --0.0190175 --0.0135789 --0.0210358 -0.0299742 --0.0485678 -0.0769299 -0.0247073 --0.0166398 -0.00502028 --0.0260251 -0.0346752 --0.0382993 -0.0498415 -0.0342709 -0.00236039 -0.0442691 --0.110944 -0.0130926 -0.0803689 --0.085891 --0.00627842 -0.0104498 --0.00698086 -0.108658 --0.0424463 -0.0556582 --0.0161895 --0.0246632 -0.0528332 -0.0791382 --0.00389393 --0.0361965 --0.0321391 --0.0330908 --0.0635254 -0.0396627 -0.0372773 -0.0648657 --0.0249357 --0.00663598 --0.0124897 --0.0443316 -0.0525057 --0.0605618 --0.0158153 --0.0617281 --0.0113816 --0.0245593 -0.00929869 --0.00694842 --0.075554 --0.00505713 -0.0397014 -0.0348076 -0.014557 -0.0123479 --0.0563767 --0.0124206 -0.0218923 -0.0247956 -0.0422329 --0.000224844 -0.0469856 --0.0210168 --0.0128127 -0.0144132 --0.0157932 --0.112869 -0.00157664 --0.0528551 -0.0954075 -0.0267781 -0.0575508 --0.00986524 -0.00726117 -0.034816 -0.00345074 -0.0123421 --0.047752 --0.114543 --0.00607229 --0.040596 -0.0457824 -0.00727639 -0.0558 -0.0453569 -0.00438578 --0.00451175 -0.00407956 -0.0707536 -0.0407909 --0.0955835 -0.129596 --0.0322459 --0.0755873 --0.0237425 -0.0156486 --0.0243162 -0.0316817 -0.0709651 -0.000525198 -0.0471155 -0.0329445 --0.0352966 --0.0328134 -0.0682558 --0.0418085 --0.0945425 -0.0526 --0.0124947 --0.02472 -0.0235176 --0.0765682 --0.140034 --0.0208515 --0.0744537 -0.0108167 -0.0314499 -0.0492234 --0.032698 -0.00375163 -0.0149254 -0.0294285 --0.0171397 --0.00884848 --0.0670011 --0.0704952 --0.005143 --0.0969216 --0.0801479 --0.0224966 -0.0646341 -0.037774 -0.102976 --0.0603299 --0.0838355 -0.056964 -0.0886514 --0.111528 --0.0616028 --0.0224145 -0.0296254 -0.0270995 --0.0680601 -0.0190604 --0.0409403 -0.0385528 --0.0148357 --0.0479935 -0.0319178 --0.037205 --0.0902313 -0.114174 -0.0408646 --0.0685344 -0.00697362 -0.0107811 -0.0401561 --0.0394625 -0.0109921 --0.0202083 --0.0671421 -0.0115687 -0.0049406 -0.0494041 --0.00891927 --0.0375351 --0.0110426 -0.0948972 -0.100525 --0.0376617 -0.0291251 -0.0347537 --0.0542752 -0.0248743 --0.0116805 --0.000709659 -0.0494598 -0.0254564 --0.0471489 -0.0161002 -0.0958221 -0.0839523 --0.0176147 --0.00624635 -0.0373425 -0.0415502 --0.0218945 -0.010913 --0.0687137 -0.0747007 --0.0634026 --0.00117118 -0.00743964 -0.0145767 --0.0638562 --0.0523408 -0.0865645 -0.0518238 -0.0306055 -0.0173779 -0.0471308 -0.0345905 -0.0301711 -0.0277448 -0.0509124 --0.0714122 --0.0106581 -0.053456 -0.0679478 -0.00551433 --0.0317644 -0.0384439 -0.0329767 --0.00954934 --0.0323626 --0.053316 -0.00180115 -0.0162591 --0.0892099 --0.000691107 --0.112721 --0.0405226 -0.0636303 -0.0109756 -0.0791721 --0.0139016 -0.0548121 -0.0498841 -0.0585891 -0.0457807 -0.0364748 -0.0412964 -0.0728398 -0.0532988 -0.0336247 -0.0221741 --0.0934263 --0.0499807 -0.0432383 --0.0631359 --0.180685 -0.087572 -0.0479269 --0.0495046 -0.0133144 -0.0269726 -0.0515321 -0.101172 -0.0153788 --0.0347242 -0.0183046 --0.0529856 --0.038854 -0.0273321 --0.0112416 -0.0325473 --0.00388613 --0.00116022 -0.0576706 -0.0324261 -0.0431258 -0.0201958 --0.091881 -0.0240478 -0.00479363 -0.0252527 --0.06324 --0.0120513 -0.0345417 -0.0160637 -0.00643526 -0.134779 -0.0306933 --0.037462 -0.00633281 --0.0207956 -0.118244 --0.0426182 -0.0306553 --0.050168 --0.0656679 -0.0364196 --0.0240612 -0.00670768 -0.0434187 -0.0491871 -0.0286642 -0.00695428 -0.0372636 --0.0822615 -0.0266736 --0.0442887 -0.00853232 -0.0149386 -0.0255226 -0.0306767 -0.00670242 -0.0405041 --0.0670007 --0.0756664 --0.00829711 --0.00771729 -0.0347111 --0.0223423 -0.000196214 -0.0296998 -0.0300012 -0.033933 -0.123568 -0.0059918 --0.0128456 --0.0479237 --0.0628941 -0.0246851 --0.0486442 -0.00908254 --0.0293589 -0.00944166 -0.0345426 --0.0466422 -0.0187646 -0.0977779 -0.0163956 -0.0647182 --0.0349986 -0.105593 -0.000645186 --0.074567 --0.127986 -0.083393 -0.000813188 -6.83234e-05 -0.0554671 -0.00950634 -0.0399192 -0.0672418 -0.0554808 --0.000334109 --0.050264 --0.0318543 -0.0808589 -0.060504 -0.128427 --0.112474 --0.00969334 -0.0457402 -0.00540376 -0.0154063 --0.0830927 --0.0124401 -0.0161282 --0.0876881 -0.0290202 -0.0172991 --0.0784703 -0.0525469 -0.0466877 --0.0925774 --0.0742472 --0.0324302 -0.0109037 -0.162698 --0.0404534 --0.0527629 -0.0115525 --0.0605264 --0.0507503 --0.0223481 -0.0537973 --0.0109383 --0.0333252 -0.0596314 --0.020353 --0.0027191 --0.0171886 -0.0317041 --0.00793923 --0.0176835 --0.0213615 -0.0150444 --0.0394417 --0.0248782 -0.010381 --0.0601783 -0.0275107 --0.0620914 --0.00340271 -0.0145691 -0.00664908 --0.0138746 --0.0224468 --0.0136686 --0.0565881 --0.0122891 --0.0535581 -0.0370862 -0.0120542 --0.0118098 -0.0199871 -0.0521229 --0.0509067 -0.0112789 -0.029793 --0.0386855 --0.0442481 -0.0886712 --0.0609444 -0.00491907 --0.0135845 -0.0387984 -0.0394258 -0.0158889 -0.0320532 --0.0358992 -0.0100431 -0.00166967 --0.105458 -0.0224143 --0.0869969 -0.00685657 -0.0114656 --0.0864553 -0.0703406 -0.0636432 -0.102124 -0.0787005 --0.0480223 --0.00105785 -0.0503985 --0.0178665 -0.00502687 -0.0212795 -0.0807332 --0.00552521 -0.0401275 --0.0665463 --0.054011 -0.0151858 -0.0460269 -0.0212176 --0.0440421 -0.0467073 --0.00379428 --0.0097073 --0.0502792 --0.0228951 --0.0065356 -0.0894059 -0.0677465 -0.0833421 -0.0827341 --0.040559 --0.0381885 -0.012463 -0.0682036 -0.0338692 -0.00801282 --0.0638822 --0.0355919 --0.0188926 --0.0140597 -0.00952421 --0.0411922 --0.0411574 -0.0295741 --0.0101603 --0.0333067 --0.0095767 -0.0394462 -0.0148825 --0.00965237 --0.0441337 --0.00809196 --0.0491784 --0.00713148 -0.0347795 --0.025569 -0.0406227 -0.0679673 -0.0134471 --0.00477261 -0.032083 -0.0646194 -0.0755386 -0.00243395 -0.0477883 --0.0757855 --0.00346009 --0.00682662 -5.34592e-05 -0.0734271 -0.0175898 -0.0234008 -0.0427872 -0.0132936 --0.0236886 --0.00582477 -0.0204894 -0.0607252 --0.0282404 -0.0658734 -0.00960791 --0.00260297 --0.0728893 -0.0901856 --0.0326827 -0.0133324 -0.033379 --0.100031 -0.0716543 -0.0294737 --0.0472724 -0.0425656 -0.0652125 --0.0122106 -0.0228618 --0.0244335 --0.0554374 -0.00253105 -0.0464337 -0.0388624 --0.0572638 --0.0329697 --0.0387758 --0.0365593 --0.0355064 --0.0650118 --0.0450823 -0.0344283 -0.0617546 --0.0159823 --0.104744 --0.00982905 -0.0373206 --0.0198987 --0.0411234 --0.13657 -0.0483722 -0.0753164 -0.0177697 -0.0294158 -0.0745172 --0.109662 --0.0358348 -0.0188949 -0.00749293 --0.0600296 -0.0119394 -0.0800113 -0.0709859 -0.00690281 --0.158524 -0.022777 --0.00930329 -0.0158071 -0.00748573 --0.0846378 --0.033453 -0.0878181 -0.0742714 -0.00546187 --0.0566088 --0.0842244 --0.0291908 --0.0126918 -0.0598052 --0.0267222 --0.0117916 --0.004436 -0.00687038 -0.0273031 -0.0362532 -0.0177979 -0.0413826 --0.0737349 -0.0269828 -0.00272015 --0.0127811 --0.0445253 -0.0292113 --0.00549452 -0.0114993 -0.0165608 -0.00625032 --0.0256273 --0.0235358 -0.0781848 -0.0958851 -0.0255963 -0.100777 --0.0238838 -0.0413828 --0.00684974 -0.0501725 --0.0708326 --0.0176968 -0.0201533 --0.0265202 --0.0933884 -0.0110888 -0.0652825 -0.0348466 --0.0333235 --0.00962928 --0.0643228 --0.0155984 -0.0514286 --0.0125677 -0.0350033 -0.00782825 -0.00601138 -0.0198991 -0.0267112 --0.051934 -0.0605934 -0.010533 --0.00198024 --0.116394 --0.0108904 --0.0142434 -0.00262676 -0.0486161 -0.0226679 --0.0926732 --0.0249681 -0.0784995 --0.0532629 -0.0247582 -0.063331 --0.0507307 -0.00168958 --0.0579257 --0.0911048 --0.00119241 -0.0296501 --0.0475529 -0.00830292 --0.111672 -0.00816638 -0.00975531 --0.00134532 -0.00268887 --0.022737 --0.00448118 --0.124554 -0.0228741 --0.0372287 --0.0754874 -0.0508194 -0.0786717 --0.035921 -0.101767 --0.00427039 --0.0487285 -0.1085 -0.0294767 --0.0488454 -0.0234596 -0.0736935 --0.131439 --0.0233546 --0.0776658 --0.0450258 -0.0341567 --0.032021 -0.0379699 -0.0139921 -0.00595266 --0.0136019 -0.040954 --0.0167647 -0.0222619 --0.0559063 -0.000790368 --0.0370209 -0.0476302 --0.0144747 -0.0219796 -0.0167749 -0.0184852 -0.000504809 --0.0367174 --0.0484059 -0.0990615 -0.0347193 --0.0268796 --0.0222411 -0.0164194 -0.0414902 -0.0302703 -0.0129911 --0.0451047 -0.0436029 --0.00847125 -0.0958882 -0.0413146 --0.0140882 -0.0676394 --0.0523923 -0.0452196 --0.0730823 -0.0106427 --0.0364407 -0.0296861 --0.0164851 -0.0753776 -0.0335871 --0.10272 -0.0269777 --0.0285608 --0.0725887 -0.0211097 --0.0114622 -0.0230033 -0.0190247 -0.00517904 --0.014588 --0.069447 -0.0412942 --0.106576 --0.0819856 --0.0258616 --0.00382407 -0.0357891 --0.0472396 -0.062203 -0.0925024 -0.0076274 --0.0308495 --0.0240761 --0.01707 -0.0310052 --0.0189138 --0.0195039 --0.0182746 --0.00543062 --0.117727 --0.0390311 --0.0377143 --0.0236906 -0.00733846 --0.104465 -0.00451459 --0.0560156 --0.0563666 --0.0125014 -0.020749 --0.0347181 -0.0364034 -0.0205554 -0.0212591 -0.00715841 --0.0437798 --0.0869708 --0.0267577 -0.0178539 --0.0115315 -0.0890694 --0.0199735 --0.00840886 --0.0202732 --0.0248479 -0.0504546 -0.0385354 -0.108317 --0.0232864 -0.0611021 --0.0283174 -0.0849727 -0.0756522 -0.017584 --0.0891073 --0.0359273 --0.00810109 --0.0145569 -0.054726 -0.0490912 -0.0478567 --0.022636 --0.0660864 --0.0287383 --0.0199096 --0.0439899 -0.00426833 --0.0622933 -0.00936086 --0.0505016 -0.0648495 -0.0398144 --0.0641206 --0.0475851 -0.0157262 --0.0383407 --0.0784533 --0.0255273 -0.0732598 -0.0624279 -0.0275054 -0.00426671 -0.0640178 --0.0781543 --0.0223131 -0.0141678 -0.0471905 --0.0303944 -0.014591 -0.0834138 --0.0184766 --0.0146187 --0.0255865 --0.0295779 --0.00238215 --0.000389645 --0.0952263 --0.0253636 -0.0405386 -0.0406803 -0.00215089 --0.0210453 -0.0133905 -0.0681509 -0.0372727 -0.036191 -0.0357262 -0.0931725 --0.0185081 -0.0146106 -0.00758793 --0.057223 -0.0303563 --0.0193961 --0.0159897 --0.018491 --0.00612788 --0.00819232 -0.0840292 -0.0135991 --0.0261093 --0.0176602 -0.0535846 --0.0179434 -0.0505194 --0.026242 -0.021324 --0.00191058 -0.0662442 -0.0755917 --0.0709185 --0.0582172 -0.0303225 --0.0472077 -0.123364 --0.0606394 -0.0290715 --0.0457495 --0.0680115 --0.0242928 -0.068897 --0.0256894 --0.00305361 --0.00455527 -0.0310845 --0.0698656 -0.0772106 -0.00310063 -0.0467988 -0.0421344 -0.104045 -0.0248748 -0.00312281 --0.0386123 --0.0292383 -0.00323468 --0.024019 --0.0584284 --0.0447173 --0.0622998 --0.0494701 -0.067964 --0.0363573 -0.0165592 --0.0442285 -0.0287486 -0.0140099 --0.0242024 -0.0512266 -0.058559 -0.00370903 -0.0599435 -0.065354 -0.0144639 --0.0683486 --0.0214086 -0.054072 -0.0569704 -0.0739545 --0.0661606 -0.0288614 --0.0311881 -0.0575634 -0.00693014 -0.0496899 -0.120779 -0.000387514 --0.0035813 --0.0695442 --0.0586252 --0.0471364 -0.00183843 -0.00813127 -0.0271335 --0.0367771 -0.058332 -0.0391516 -0.0354245 -0.0228674 --0.0148209 -0.0283088 --0.0167669 --0.0301721 -0.0114048 -0.0601173 -0.0545752 --0.0587268 --0.0614774 -0.0800198 --0.0759564 --0.0398561 -0.0116158 --0.0685279 --0.0889761 --0.0243681 -0.148779 -0.150233 -0.0759378 --0.000972347 --0.0384077 -0.0535091 -0.0666406 --0.034294 -0.0128462 --0.00905662 -0.0551529 -0.0530209 -0.06991 --0.00898223 --0.0713836 --0.0860504 --0.0148052 --0.0264773 --0.0447658 --0.0605389 --0.00352737 -0.0160952 -0.00593889 -0.0446038 -0.0361801 --0.0358979 -0.0479383 --0.0501307 -0.0343995 -0.0441133 -0.0222729 -0.0143474 --0.0217966 --0.0180234 --0.0287845 --0.132604 -0.0789955 --0.0704291 -0.0754188 -0.0524674 --0.0660518 --0.0785391 --0.0156053 -0.0409786 -0.0924935 --0.0300864 --0.0205526 -0.0237827 --0.0584311 --0.0387918 -0.0345167 -0.0703075 -0.0193541 -0.0258477 -0.0385141 --0.0831929 --0.0892011 -0.027275 --0.0445738 --0.0722439 -0.00202363 -0.0314454 -0.0224951 -0.0589651 -0.0101901 --0.14077 --0.0769627 -0.00369097 -0.0131435 -0.0537298 --0.000856596 --0.0668291 -0.032504 --0.0812437 --0.0370509 --0.000331299 -0.0144799 --0.0213567 -0.0191029 --0.0228147 -0.0167547 -0.00643378 -0.0047726 -0.0218399 -0.0298452 -0.0266383 -0.00757228 -0.00702182 -0.0565365 -7.29884e-05 --0.00390235 --0.0288258 -0.0329069 --0.0379489 --0.0183773 --0.0232222 --0.0141551 --0.0213216 --0.052746 -0.0642239 --0.0248556 -0.0162448 -0.0938085 -0.0616259 --0.0567834 -0.0321072 --0.0646771 --0.0775166 -0.0114278 -0.000577391 -0.0434386 --0.00601186 -0.0233295 -0.00133466 --0.00794009 --0.0123345 -0.00117676 -0.0310643 --0.0167006 -0.042039 --0.0141017 --0.00781051 -0.00664228 -0.0298034 -0.0286045 -0.00397222 -0.0251505 -0.0380086 --0.0723029 --0.0384829 -0.0417988 --0.0825621 --0.0754854 --0.0749672 -0.0482775 -0.0204962 --0.0732827 --9.50677e-05 --0.027588 --0.0289549 --0.0282427 --0.0166493 --0.0240643 -0.0381076 -0.0488918 -0.0956869 -0.152523 --0.02124 --0.0933945 -0.0276882 --0.0386572 -0.053185 --0.0103115 -0.00961566 --0.116239 -0.0131858 -0.0726822 -0.0818622 --0.00945393 --0.0275422 --0.0308377 -0.0127925 -0.0419373 --0.0391026 --0.0462346 --0.00814729 -0.0346681 --0.042294 --0.0513659 -0.0125555 -0.020762 -0.0392934 --0.000856437 -0.0555446 --0.00139346 --0.00229217 --0.0467405 --0.0386951 -0.0664072 -0.0106484 -0.00470582 --0.0720595 --0.0474514 -0.0283733 -0.0590893 -0.0341436 --0.0224159 -0.00308038 -0.0386456 --0.0741231 -0.0396294 -0.0299775 -0.0263326 -0.111679 --0.0327264 --0.0535476 -0.014024 --0.00106521 --0.0142415 --0.0389247 -0.0189394 --0.0305007 --0.0646441 --0.0196336 -0.0490799 --0.044161 -0.051094 --0.0315047 --0.0799302 --0.0128745 -0.0307296 --0.09492 --0.0412567 --0.0270251 --0.0409905 -0.0757587 -0.0448361 --0.0582655 --0.0503262 --0.0160721 -0.103741 --0.0464289 --0.0313881 -0.0400367 --0.0625296 -0.020414 --0.0531252 --0.0201827 --0.108045 -0.059938 -0.0375506 --0.0840895 -0.0271267 --0.0211667 --0.0609823 -0.00639341 -0.0909263 -0.0442764 -0.0361479 -0.06783 --0.0787649 -0.0184231 -0.0366306 --0.0418597 --0.031091 -0.0166631 --0.0659415 -0.00424593 --0.0699517 --0.00245884 --0.0314088 -0.0254978 --0.0612022 --0.0526171 -0.00952665 --0.0863 -0.00507803 --0.0445109 --0.107453 --0.0179921 --0.0564576 -0.0275739 --0.0562312 -0.0336834 --0.00498238 --0.00085091 --0.0231058 -0.0396495 --0.0483698 --0.000519145 -0.0410787 -0.089217 -0.0794444 --0.0282317 -0.0388413 --0.0531609 --0.00258258 -0.108034 -0.0348122 --0.0470692 --0.0368325 --0.0820063 --0.0731638 -0.0377519 -0.009446 --0.0583731 --0.0608897 -0.0467819 --0.0710133 -0.0204456 -0.000974472 --0.0504403 --0.0226953 --0.0327166 -0.0732873 -0.103665 --0.0355824 --0.088269 -0.101071 --0.0275353 --0.0298615 --0.0204449 -0.0249967 -0.0611897 --0.0100846 -0.0370792 --0.0306898 -0.00969739 -0.0614322 -0.0810963 --0.039484 -0.00388868 -0.077731 -0.114577 -0.0638842 --0.0368815 -0.0946032 --0.0495858 --0.0354003 --0.0231366 --0.101636 -0.021167 --0.0273984 -0.00584378 -0.0272871 -0.0289544 -0.0821948 -0.0299698 -0.0892657 -0.0773066 --0.0246471 --0.135359 -0.0450918 -0.0888161 --0.0630492 -0.0168414 -0.0930502 -0.0523371 --0.0712733 --0.124457 -0.0331284 -0.0226056 --0.0293319 -0.0210437 -0.128136 -0.00509756 --0.0726499 -0.00868637 --0.0110809 -0.046886 -0.00650051 -0.0375203 -0.00319282 -0.0339853 -0.0429089 -0.132685 -0.00918909 -0.109728 --0.0240643 --0.0723483 --0.00977281 --0.0135808 --0.0132582 -0.0495707 --0.133892 --0.00422297 --0.0334529 -0.00440053 --0.0906213 --0.0625938 --0.156261 --0.00483176 --0.0603227 --0.0233536 --0.0961999 --0.00685884 --0.0417279 --0.0174818 --0.0217436 --0.0359775 -0.0376802 -0.0353344 --0.031183 -0.0337051 --0.0757772 -0.0402579 -0.0127067 -0.034616 -0.0921443 --0.00168155 -0.00774227 --0.0521984 -0.00027141 --0.0306468 -0.0124346 -0.0382972 -0.00307911 -0.0432868 --0.0101674 --0.098805 -0.00652184 -0.0425688 --0.00835045 -0.0182949 --0.039193 --0.0570292 -0.0215391 --0.108282 --0.0396632 -0.00308749 --0.0125259 --0.035853 -0.0374063 -0.0161556 --0.0689825 -0.0184598 -0.00795395 --0.0163685 -0.0155881 -0.0237766 --0.0580276 --0.0976684 -0.0137742 --0.0182551 --0.0762373 --0.0018984 --0.0623122 -0.0552577 --0.0169556 --0.0532084 -0.015406 -0.0552431 --0.0192641 --0.0136334 --0.0553311 -0.0819028 --0.0397929 -0.0702747 --0.0592926 -0.00421258 --0.0383873 -0.0104906 --0.0380938 -0.00218271 --0.0573074 -0.0527587 -0.025467 --0.00356423 -0.0335705 -0.0753002 -0.0291756 --0.00662912 --0.0227047 --0.0514357 -0.0105857 -0.0649116 -0.00573456 --0.102348 --0.0102626 -0.0939441 -0.00858292 -0.0330151 --0.106186 -0.0530798 -0.0519343 -0.054797 -0.0813123 --0.0539278 --0.0310465 -0.0404187 -0.0283309 --0.0119372 -0.00625814 -0.0519167 --0.0394529 --0.0350673 -0.127132 --0.0586656 --0.0618567 -0.0986609 -0.1104 --0.0149252 --0.085304 -0.0193193 -0.0680774 -0.0566755 --0.140569 --0.0738046 -0.0507896 -0.084525 -0.0835686 -0.0532945 --0.0343947 -0.0172155 -0.0801672 --0.0467993 -0.0480784 --0.0368274 --0.00627819 -0.0968517 --0.076615 -0.0224199 --0.080313 --0.010313 --0.0210293 -0.0304598 --0.0554511 -0.0838497 -0.05229 --0.0355155 -0.00238695 -0.0785574 --0.0127963 --0.039976 --0.0981498 --0.0323548 --0.0939307 --0.114126 -0.0449331 --0.0398498 --0.0215144 --0.0894295 -0.0799525 --0.055032 -0.0129041 -0.0827319 -0.0122711 --0.030279 -0.0416483 --0.0125951 --0.0433364 --0.00748745 --0.0557625 --0.076106 --0.0436786 --0.0432776 --0.00094251 --0.00630765 --0.0525933 --0.00294907 -0.0688404 -0.0674558 --0.00920168 -0.0446132 --0.0291048 -0.0103348 -0.0535549 -0.0441549 -0.0336881 -0.0261238 --0.0193751 -0.0580242 --0.043831 -0.0609847 -0.0427052 --0.0246213 --0.00386425 --0.0518978 --0.0177976 -0.0728565 -0.0751503 -0.000893659 --0.0443636 -0.0748449 -0.0783907 --0.0711942 -0.0398908 --0.0565634 --0.156583 --0.0297537 -0.0946827 --0.0448461 --0.00608554 -0.0160107 -0.0181339 --0.0149626 --0.0854603 -0.0189612 -0.0477314 -0.0246536 --0.00982609 -0.0666325 --0.0841386 --0.059733 -0.0611897 -0.011568 -0.0643083 -0.00157933 -0.00725057 --0.0169544 -0.0140665 --0.0278689 --0.0597735 --0.0179628 --0.0263356 --0.0749148 --0.0359753 -0.0558996 --0.0599358 -0.0418883 -0.0695321 --0.0618883 --0.0120003 -0.0292722 --0.0272223 --0.0352842 --0.0291398 --0.0930581 -0.00122922 --0.0144685 --0.00402381 -0.0203788 -0.000973033 --0.0303758 -0.0190026 --0.00619878 --0.012522 -0.0569774 -0.00724854 -0.015569 -0.0776623 -0.0909843 -0.0153728 -0.0104254 --0.0844181 --0.105674 -0.0168512 --0.0307862 -0.0711063 -0.0664531 --0.025706 -0.0319805 -0.00598067 --0.002074 --0.0163885 -0.0175197 --0.081409 --0.00863709 --0.0341693 -0.0470105 --0.0355503 --0.0720002 -0.0510088 -0.0759608 --0.113164 --0.00657116 --0.0545104 --0.0637054 --0.0186657 -0.00360816 -0.0332835 -0.0190548 -0.0369364 --0.0672202 --0.0609985 --0.0513892 -0.0222749 -0.0055351 --0.0161204 --0.0326308 --0.0263627 --0.0435624 --0.0340748 -0.0823965 --0.0060665 --0.0583923 -0.0208953 -0.00572983 -0.0789688 --0.0452203 --0.0545867 --0.105747 --0.0415833 -0.0747245 -0.0320903 --0.142669 -0.0243606 -0.10156 -0.0470683 -0.00737164 --0.0633739 --0.0525451 -0.00489749 --0.0143784 --0.0310132 -0.0451459 -0.0809347 -0.0030358 -0.0467147 -0.0119662 --0.0344091 -0.0554654 --0.135672 --0.0301744 -0.0197253 -0.0376333 -0.0557515 --0.0435087 -0.041239 -0.0453499 --0.0325847 --0.0597966 --0.0562005 -0.0317213 -0.0369477 -0.094837 --0.050679 --0.0347015 --0.04151 -0.0391381 --0.000356925 -0.0731538 -0.0145257 -0.022163 -0.0431757 -0.0189092 -0.0161812 -0.0218336 -0.0564073 --0.0995053 --0.0481836 --0.0913762 -0.00770408 -0.0631314 -0.0219891 --0.060659 -0.0138654 -0.0359569 -0.0913793 --0.0530608 -0.05078 -0.0596475 --0.0127041 --0.109661 --0.0142582 --0.0175278 --0.0408984 -0.0550951 --0.0448464 --0.0563542 --0.00634565 --0.0320743 --0.0116263 -0.00513052 --0.0626331 -0.0617538 --0.0642228 -0.0210734 --0.0460757 -0.0287155 --0.0114667 --0.0210541 -0.0885815 -0.0755317 --0.0537232 -0.0067867 --0.0109925 --0.0827755 --0.0300491 --0.0153935 -0.00319825 -0.0391786 --0.00947907 -0.0821767 --0.0614555 -0.0384997 -0.0175619 -0.0229124 --0.00220414 --0.125512 --0.0244044 --0.0224287 --0.0798537 --0.0205456 --0.0441108 --0.0196745 -0.00163641 -0.0294473 -0.0887739 --0.00812793 -0.070837 -0.0446801 --0.0234635 -0.0683186 --0.0130009 -0.0624431 --0.0184691 --0.123752 -0.0471472 -0.00272983 -0.0217802 -0.02726 -0.00821796 -0.00469563 -0.0849462 -0.06951 --0.00666507 --0.0717451 --0.0539754 -0.080647 --0.0290898 --0.00692858 --0.121484 --0.0564575 -0.00647188 -0.0173612 --0.0134496 --0.0501888 --0.00628283 --0.0705466 -0.0880093 --0.102797 -0.0189854 --0.0223318 --0.0981431 --0.0411612 --0.00147821 -0.0616994 -0.0611117 --0.00382961 --0.0546841 -0.0336336 --0.00292144 -0.0072848 -0.0320635 --0.064391 -0.0884925 -0.0402839 -0.0368241 -0.0742219 -0.077252 --0.0539633 --0.099407 -0.0405549 --0.0417466 -0.0383492 -0.0458219 -0.0474808 --0.0473011 --0.0557818 -0.0335108 -0.0504839 -0.050663 -0.00892507 -0.0400427 -0.00589186 -0.02869 --0.025416 --0.0819309 --0.0668254 -0.0027983 -0.00925534 -0.08082 --0.0194033 --0.00700902 --0.0377408 -0.000625168 --0.0858541 -0.0547959 -0.041952 --0.0887841 --0.0197563 --0.00219675 --0.0584404 --0.0415951 --0.0390612 --0.0257645 --0.00123195 --0.0599881 --0.012023 --0.0902643 -0.000149464 --0.0244682 --0.093555 --0.0780788 --0.0149613 -0.0294102 --0.0243199 -0.00569077 --0.0148224 --0.0956166 --0.0374038 -0.0639719 --0.0473702 -0.0737849 -0.08915 --0.000603803 --0.025824 -0.0286401 -0.0657062 -0.132581 --0.108063 -0.0835421 -0.0213741 --0.0791085 -0.0119276 --0.0991102 --0.0148329 --0.0378192 --0.00603976 --0.0052359 -0.0768897 --0.0290993 -0.045599 -0.0175168 -0.0624525 --0.00746034 -0.0252592 -0.0301254 --0.032675 -0.01351 --0.00302733 -0.0260968 --0.0210867 --0.017534 --0.0727083 -0.0221237 --0.0178073 -0.0180377 --0.0266908 -0.0121021 -0.012019 -0.0487721 -0.0431514 -0.0479694 --0.00266095 --0.0580378 -0.00143707 -0.0522114 -0.03205 --0.00381662 -0.0228737 --0.0790249 -0.0570369 -0.030628 -0.0611435 -0.0169441 -0.0305106 -0.0342426 --0.0563131 -0.0845806 -0.0199601 -0.0628286 -0.0135514 -0.0121773 -0.0431243 -0.0738044 --0.0497263 --0.0743078 -0.184175 -0.0158285 -0.0325467 -0.0147096 --0.0424318 -0.0690406 -0.0247441 -0.0504663 -0.00186113 --0.0380086 -0.0598524 --0.0226909 --0.0248256 -0.0227016 -0.0846115 --0.0363836 -0.0258771 -0.0379592 -0.0187428 -0.0108745 -0.0674002 --0.0819574 -0.0838705 -0.0392401 --0.0951761 --0.0424599 --0.0380448 -0.00837454 --0.00227701 --0.0838471 -0.0101702 --0.0135166 -0.0539148 -0.0252105 --0.00271608 -0.0407764 --0.039294 -0.0436168 --0.020674 -0.0545578 --0.0628552 --0.0112806 --0.0678366 -0.0198651 -0.0184996 --0.0161928 -0.0586226 --0.00971563 -0.125946 --0.0071093 --0.00690455 --0.037119 --0.0166041 -0.000134539 -0.0127079 --0.0642519 --0.0318364 -0.0463882 --0.0581416 --0.0271232 --0.00653832 -0.0191409 --0.0603187 --0.0700336 -0.0615855 --0.0230687 -0.0747409 --0.0172298 --0.00482533 -0.0552604 --0.0391417 -0.056976 -0.00553904 -0.0396798 --0.0406868 -0.0276767 -0.00388533 -0.00179656 -0.0133984 -0.0114055 --0.0107694 -0.0535201 -0.00492688 --0.00187916 --0.0640302 --0.00502289 --0.0679288 --0.0460236 -0.0156773 --0.0107342 -0.0261131 --0.00515281 --0.0994499 -0.0506519 -0.0384685 --0.0943196 -0.0181288 --0.0090935 -0.000324368 --0.114045 -0.00738183 --0.0391246 --0.0886615 --0.0320727 --0.046053 -0.0199259 --0.101895 --0.0377142 -0.051908 --0.0244262 -0.00803694 --0.0225515 --0.04619 -0.010599 -0.0224117 -0.00695991 --0.047803 -0.0952647 --0.0542998 -0.000497226 --0.0142686 --0.0963107 -0.0669601 --0.0513593 -0.0325019 -0.00287735 --0.0184463 --0.048549 --0.0376242 -0.0895734 --0.0385708 --0.0144293 -0.0518931 --0.0712727 --0.0394074 --0.030135 -0.00339256 --0.0101472 -0.0230167 --0.0280907 -0.0430344 --0.0749399 -0.0472254 --0.0378571 --0.0496168 -0.0349681 -0.0261393 -0.00360988 -0.0418421 -0.0544652 --0.00409113 --0.0285264 --0.0123695 -0.0411195 -0.023672 --0.0263842 -0.0274207 --0.040913 -0.0732899 -0.0374967 --0.0420173 -0.0611344 -0.0139148 -0.0222933 -0.0714397 --0.0494023 -0.048916 -0.00609132 -0.000487356 -0.0162859 -0.0729034 --0.0560753 -0.0243199 -0.0147701 -0.140607 --0.0311461 -0.0735214 -0.0327002 --0.0573652 -0.015435 -0.114928 -0.0183487 -0.142929 -0.0184312 -0.0410191 -0.0285351 --0.0494382 -0.0384786 --0.0143581 -0.0224937 -0.0308366 -0.00400883 -0.0886174 -0.0197565 --0.0282906 -0.015772 --0.0447622 -0.0104897 --0.012773 -0.0594869 --0.0533959 -0.0402357 --0.0532065 -0.0351455 -0.0149843 -0.0791387 --0.0931441 -0.0308128 --0.0790077 -0.0254512 -0.019327 --0.0050482 --0.0242368 -0.0514011 --0.0463109 -0.0246124 -0.0128786 -0.0456518 -0.0453854 --0.0984785 --0.00892461 --0.104728 -0.0323504 -0.0944744 -0.0721657 --0.0922931 --0.0290591 -0.00504282 -0.0411837 --0.0250137 -0.0494842 -0.0257015 -0.0574594 --0.0430565 --0.0542927 --0.0131349 -0.0491597 --0.00144743 --0.0403575 -0.0230352 -0.0379792 -0.0330936 --0.046191 --0.0476573 --0.00265231 -0.00315147 -0.00701191 --0.0328021 --0.0261943 --0.0407944 --0.0556689 -0.015421 -0.00448626 --0.0436047 -0.00588424 -0.0788128 -0.0311616 --0.00504325 --0.0331692 --0.00761659 -0.101299 -0.0182478 --0.0676382 --0.00851833 -0.0322357 -0.0169078 --0.0832067 -0.0347679 -0.0449063 -0.0510619 --0.0303946 -0.0137441 -0.0364514 --0.0507761 -0.0714716 -0.0611457 -0.0788184 -0.103095 -0.0163016 --0.0289268 --0.0194174 -0.00502636 -0.00727396 -0.0119958 --0.0104643 --0.0253604 -0.0547992 -0.0362375 -0.0154075 --0.0332068 --0.042165 -0.0788971 -0.0943649 --0.0277215 --0.0935402 -0.00648076 --0.0578582 -0.0473988 --0.0380923 -0.0433651 --0.0710025 --0.00480609 --0.128032 -0.0930054 --0.040387 --0.0322304 --0.0478397 --0.0167482 -0.0104573 --0.0217148 -0.00177113 --0.0901882 --0.0596863 --0.0765231 --0.0664403 --0.0375943 -0.00603957 --0.059729 -0.104419 --0.0148905 --0.0508194 -0.10231 -0.0174777 --0.0738921 --0.00732061 --0.00137855 -0.00279336 --0.0644785 --0.0603126 -0.0152302 -0.106093 -0.0518484 -0.070694 --0.0276805 -0.0638176 -0.026874 -0.000609819 -0.0371704 --0.0302046 --0.02474 -0.00600611 --0.0781406 -0.0128871 -0.0150041 --0.12279 -0.0513638 -0.0385052 --0.0463402 -0.0657989 -0.0449082 -0.0332998 --0.0612334 --0.052659 -0.0153587 --0.00741566 -0.014741 -0.0589478 --0.0611667 --0.0264482 --0.0597638 -0.0125206 --0.0445522 --0.0587796 --0.0394788 --0.0512498 -0.0211284 --0.0146718 --0.0213042 -0.0294979 --0.0471086 --0.0679164 --0.103641 -0.0426505 -0.0214795 -0.157901 --0.0833877 --0.0159241 --0.0079659 -0.00525288 --0.0627377 --0.00493322 --0.0057072 -0.016936 --0.0575703 --0.00633915 --0.0505639 --0.0556713 -0.0183388 --0.0196948 -0.0418141 --0.0427047 -0.0698739 --0.07588 --0.039254 -0.0429278 --0.0270063 -0.000446173 -0.0256775 --0.0588794 -0.0978704 --0.0242155 -0.0408014 --0.122522 --0.0902778 -0.0146965 --0.0179803 -0.123199 -0.0487707 --0.0627771 --0.0266781 -0.124228 -0.000391005 -0.0542947 -0.0912738 -0.0319172 --0.0281309 --0.0149474 -0.00166079 --0.0541473 -0.0177436 -0.0161582 -0.0240918 -0.0217243 -0.108545 -0.0720224 --0.0566592 --0.0344174 --0.00978573 -0.0170583 --0.033749 -0.137236 -0.043924 --0.0104807 --0.0080781 --0.0106198 --0.0359479 -0.016349 --0.0184776 --0.0356503 -0.00859756 --0.00881417 -0.120872 --0.0207267 --0.0323737 --0.00437722 --0.0327424 --0.0488079 -0.00124789 --0.0212689 --0.0352726 --0.0479038 -0.0254259 --0.0540865 -0.00155014 --0.0437914 -0.0416407 -0.0668529 --0.017809 --0.000413856 -0.00424577 --0.0258996 --0.0921276 --0.00740052 --0.0260243 --0.0394941 --0.0276075 --0.0270609 --0.121898 -0.00158615 --0.083763 -0.0680687 --0.0156208 --0.0185626 -0.0512271 --0.0551265 --0.0109596 -0.0621894 -0.0754464 --0.097163 --0.0770236 --0.0177204 --0.0293058 --0.0687996 -0.00585132 --0.0226864 -0.0285352 --0.0895003 -0.0964471 -0.0987724 -0.0708409 --0.00713917 --0.0649883 -0.0482301 --0.00819667 -0.0769713 -0.0279617 --0.0718507 -0.0789522 --0.0372845 -0.0621837 -0.0156665 --0.00076064 -0.0471326 -0.0554466 -0.0108667 --0.0312687 --0.0420929 --0.04152 --0.0232798 -0.0364839 -0.00590516 -0.0350594 --0.0173089 --0.0151985 -0.0842357 --0.00760541 --0.0166856 -0.0517002 -0.00764788 --0.0355654 --0.0243071 -0.00457437 --0.0064089 -0.0268509 -0.019233 --0.0102987 -0.0393226 --0.00118752 -0.0297829 --0.017745 --0.0159558 -0.0634753 -0.0260732 --0.00758843 --0.0321432 --0.028516 --0.0337643 -0.0174687 --0.0324492 --0.081809 --0.046682 --0.0044033 -0.0461141 -0.0706549 -0.046481 --0.0274441 --0.0678517 -0.0770497 -0.0387405 -0.0640104 -0.0438433 --0.0254089 --0.048464 --0.0407786 -0.0510741 --0.00904822 -0.0804585 -0.0100148 -0.073586 -0.000425817 -0.0533301 -0.0105368 --0.0606765 --0.0485137 --0.0375726 -0.0191541 --0.00523586 --0.0745221 --0.0512873 -0.0251348 -0.0099407 -0.00809605 -0.0929766 --0.0945395 --0.0289873 --0.0886935 --0.0760394 --0.0766469 -0.0607405 -0.0190056 --0.0179396 --0.0303713 --0.0127898 --0.0637567 -0.0141886 -0.0208066 -0.0294274 -0.030524 --0.00911771 --0.0624327 --0.0174722 -0.000106255 --0.00955543 -0.0690086 -0.0468601 --0.0428191 -0.0505406 -0.0141782 --0.104648 -0.0294837 --0.0645217 -0.00104507 --0.0450253 --0.00859243 --0.0319431 --0.0417044 --0.08528 -0.0114575 --0.0138976 --0.0569263 -0.0933437 -0.0144146 -0.0406254 -0.00471879 -0.0265275 --0.0380864 --0.0188215 --0.030121 --0.053123 -0.0298568 --0.0185381 -0.0265363 --0.0449471 -0.00807832 -0.0320106 -0.0382157 -0.0757096 -0.0133792 -0.0678706 -0.0178216 -0.058534 --0.106913 -0.00809929 --0.0145227 -0.0734445 -0.0529182 -0.0639997 -0.0321647 -0.00559806 -0.0438652 --0.0104355 --0.0612843 --0.00259771 -0.0712618 --0.0241316 -0.0940087 --0.108426 --0.0259257 --0.0539398 --0.037771 --0.0946097 --0.0460757 --0.0496888 -0.0703636 -0.0800773 -0.0183563 --0.0174591 --0.0482528 --0.0179578 --0.0219818 -0.0621241 -0.0129373 -0.00728571 -0.0421826 -0.0124478 -0.0205164 -0.00638471 --0.00418299 -0.00834796 --0.0357352 --0.0838839 --0.0392624 --0.021354 --0.0745139 -0.0219421 --0.0227528 --0.0718867 -0.0148676 -0.078486 --0.0144769 -0.0934022 --0.0200748 --0.00167071 --0.0346749 --0.105132 -0.0203861 -0.112508 --0.0122729 -0.00273507 --0.0244192 --0.0101994 --0.00193319 --0.0768261 -0.0410348 --0.057828 --0.0310251 --0.0365594 -0.0211729 -0.0815946 -0.000844852 -0.0828896 -0.0380027 --0.0958494 --0.0167018 -0.0469372 --0.00671734 --0.0102113 --0.0307752 --0.0135819 -0.0256968 -0.0217466 -0.00694707 --0.0167124 --0.0441364 -0.103544 --0.025317 -0.0151579 -0.0274264 --0.0220623 --0.105156 --0.00358684 -0.0827265 -0.0833505 -0.00522754 --0.0334627 --0.0128455 --0.0451616 -0.0041947 -0.0251392 -0.0219119 --0.0264642 --0.0150226 -0.0285351 -0.0353646 -0.00090434 --0.0586964 -0.0629888 --0.0542439 --0.171387 --0.0653998 -0.0113178 --0.0327287 --0.0374687 -0.044076 -0.0133928 --0.0481384 -0.0350624 -0.0627569 -0.045447 --0.0336804 -0.0533249 -0.00772771 -0.0253311 --0.036519 -0.0201705 --0.000604528 -0.0502642 -0.0151684 --0.00918863 -0.077007 -0.0785861 -0.0040572 -0.0661493 --0.0251872 -0.0263953 --0.0827608 -0.0239992 --0.0577145 -0.00746841 --0.0458866 --0.0141335 --0.0654844 --0.01797 -0.0552867 -0.0794845 --0.000479733 -0.0106784 --0.0408724 --0.0079315 --0.0127328 --0.00465723 --0.0158455 -0.031534 -0.0611634 --0.0178725 --0.167734 --0.0549504 --0.0540672 --0.0450878 -0.0876142 --0.0964878 -0.0238702 --0.0587205 -0.0595868 --0.022939 -0.0278249 --0.00146831 -0.00121516 --0.00956441 -0.0209661 --0.102757 --0.0486336 --0.0611685 -0.000776681 -0.00940841 -0.0306466 --0.0313048 -0.0451885 --0.048132 -0.0463443 --0.0690799 --0.0248572 --0.139333 --0.0801721 --0.0433792 --0.0874528 --0.0200485 -0.0213633 --0.0490859 -0.0325909 --0.0116646 --0.0403413 -0.104391 -0.0834627 --0.0197673 --0.0265231 -0.00111504 -0.0672018 -0.0382013 -0.0557874 --0.0148872 --0.0363844 -0.0217945 -0.162087 -0.0205581 --0.085583 --0.0605884 -0.0338298 --0.0212499 --0.0651215 -0.0352913 --0.126748 --0.048319 --0.0648466 -0.0836888 --0.0425984 -0.0526058 --0.0482566 -0.0296188 --0.0459693 --0.0466873 -0.127987 -0.0154121 -0.0369865 -0.0140081 -0.0637029 -0.0672435 --0.0321637 -0.00297947 -0.0170982 -0.0309398 --0.0423246 --0.00560198 -0.0686221 --0.00926975 -0.0343492 -0.0178784 -0.020364 -0.0277355 -0.0435096 -0.0138538 -0.0143785 -0.00394901 --0.0598183 --0.00573476 --0.144531 -0.0664443 -0.027074 -0.0977953 -0.0132007 -0.028572 --0.00927673 --0.0435706 -0.0687721 -0.044691 -0.0639368 --0.0548051 -0.120078 --0.0235736 --0.0559398 --0.0485589 -0.0189224 -0.0777812 --0.0687353 --0.0212482 -0.0376618 --0.0283994 -0.0171487 -0.071395 -0.0061887 --0.0682094 -0.0310367 --0.0464525 -0.00969457 --0.109901 -0.0094729 --0.0303297 --0.0421921 --0.0259976 --0.0638612 -0.0838554 -0.0174155 --0.040592 --0.0716959 -0.0686031 --0.00116695 -0.0470387 -0.0202748 -0.00485203 --0.0272853 --0.0956003 --0.0144578 -0.0723206 -0.0472763 -0.0986072 -0.0308374 --0.121166 -0.0161426 --0.0147108 -0.119844 -0.0248024 --0.0420139 --0.0284242 --0.0121424 -0.00582388 --0.0737547 -0.0576324 --0.0615698 --0.12562 -0.00358949 -0.0956725 -0.0340674 --0.118906 --0.0225162 --0.0110279 -0.000382818 -0.0129141 --0.000582155 --0.00305931 -0.0141601 -0.0328052 -0.0594752 --0.0077605 -0.00396717 -0.0470453 --0.0709573 -0.0177663 --0.0150564 -0.00648894 --0.0317455 -0.0378616 -0.0227429 --0.0295717 -0.0333972 -0.0185816 --0.0202978 --0.0470618 --0.0203027 --0.0828805 --0.0620294 -0.101802 --0.0411178 -0.0555308 -0.0479231 -0.0090553 -0.0372263 -0.0281303 --0.0341008 --0.0581038 -0.0379021 --0.0932434 -0.110185 --0.027088 --0.00177348 -0.0594735 --0.0249748 -0.0256368 --0.057628 -0.0357919 -0.0171838 -0.0244232 --0.00579566 -0.0556675 -0.076126 -0.0711436 -0.0373429 -0.0271094 --0.00115853 -0.0239819 --0.0576963 -0.0518045 -0.00110633 --0.0285254 --0.0239091 -0.0659618 -0.0142075 --0.0168477 -0.0365961 --0.0438154 -0.00228628 -0.0112511 -0.0334958 -0.0647734 -0.00930158 --0.0169991 -0.0422241 -0.0771889 -0.00211154 --0.018338 -0.00357553 -0.0174829 -0.034575 --9.36789e-05 --0.117274 -0.0425212 -0.000431568 -0.0483127 --0.137141 --0.0185614 -0.00501989 -0.0227399 -0.0767649 --0.0110663 --0.0423716 --0.0525143 -0.00768259 -0.00556443 -0.0618988 --0.117205 -0.0225742 -0.0196916 --0.0856766 -0.025001 -0.101906 --0.0268179 -0.00547413 --0.0638634 -0.0111525 --0.0168448 --0.0329124 -0.029022 -0.0339672 --0.0272899 --0.0733199 --0.00791089 -0.0577421 -0.046943 --0.0734761 -0.0318706 --0.00985316 -0.0138435 --0.0607231 --0.0513161 -0.091465 -0.00696135 -0.0221692 --0.00260852 --0.057075 --0.0184818 -0.120321 -0.0702229 -0.0363383 --0.0370495 --0.0258981 --0.0149691 --0.032255 -0.0338551 -0.0165551 --0.0272553 -0.0596834 --0.104415 --0.0784099 --0.0371401 --0.0135065 -0.110393 --0.004327 --0.0198664 -0.0213798 -0.0789571 --0.0637703 --0.0395169 --0.0986862 --0.0102955 --0.0428852 -0.0173886 --0.0282809 --0.119017 --0.0432167 -0.0123272 -0.00158222 -0.00238416 --0.0530859 --0.0209039 --0.0562021 --0.013652 --0.0670929 -0.0352245 --0.0368814 --0.0113863 -0.00730593 -0.0101316 -0.0329565 -0.0608104 --0.0813324 -0.0591467 --0.0263471 --0.00334995 --0.0729506 --0.00740829 -0.0452804 -0.0233343 -0.0528928 -0.00557031 -0.0825534 -0.0247429 -0.0915226 --0.0142532 --0.0412155 --0.020434 -0.00278325 -0.018747 --0.0244785 -0.00182881 -0.0374098 -0.0180507 --0.10014 -0.0110452 --0.025663 -0.0515534 --0.0351276 --0.0475212 --0.0394564 -0.0269632 --0.0267038 --0.0431722 --0.0416841 --0.0558888 --0.0157801 -0.0702944 --0.0745955 --0.0839695 --0.022743 -0.0321564 --0.0827466 -0.0706129 --0.0110544 --0.0730211 --0.0454519 --0.0157273 -0.0520761 --0.0380792 --0.0288439 --0.0179076 --0.0104152 -0.0657835 --0.0138919 -0.143628 -0.000373366 -0.143042 -0.0462344 --0.0396007 -0.0180945 -0.0157712 -0.0185186 --0.00772193 -0.0398359 -0.0334134 -0.0324467 --0.0631261 --0.0428774 --0.0368419 -0.0175932 --0.0247601 --0.0140777 -0.0361603 --0.0116564 --0.0787489 --0.0190552 --0.0350415 -0.00548042 --0.000782652 -0.000540086 --0.085166 -0.040767 -0.0536341 --0.0664834 --0.0495977 -0.0215608 -0.00857309 --0.00316641 -0.0201439 -0.0311286 -0.0132151 --0.0485543 --0.0432897 -0.0317323 --0.104895 -0.0453038 -0.0600678 --0.07498 -0.0278957 -0.0484277 -0.0290103 --0.0048374 -0.0075221 --0.0419572 --0.0751536 --0.0242413 -0.00234329 --0.0749382 -0.105654 --0.0766182 -0.0027095 --0.0174157 -0.0251285 -0.087749 -0.140737 --0.0681732 -0.0564156 --0.0430407 --0.0533578 --0.0380217 --0.0114358 --0.01045 --0.0200168 --0.0854149 -0.0710902 -0.0241029 --0.0490286 -0.0171159 --0.0162035 --0.00642627 -0.0764422 -0.0614592 --0.025574 -0.0898963 --0.0591963 -0.00824429 --0.000881636 --0.0424748 --0.134807 --0.0571575 -0.0196075 -0.0937649 --0.0625303 --0.0385927 --0.033684 --0.0427684 --0.0362123 --0.0532337 -0.0417402 --0.108176 -0.0229465 -0.0450542 --0.0406847 -0.00790156 --0.0223349 -0.100244 --0.0473619 --0.0262041 -0.0299223 --0.0909361 --0.011726 -0.0845089 --0.0372666 -0.0915276 -0.0933379 -0.0675233 -0.0724967 -0.0479583 --0.0183777 -0.0887823 -0.072509 -0.0640459 --0.00998173 --0.0887026 -0.0482041 -0.0745499 --0.0279655 --0.0161966 -0.00880074 --0.105503 --0.0175754 -0.0936481 -0.00951014 --0.0436539 --0.0155345 --0.0229398 -0.0482905 --0.017045 -0.0135921 -0.0469871 -0.011063 --0.0180056 --0.0139279 --0.0496272 --0.0224829 --0.114997 --0.0531292 --0.00422453 --0.016883 --0.0789223 --0.0257033 --0.0243493 -0.00137779 --0.0275906 -0.0363043 -0.00457302 --0.0902033 -0.031814 -0.0335374 --0.0679443 -0.00326764 -0.022543 --0.0215044 -0.019529 --0.0216493 -0.0112849 -0.0470235 --0.00486789 -0.0851241 -0.0816289 --0.0565635 --0.0110165 -0.0551749 -0.0342554 -0.0458256 -0.0336966 --0.0245348 --0.0704685 -0.00310566 -0.0241808 -0.0145454 -0.0112956 -0.0409163 -0.0433614 --0.0691877 --0.0465971 --0.032422 --0.0289111 -0.0931153 -0.0112377 --0.0363306 --0.0178662 -0.0255726 -0.0168789 --0.000326679 --0.0605066 -0.0705348 --0.0079035 --0.027471 -0.0312322 --0.0582192 -0.0326596 --0.0424612 -0.0422884 -0.0674636 -0.00573302 --0.0311719 --0.0717721 -0.0454559 -0.0455688 -0.00273017 -0.0354381 -0.0312298 -0.0584992 --0.0156887 --0.0222092 -0.00247968 -0.0678563 -0.0170547 -0.0218532 -0.000821994 --0.100268 --0.048481 --0.0196388 --0.0320665 --0.00755963 --0.11759 --0.0524539 -0.00417294 -0.0324663 -0.00844934 -0.0139239 --0.0152128 -0.0149575 --0.0149936 -0.0763325 -0.122859 -0.017868 -0.0492609 --0.0251489 -0.00914065 -0.0122517 --0.0200004 --0.0253418 -0.0701883 -0.0723338 -0.0320776 --0.0149367 --0.0454607 -0.0316554 --0.0221858 --0.0312913 --0.0127791 -0.0247599 -0.0631064 -0.0408754 --0.0367976 --0.0850314 -0.0432915 -0.00684787 --0.0778804 -0.0346272 --0.0462319 --0.0845663 -0.0184302 --0.0279603 --0.0484827 -0.00360815 -0.0185499 -0.0289646 --0.00532084 --0.0246782 -0.0522747 --0.0146808 -0.0135648 --0.00460767 -0.0346787 --0.0250697 --0.0580566 -0.00874964 -0.0477861 -0.0308676 -0.0760832 -0.00958378 -0.00249615 -0.0978582 -0.0538437 -0.0273468 -0.0336831 -0.00320864 -0.0289031 -0.00429327 --0.0938034 -0.065073 --0.0546371 -0.00907071 --0.0591825 -0.0227575 --0.0678009 -0.0511901 --0.128947 --0.0238895 -0.0283107 -0.0814358 --0.00503141 -0.059439 -0.0153761 --0.0564238 --0.0123218 --0.0670541 -0.0230168 --0.0151527 --0.00277219 --0.00481068 --0.0535599 -0.041909 -0.0507006 -0.00728203 --0.0984342 -0.0419845 --0.0682685 -0.00221438 -0.0125424 --0.0628209 --0.0701853 -0.0534901 --0.0470832 --0.00659491 -0.00023637 --0.00840985 --0.0589209 -0.0189679 -0.00902348 --0.0583057 --0.0520801 -0.0248498 -0.00379785 -0.0135947 -0.0680535 --0.0633801 -0.0624246 --0.0147019 -0.0674465 --0.0208884 -0.0336914 -0.037769 -0.0941023 --0.0463422 --0.0136529 -0.0201561 -0.018448 --0.0127151 -0.0347162 -0.0246543 -0.00517575 --0.0213454 --0.0102468 --0.0374489 --0.0233408 -0.0898534 --0.050377 -0.0312952 -0.0464912 -0.0179557 -0.00653924 --0.00245338 --0.0340727 -0.00376734 --0.00382978 --0.0192755 --0.0084511 -0.0407555 -0.0432699 -0.00350552 --0.0214035 --0.0203895 -0.0422232 --0.104547 -0.0754421 -0.0936794 --0.090085 -0.0689558 -0.0406922 -0.0673408 -0.0429861 -0.0204156 --0.0141274 --0.0424288 --0.0343571 --0.0633943 -0.0401294 --0.0112262 --0.0534719 --0.0747305 --0.0324461 --0.0196102 --0.0553702 --0.0577213 --0.111729 -0.0309672 -0.0152202 -0.0745603 --0.036785 --0.0484286 --0.00920156 -0.0383577 -0.00869026 -0.0182775 --0.0417025 --0.124472 --0.0501751 -0.0567316 --0.011513 -0.0171615 -0.0179324 --0.0348306 --0.0124905 --0.086559 -0.0217495 -0.0493095 -0.00830442 --0.045922 -0.0153682 --0.00129321 --0.0332875 --0.0363048 --0.0558773 --0.0900888 -0.00321152 --0.0137725 -0.00495104 --0.0046236 -0.0739008 --0.0519298 --0.0097626 --0.0197158 -0.0544134 -0.0862394 --0.00389597 -0.0507546 --0.0466406 -0.0236996 -0.0047766 -0.00343592 -0.0156216 -0.084039 -0.0439783 --0.02041 --0.0295064 -0.0410236 -0.0113589 -0.0478957 -0.0913857 --0.0339605 -0.0470526 --0.000423792 -0.00869223 -0.0121464 --0.0287003 --0.0137164 --0.00905954 --0.0127233 -0.0462038 --0.0810185 -0.0145316 -0.0343714 --0.0313079 -0.00906772 -0.0126716 --0.0596548 --0.00334275 -0.0115736 -0.0167236 -0.0387204 -0.0316981 --0.099661 -0.00301778 --0.0335279 -0.01015 -0.014193 --0.0369763 --0.0238239 -0.0434181 -0.00558565 --0.00895163 -0.0736813 --0.0364899 --0.0661563 --0.0518889 -0.014767 --0.000720323 -0.00538087 -0.0101691 --0.0273004 --0.036494 -0.0375186 -0.10438 -0.0840443 -0.175772 -0.0496261 --0.0137722 --0.03726 -0.058409 --0.0177928 -0.130939 -0.0419814 -0.0118541 -0.0405023 -0.0069949 --0.00229309 --0.000637433 --0.0651862 --0.00742602 -0.0706082 -0.0943952 -0.0578138 -0.00135365 -0.0431297 --0.00562083 --0.0799134 -0.0379873 --0.0492689 --0.043396 -0.0272073 --0.0881026 -0.0226421 --0.0442427 -0.0734953 -0.0355906 -0.00421196 -0.020935 --0.0360978 --0.000300325 -0.0544051 --0.0081778 --0.0201334 -0.0257681 --0.0928517 --0.0134774 --0.0792497 -0.0395722 -0.0127067 --0.0792747 -0.0525122 --0.0449985 -0.105922 -0.0496093 --0.0162649 -0.0210988 --0.0236028 -0.0349784 -0.0453085 --0.0782864 --0.0426301 --0.0296197 -0.015588 -0.0363584 -0.0101318 -0.0131565 --0.000714611 --0.0669322 -0.0494292 --0.0690299 -0.0120942 --0.169102 --0.102453 --0.00808941 --0.0249306 -0.0711994 --0.00801278 --0.113462 --0.03452 --0.0379862 -0.0346418 --0.0326274 --0.0318245 -0.0629458 --0.0299419 --0.0945178 --0.035916 -0.0432761 -0.0520791 --0.118603 -0.0481986 -0.0208286 -0.0650117 -0.0654639 --0.10547 -0.00157123 -0.00902648 -0.0279073 --0.021436 -0.0220711 --0.0121565 -0.00114425 --0.0906539 --0.0303065 -0.00291775 -0.0327557 -0.0426759 --0.0437421 --0.0407939 --0.0853492 --0.0523852 --0.00788149 -0.060255 --0.0462348 -0.0863675 -0.000870055 -0.0910237 --0.064933 --0.0541765 -0.0727887 -0.0247009 -0.0104374 --0.0569585 -0.0155254 -0.110557 -0.014956 --0.0393433 --0.0656242 -0.036428 -0.00751137 -0.0120771 --0.0145982 -0.0177683 -0.0678598 -0.0263345 --0.0240344 -0.00290488 --0.0136762 --0.040293 --0.00553805 --0.000866823 --0.0214296 --0.0243955 -0.055878 -0.0340117 -0.0658077 -0.0044402 -0.00131756 --0.0193539 --0.0589409 -0.0263047 --0.091305 --0.00173061 --0.00571876 -0.00117071 --0.0269888 --0.0105562 --0.0543134 --0.0516835 --0.00538425 -0.00876884 -0.0122908 --0.0647135 --0.0505246 -0.00319286 -0.0211211 --0.00417326 -0.0378996 --0.0357597 -0.114015 --0.0231643 -0.00699567 --0.0125456 --0.0153154 --0.0115619 --0.0218297 --0.0432321 --0.0543669 -0.0998028 -0.00740129 -0.0307638 -0.130816 --0.0187798 --0.00482959 --0.0596858 --0.0171355 -0.0333118 -0.0130975 --0.0269463 -0.0748414 --0.00978104 -0.148986 --0.0218958 -0.0261123 --0.036401 --0.0767756 --0.0359172 -0.0148751 --0.0195874 --0.0373 --0.0466842 --0.0358453 -0.0108522 -0.0276595 --0.052 -0.0366351 --0.0368036 --0.0855724 --0.0386217 -0.00463146 --0.00580989 -0.0017261 --0.10029 --0.000973028 --0.063517 -0.0134186 --0.0324224 --0.0415541 --0.0319364 -0.083254 --0.0147326 --0.0444939 -0.0123339 -0.0430726 --0.0639489 --0.0810514 -0.0582409 --0.0370266 --0.00865001 --0.0350405 --0.0156796 --0.050686 -0.0527474 -0.0573857 -0.0719158 -0.0671983 --0.0293066 --0.0533572 --0.0324594 -0.0658802 --0.0298232 -0.00306603 --0.105545 -0.0224321 --0.0201203 -0.00864032 --0.027457 -0.0611836 --0.0309309 -0.0373735 --0.0643039 -0.0938483 -0.0268296 --0.0371783 -0.0258461 -0.0572631 --0.0605321 --0.043657 -0.0417922 --0.00417276 --0.0304378 -0.0263143 --0.0654039 -0.0445914 --0.00662277 -0.003077 -0.091659 -0.0150502 --0.0498552 -0.0496241 --0.0255468 -0.0333452 --0.0344545 --0.050436 --0.0270702 --0.0599429 -0.0272602 -0.0678304 -0.028922 -0.062916 --0.050754 --0.0445821 -0.0156259 -0.0214413 --0.0925311 --0.0476343 -0.00761349 --0.0801279 -0.00912835 -0.0106814 -0.0457293 --0.0314521 --0.00731799 --0.0525532 -0.0478803 -0.0350305 -0.0959391 --0.0334438 -0.0850776 -0.0411499 --0.0190749 -0.0390484 -0.0439953 -0.118471 -0.0356146 -0.0158791 --0.113833 --0.0889401 --0.0414098 --0.0168969 --0.00887183 -0.0600711 -0.0501548 -0.005787 --0.0315325 -0.0302447 -0.0295652 -0.051384 -0.00159866 -0.0700827 --0.0041604 -0.011771 --0.0613144 --0.053946 -0.0187756 -0.0107439 -0.00862268 -0.0322706 --0.113371 -0.0276562 --0.0281436 -0.0602572 --0.00450723 --0.00138082 -0.0606992 --0.0808694 --0.0160036 -0.0190979 --0.0711243 --0.0450747 --0.0219946 --0.0328911 -0.0876269 -0.0200238 --0.00666549 -0.0422919 --0.0188743 --0.0388667 --0.0081791 -0.05514 --0.0309698 -0.021326 -0.0899982 -0.00776426 --0.0536573 -0.0708423 -0.0159516 --0.0397449 --0.0283647 --0.0265228 --0.0165747 -0.0278521 -0.0634655 --0.00199729 --0.125105 --0.0424799 -0.010548 -0.0120304 --0.0305204 -0.00803607 -0.0434759 --0.00392699 --4.0622e-05 -0.0147827 -0.00740225 -0.0408778 --0.00127465 --0.0447424 -0.0613474 -0.0426605 -0.0264003 --0.00573427 --0.026289 -0.0137667 --0.0218867 -0.00114979 --0.00298767 -0.0451198 -0.0572156 --0.0364842 -0.0844074 --0.0397053 --0.0467845 --0.000169324 --0.0183272 -0.00488398 --0.0107465 --0.0172651 --0.00060605 -0.0666128 --0.0776939 -0.0296517 -0.0538378 -0.00259224 -0.0915178 -0.0487508 -0.0116248 -0.0536911 -0.0175439 -0.0148095 --0.0089821 -0.0828857 --0.0301438 -0.0661483 --0.105508 --0.046243 -0.00536856 -0.0762428 --0.00866268 -0.0129991 -0.0540973 --0.0564073 --0.0444993 -0.0344097 --0.0712551 --0.0823058 --0.00857102 --0.0373216 -0.0323425 -0.0121922 -0.0339592 --0.0144476 -0.00591874 --0.0072289 --0.0563861 --0.0694874 -0.0277737 -0.00642767 --0.0845059 --0.0810831 -0.0941359 --0.0306721 --0.055971 --0.0157233 --0.0413727 --0.0618497 --0.0569057 --0.0238509 -0.00152931 --0.0164343 -0.0198291 --0.0446474 -0.0268991 --0.0521837 -0.0559532 -0.0222459 --0.0839401 -0.0622489 -0.0285282 --0.0200876 -0.00630804 --0.0623627 -0.0889681 --0.0113801 -0.00064958 --0.0875927 -0.0816105 -0.00373262 --0.0303056 --0.039381 --0.0418897 --0.0673131 --0.0839465 -0.045581 -0.0531606 --0.042752 -0.0130165 -0.0891537 -0.024346 -0.00716836 -0.0232679 -0.127261 -0.0136617 --0.00673623 --0.00573516 -0.0624026 -0.00843427 -0.0107735 --0.101249 -0.0492703 --0.0735175 --0.0423429 -0.0382698 --0.0344004 -0.00562556 -0.0848249 -0.0725694 -0.0499629 -0.0880358 -0.111942 -0.0613532 -0.00271857 -0.00784661 -0.0395828 -0.0360238 --0.00240891 -0.000424797 --0.0261262 --0.0444008 -0.0408784 --0.0295134 -0.0209616 -0.0939106 --0.00132032 -0.105657 --0.0415476 -0.0702506 --0.063104 --0.0722355 -0.0218304 --0.000762264 -0.0633528 --0.0642419 --0.0276425 --0.0151915 --0.0321788 --0.0820004 --0.0646344 --0.0809618 -0.0200075 -0.0619275 -0.0259572 -0.0253983 -0.0131308 -0.0271587 --0.0108769 -0.0371916 -0.00285787 --0.111092 -0.0187952 --0.0580207 --0.0177214 -0.055294 -0.0730277 --0.0590531 -0.0252229 -0.00415747 --0.0755838 -0.0504165 -0.0744915 -0.0379697 -0.0929265 -0.132044 -0.00806577 -0.0455969 --0.0485449 --0.0130524 --0.0141211 --0.0422821 -0.0731911 -0.108323 -0.0037353 -0.0309277 --0.0388621 -0.0305666 -0.0447679 -0.0737414 --0.0145003 -0.0423175 -0.0368601 -0.015065 -0.0982881 -0.114457 -0.0520299 --0.0704207 --0.0257318 -0.0343896 -0.0259621 -0.0496086 --0.00715169 --0.0148318 --0.00933817 --0.167801 --0.0237314 --0.0372288 -0.0101334 --0.0953421 -0.0333779 --0.0570299 --0.056786 --0.00625367 -0.0276289 --0.0871057 --0.0749762 -0.0363852 --0.0477355 --0.0192435 --0.0406638 -0.0565189 --0.0135992 --0.0667227 -0.0619113 --0.0364149 --0.002508 --0.0242399 -0.0291589 --0.0349074 -0.105125 --0.0179881 -0.03884 --0.0485278 --0.0265393 --0.0327338 -0.00287825 -0.0654839 -0.0017899 -0.0600423 -0.0514174 -0.0904556 --0.0474257 --0.0361486 --0.00770522 --0.074642 --0.0297032 -0.00301394 --0.0469304 -0.0641516 -0.0682111 -0.0179761 --0.110181 -0.0246182 -0.0171227 --0.0919431 -0.0325592 --0.0667393 -0.00739846 --0.0852669 -0.0247862 --0.0325039 --0.0304874 -0.064072 --0.0447785 --0.0386315 --0.0276617 -0.144219 --0.0119837 -0.113429 -0.0222604 --0.0240135 --0.0660116 -0.0899884 -0.0193315 --0.0674843 --0.0315884 --0.0514486 -0.092794 --0.0140066 -0.0123235 -0.0121497 -0.0200222 -0.0525625 -0.00926793 --0.0442093 -0.010879 -0.0475718 -0.048214 -0.0535606 -0.0155797 -0.0397843 --0.0300834 --0.024092 --0.0284369 -0.0401809 --0.0225305 --0.00736444 --0.0533576 --0.0239264 -0.0575484 -0.0131793 -0.0343689 --0.0203502 --0.106549 --0.0193766 --0.0582109 -0.0379741 -0.0274684 --0.00149725 -0.0133982 --0.0213392 -0.039549 -0.0439038 -0.041103 -0.0333329 -0.00869737 --0.0124458 --0.0472425 --0.086939 -0.025587 --0.0223374 -0.0343659 --0.0108434 --0.0351701 --0.0404183 --0.0302626 --0.0362226 -0.0420773 --0.0382839 -0.0895016 -0.0639947 --0.0257995 -0.0190017 -0.0788989 --0.0436228 --0.0151646 -0.0315399 -0.0071641 --0.0902314 -0.0245121 --0.0319247 -0.0389555 --0.0218507 -0.0869499 -0.107944 -0.0902354 --0.0485519 -0.0603787 -0.00223181 -0.0134973 --0.093479 -0.0369319 -0.0600853 --0.0237768 --0.0818702 --0.0501343 -0.021932 --0.0133801 --0.0454925 --0.0245056 -0.00684949 --0.0526981 -0.0393703 --0.0412347 -0.0576554 --0.0181155 --0.0555646 --0.00983314 -0.0624374 --0.0539664 -0.0564419 --0.0334171 -0.0808673 --0.0175571 -0.0484868 --0.0640796 --0.0394858 --0.0711159 -0.0464776 --0.0063196 --0.017029 -0.0175311 -0.0330337 -0.00739099 --0.0223594 -0.0142755 -0.00814078 -0.0178593 --0.042587 --0.0053438 -0.00701346 --0.0758319 -0.0536246 -0.0373216 --0.115333 -0.045449 -0.0552694 --0.0200336 --3.33484e-05 -0.00846334 --0.0505769 --0.0392792 -0.00403252 --0.01571 -0.0551879 -0.0146039 -0.045655 --0.00222251 --0.027141 --0.0478346 --0.0821456 --0.0426833 -0.0730332 -0.0022308 --0.0841373 -0.0255893 --0.018318 -0.0263965 --0.080987 --0.145907 -0.0258962 -0.0541232 -0.037388 --0.0751202 -0.0424349 -0.0549775 -0.0138902 -0.0486288 --0.0865051 --0.0340711 -0.105503 --0.00493483 -0.000477662 -0.0487225 --0.0288581 -0.0398919 --0.00103 -0.000872549 -0.0095439 --0.0170012 --0.00822793 --0.0877861 --0.0777101 -0.0580537 -0.00505743 --0.0260063 --0.0205069 -0.00798509 --0.0583306 --0.0881158 -0.0176952 -0.0110909 --0.0215268 --0.0370186 --0.0431627 -0.0828859 -0.0198138 -0.00635978 -0.016652 --0.0495179 -0.0615609 --0.0251739 -0.0159231 --0.0359492 --0.0888471 -0.0409194 --0.0437365 --0.00957369 -0.0217304 --0.000548663 --0.0243719 --0.0178804 -0.0233483 --0.0255726 --0.0302797 -0.0406512 --0.00728853 --0.0318201 --0.00921713 --0.00409582 --0.0401285 --0.0546061 --0.0700243 -0.00341338 -0.00204894 -0.0216121 -0.0254859 --0.0547987 -0.0931366 --0.0922977 --0.0159328 -0.115384 -0.00385874 --0.098799 -0.0469836 -0.121052 --0.0680686 --0.0819941 --0.0892456 --0.0609556 --0.0408934 -0.0363271 -0.0778341 --0.0736204 -0.0777017 -0.0798012 -0.0424752 -0.0127507 --0.0761695 --0.0470248 --0.0701905 -0.0217491 --0.04028 --0.00374826 --0.0269761 --0.0294789 --0.00938566 --0.0349233 -0.0461531 -0.0405751 --0.00263529 -0.027948 -0.0481001 --0.0419625 --0.0569219 --0.0233564 --0.0155826 -0.0573305 --0.00812323 --0.0252542 --0.08884 -0.00526535 -0.000768665 -0.016183 -0.0140839 -0.0378792 --0.0621468 -0.00263786 -0.00424188 --0.0973045 -0.0789367 --0.0235895 --0.0433802 -0.0458576 --0.0224633 -0.0042206 --0.084378 --0.0213392 --0.0126726 --0.0422838 -0.0428646 -0.018616 --0.013177 --0.048592 --0.020379 -0.0191771 --0.0462936 -0.0433934 --0.0260022 --0.0950792 --0.0978132 -0.111103 -0.0155184 --0.0453299 --0.00963673 -0.0503861 --4.23991e-05 --0.0112188 --0.0689513 -0.0287615 --0.0702757 --0.069181 -0.0485046 --0.0493698 -0.00673178 -0.0447621 --0.123228 -0.0354267 -0.0250418 -0.0395418 --0.140898 -0.0323684 --0.0761039 -0.0666738 -0.104361 -0.0116274 --0.011217 --0.00652245 -0.0793466 --0.0575012 --0.0296142 -0.084734 --0.0404371 -0.0769101 -0.0185941 -0.00855506 -0.00242838 --0.000902542 -0.0160749 --0.0189456 -0.0504453 --0.0276653 --0.0823428 --0.0335788 --0.0304688 -0.0373699 --0.0240886 --0.0325991 --0.052454 -0.100145 -0.0346948 --0.0866967 --0.00480776 --0.0497846 --0.0406545 --0.0838305 --0.11085 -0.0289822 --0.0170399 -0.0701593 --0.0558556 --0.0368151 --0.0108194 -0.0311798 --0.00876538 -0.0344426 -0.0458126 -0.00222539 -0.0469029 --0.00445853 --0.0448902 -0.0746403 --0.0590415 -0.012527 -0.0493346 --0.0835757 --0.0330809 --0.0158115 --0.026042 --0.0248589 -0.0045759 -0.0776511 -0.0465342 --0.0383132 -0.0321971 --0.00838171 -0.0571066 -0.00718802 -0.0542204 -0.0264663 -0.0483907 --0.0714011 -0.0821212 -0.0821649 -8.40063e-05 --0.00035857 --0.0674606 -0.0166709 -0.00428561 --0.0472841 -0.0430712 -0.00980768 -0.00496986 --0.0239318 -0.0960605 -0.0318987 -0.0128535 -0.0319045 -0.0044621 -0.0325529 -0.0539922 --0.0930002 --0.0409723 -0.00538169 --0.0629748 -0.0816906 -0.0102445 --0.017918 -0.0182093 --0.0286371 -0.00794778 -0.0099743 -0.0458736 -0.0311989 --0.088012 --0.0219939 --0.0264624 --0.0115479 --0.0349362 -0.0925634 -0.015623 --0.0791234 --0.0051717 -0.0108678 -0.0339424 -0.0275862 -0.0138433 --0.0130772 -0.0789547 -0.021366 -0.00569521 -0.0694743 -0.0244801 -0.00136009 --0.0278311 --0.0139583 -0.0441842 --0.0229635 --0.0512055 --0.0125026 -0.0440106 -0.03878 --0.0242671 --0.0630548 --0.125404 -0.00689321 --0.00108842 -0.00993119 -0.0985372 --0.0435572 --0.00179746 --0.0468868 --0.0282533 --0.0707276 -0.0398109 --0.00812768 -0.0795014 -0.016354 --0.0271081 -0.0549843 --0.106208 -0.023003 -0.0162673 --0.000176944 -0.020273 --0.0180202 -0.060942 --0.0135827 -0.00550654 -0.0131348 -0.058279 -0.0749749 --0.0265054 -0.0647673 --0.0428262 -0.0408779 -0.03877 -0.0136419 -0.0809239 -0.016191 --0.0401513 --0.0803874 --0.0697563 -0.0309217 --0.000114661 --0.0317546 -0.00380444 -0.0298062 --0.0194662 -0.0672199 -0.0573619 --0.0259844 -0.0059866 -0.00359217 --0.0297415 --0.04179 --0.0399475 -0.0813643 -0.0805165 -0.0844025 --0.0056164 --0.0492364 --0.00149329 -0.0219979 -0.133637 --0.023465 -0.012782 -0.0386719 -0.0110771 --0.108581 --0.0158189 -0.0367063 --0.0684889 -0.0168511 -0.0678638 -0.00971371 --0.062998 -0.0275664 -0.0153949 -0.0821163 --0.0574234 -0.0264342 --0.0136948 --0.00569021 -0.0332549 --0.0353176 --0.0665619 --0.0216431 --0.0690622 --0.0353068 --0.00632378 --0.0583503 -0.0259146 -0.0384988 --0.00555526 -0.0822834 -0.00871033 --0.0388716 --0.0629052 -0.0097641 -0.00131134 -0.0422459 -0.00299251 -0.0366565 -0.0977515 --0.0277301 --0.0524904 -0.0548652 -0.0592189 --0.0245413 --0.0439757 -0.0917853 --0.0314142 --0.0485554 -0.00630638 -0.00654493 --0.100165 -0.0364274 --0.0987676 -0.0154848 --0.000895727 --0.0745885 -0.0418002 --0.0400599 --0.0286049 -0.00418621 -0.0348494 -0.0457412 --0.10722 --0.0231661 -0.053378 --0.000780879 -0.0276488 -0.0509379 --0.0295753 --0.0461831 -0.0452492 -0.0394804 --0.01711 --0.0489057 --0.0426799 -0.0350066 --0.0287099 -0.00586814 --0.0369899 --0.0103113 -0.00424148 --0.00397476 -0.0539349 --0.0518772 --0.0293402 --0.00736373 --0.0243876 --0.0377786 -0.0332976 -0.0743577 --0.0155497 -0.090441 -0.0353015 -0.0378441 -0.0379098 --0.0332874 --0.042306 -0.0118371 --0.0112566 -0.00839569 -0.0106875 -0.0123863 -0.0353547 -0.00177652 -0.0325376 --0.0125637 -0.00636586 --0.0580023 --0.0795378 --0.0447148 --0.0433258 -0.0594152 --0.047259 -0.0722571 --0.0318329 -0.0560738 -0.0965004 -0.0699245 -0.0875259 --0.0184787 -0.0605626 -0.00343639 -0.0162174 -0.0682948 -0.0760354 -0.100522 --0.0523318 -0.0555739 -0.0241412 --0.0549172 --0.00498517 --0.0288726 --0.0450149 --0.0602433 --0.0435505 --0.0293945 -0.0148813 -0.0230963 --0.00360898 -0.0791548 -0.0128777 --0.027698 -0.0694737 -0.0993387 --0.00780487 -0.0278806 --0.0135063 --0.000716869 -0.00161167 --0.0580595 --0.0150039 -0.0331246 -0.0362759 -0.0348317 -0.0494767 --0.00335233 --0.00905867 --0.0269692 -0.0256782 --0.00996761 -0.0102446 -0.0125359 -0.021037 -0.0196621 --0.00896708 --0.00966295 --0.0284811 --0.0271944 --0.0011748 -0.0130072 --0.112456 -0.0127578 --0.0354846 -0.0197378 -0.10922 --0.00820801 -0.0405662 --0.0307811 -0.0850076 -0.0641802 -0.0624471 -0.0395553 --0.048519 -0.00753992 -0.0882295 --0.000161036 -0.00672087 --0.04175 -0.019509 -0.0932937 -0.013099 -0.0416906 --0.0356097 --0.0390864 --0.0459305 --0.00151285 -0.00222693 -0.0825989 --0.00516339 -0.0345954 -0.100812 --0.0335253 -0.0127675 --0.0211103 --0.0360659 --0.00102129 -0.00156291 -0.0221908 --0.0415987 -0.060818 --0.052013 --0.0534004 --0.00121124 -0.158355 -0.0637804 -0.0155066 -0.00175017 --0.0159851 -0.0459697 -0.0118004 -0.0181177 --0.0348177 --0.0145093 --0.0454556 -0.01609 -0.031674 -0.0251104 --0.0203424 --0.000887669 --0.0441863 --0.0678931 --0.00637313 -0.0105855 --0.0131597 --0.0122205 --0.0463855 --0.0343166 -0.021252 --0.0596067 --0.0196071 -0.00717528 -0.00712236 -0.0590823 --0.0600106 --2.15618e-05 -0.00531653 -0.0240801 --0.0369389 -0.0470384 --0.104621 --0.00811266 -0.00736196 -0.0543886 --0.0979591 --0.0986037 -0.0353705 -0.0272601 --0.0330111 --0.0955571 --0.0346798 -0.00557989 --0.0382449 --0.0797907 --0.0711822 -0.0538986 -0.0648373 -0.0596094 --0.0510802 -0.0267879 --0.0426936 --0.0379123 -0.0317836 --0.00479782 -0.0392012 -0.0343634 --0.00311996 --0.00294991 -0.0339737 -0.104921 -0.0146108 -0.0117446 -0.0251235 --0.0130594 -0.0755122 -0.0351174 -0.117708 -0.0622329 -0.0472342 -0.098271 -0.0983089 -0.0534539 --0.0611481 -3.43869e-05 --0.0105057 -0.012074 --0.0888875 --0.047171 --0.00890918 -0.0572515 --0.00451149 --0.032975 --0.0676909 -0.0780591 -0.00516897 -0.118049 -0.0342621 -0.0646568 -0.0916127 --0.0606874 -0.0143929 --0.0628274 -0.0290536 -0.0211274 -0.0144921 -0.0410556 -0.000912423 -0.0725533 -0.0230652 -0.00263658 -0.0703451 -0.0468311 -0.0525515 -0.020198 --0.0221978 -0.0391912 --0.0508218 --0.0106167 -0.00421599 --0.0593635 -0.0812704 -0.0459373 --0.0110815 -0.0248569 -0.0478944 -0.0284164 --0.0364661 --0.0270245 -0.0389158 -0.014656 --0.0213603 -0.0400391 -0.0672308 -0.0291138 -0.0103638 --0.0459572 -0.0259843 --0.0034272 --0.0759154 -0.050208 --0.0671185 --0.01374 -0.0633465 -0.0579907 -0.0352085 --0.0288622 --0.0160463 --0.0681657 --0.0120212 --0.0190581 --0.137458 -0.0373206 --0.0508572 --0.012342 --0.0838788 -0.0204542 -0.0890307 -0.0222392 --0.0233142 -0.0601306 --0.0276816 -0.0249791 --0.00759347 -0.024148 -0.0152466 --0.0511376 --0.0499952 -0.106621 -0.0492849 --0.0139407 -0.0128684 --0.0863962 -0.000796853 --0.0437401 --0.00668449 --0.0266448 --0.0580732 -0.00794936 -0.0163653 --0.0121866 -0.0175634 -0.0493106 -0.0624436 --0.0292888 -0.0690736 --0.0106071 --0.0496448 --0.110422 -0.0834425 --0.048449 --0.0555199 -0.0516576 -0.0110255 -0.0429791 --0.0280055 -0.0295242 -0.00291697 -0.0677781 --0.0122567 --0.104925 --0.0602385 -0.032015 --0.056404 -0.0325755 --0.0011275 --0.0411665 -0.0933168 --0.00360854 --0.0548566 --0.00779646 -0.0298439 --0.0477127 --0.00482977 --0.0114558 -0.00187758 --0.0385194 -0.0170897 --0.049088 -0.0288671 --0.0336805 -0.0123401 -0.00133741 --0.0305218 --0.0169974 --0.0346785 -0.0192683 -0.0154629 --0.00389389 --0.0545129 --0.0958195 --0.0138831 -0.0361429 -0.0321794 --0.0591002 --0.0811467 -0.0129742 -0.0256429 --0.152158 -0.0201495 --0.0297271 --0.0624054 --0.0270039 -0.030314 --0.048342 -0.0909341 -0.0423025 --0.0447067 --0.0722176 --0.0603377 --0.046946 -0.0150662 -0.0142593 --0.0336423 -0.147146 -0.0476961 --0.0377651 --0.00889413 -0.0496804 --0.0442522 -0.0588473 --0.0630222 -0.0591752 -0.0366926 --0.0893921 --0.00525352 --0.0060478 --0.0609271 --0.0365489 --0.0199951 --0.0217282 -0.0167803 --0.0176076 -0.148145 -0.00427189 -0.00856623 --0.0344071 -0.0196841 --0.0144923 -0.0329274 -0.0297295 -0.0688006 --0.0273027 -0.0301861 --0.0621372 -0.107278 --0.0156247 --0.0922286 --0.023799 -0.0565184 -0.101512 -0.0290175 --0.0440945 -0.0249686 --0.0776003 --0.0144543 --0.0204839 -0.00940514 --0.0552465 --0.0363462 -0.0135339 -0.0499094 --0.00534861 -0.0510824 -0.0594743 --0.0372262 -0.00501751 -0.0396046 -0.0101598 -0.0425557 --0.0102043 -0.00658005 -0.0795524 -0.0520023 -0.102148 --0.0289774 --0.00418487 --0.00181141 --0.0655025 --0.0193337 --0.0195566 -0.075052 -0.00368849 -0.012868 --0.0121272 -0.0807225 -0.0129261 -0.0632238 --0.00225016 -0.0227001 --0.0344714 -0.073226 --0.0206097 -0.0100296 --0.101127 -0.102214 -0.0130048 -0.0189404 -0.0227121 -0.0291666 -0.0584434 -0.0929734 --0.00355235 --0.0378872 --0.0578053 -0.0537581 -0.00107148 --0.0309648 -0.0524099 --0.0440468 --0.0444451 -0.0149046 -0.0433662 --0.0393958 --0.104647 -0.0145113 -0.0489187 -0.0270757 --0.0048612 --0.0262755 -0.0175405 -0.114519 -0.0559692 --0.0463358 --0.0330457 -0.0194625 --0.0691533 -0.0649994 --0.00373832 --0.0513162 -0.0665485 --0.084132 -0.0185356 --0.0230611 -0.0600692 --0.0168603 -0.0773674 -0.0307498 -0.00297921 --0.0188189 --0.0269337 -0.0569398 -0.0401084 -0.0969786 -0.0387015 -0.113117 --0.00227136 -0.081871 --0.0642729 --0.0125265 -0.0745741 -0.00400957 --0.0100136 --0.00053583 -0.0366712 --0.0371585 --0.00234634 --0.0836251 --0.021707 --0.0935107 -0.04668 -0.019608 -0.012382 --0.0205909 --0.0834102 --0.0454722 -0.0159747 --0.0664526 --0.0410661 --0.0122711 --0.0503922 -0.0111567 --0.00956235 --0.0812432 -0.0351603 -0.0104667 --0.00933105 --0.0347614 --0.0592565 -0.0581236 --0.0415836 -0.0929456 -0.0238589 -0.0401221 -0.0182119 -0.0276463 --0.125488 -0.0987909 -0.0360799 -0.0281797 -0.0546676 --0.0321506 -0.0366085 --0.117058 --0.0765848 --0.0148271 -0.0456427 --0.018355 -0.0509566 -0.0150318 -0.0396106 --0.0387472 -0.00283326 --0.0631372 -0.0319829 --0.0414872 -0.0182265 -0.0223582 -0.0784941 -0.0573672 -0.0410275 --0.0309544 --0.00746668 -0.0799114 -0.0546326 -0.0154492 --0.0106514 --0.0274045 --0.0403215 -0.0481972 --0.0511719 --0.000567074 -0.0404299 --0.000344843 -0.0599114 -0.0656209 --0.0363599 -0.0134431 -0.0198512 --0.0176081 --0.146127 -0.0419918 -0.00119844 --0.0388737 -0.0509116 -0.0256266 -0.0486217 --0.105265 --0.0245889 --0.0240493 -0.0170518 --0.0207644 -0.00984057 -0.0340175 -0.0472607 -0.00513641 -0.0536448 -0.00893011 -0.026808 -0.0796008 --0.0450751 -0.0610762 -0.0340933 -0.0736583 -0.016496 -0.0589235 --0.0258852 --0.064081 -0.0176112 --0.0495804 -0.0377133 -0.0927234 --0.0203594 -0.0108208 --0.0975774 --0.0256264 --0.0434636 -0.0163766 -0.118187 -0.00834046 -0.0565522 --0.00718689 -0.0235002 --0.0189003 -0.0111128 -0.0547109 --0.112593 -0.0668294 --0.0634839 --0.0588138 -0.0827888 -0.0493981 -0.116059 --0.0255847 --0.0237522 -0.0337489 --0.00753081 -0.0102055 --0.0079129 --0.022168 -0.0136141 --0.0122969 -0.0129405 --0.0475225 --0.0486838 --0.0222304 --0.00297596 -0.0491992 --0.0302188 --0.0637049 --0.0592957 -0.0489954 --0.044041 --0.0275358 -0.027028 -0.00982204 --0.0165538 --0.0226493 -0.0649566 -0.0010154 --0.0541052 --0.0181086 -0.0106525 -0.0984644 --0.0127046 --0.0287815 --0.0880785 --0.0140519 -0.0658711 -0.00681692 -0.00533048 -0.0293478 -0.0155677 -0.00212665 -0.00384338 -0.0157967 -0.0196583 -0.0600382 --0.0412109 -0.0788488 --0.0375474 -0.0549633 --0.158411 --0.0475239 --0.00124934 -0.0419827 --0.0455434 -0.0118348 --0.020409 -0.140365 --0.0989995 --0.0634637 -0.0413459 -0.0260235 -0.000696524 -0.00429778 -0.0280886 --0.0254972 -0.0413521 -0.016619 --0.0435699 -0.0206189 -0.0999683 --0.0381376 -0.0387017 -0.0191205 --0.0973968 -0.0505911 --0.0196133 -0.0576374 --0.045275 --0.0429565 -0.00963177 -0.0733414 -0.00821572 -0.0458468 --0.0990822 --0.0517325 --0.0497781 --0.0959906 --0.01325 -0.0750034 -0.00581599 -0.103313 --0.0286028 --0.0495691 --0.0595784 -0.10419 --0.0223764 -0.0592382 -0.0115682 -0.0118896 --0.0756069 -0.0328991 -0.0512927 --0.0204375 --0.0164413 -0.0294347 -0.0292309 -0.0653508 --0.0592645 --0.0564582 --0.0267485 -0.0323198 -0.0315995 --0.00281936 --0.0360409 -0.0647037 -0.0199704 --0.0580196 -0.0114938 --0.00756986 -0.0258705 --0.0118554 --0.0276944 --0.0176005 --0.0656444 -0.0586365 --0.028501 -0.0490792 --0.029556 -0.0206749 --0.0396356 -0.0774633 --0.0616473 -0.0091345 -0.0262911 --0.00614349 --0.0523012 -0.00809157 --0.0859706 -0.00914065 -0.14325 --0.0147654 -0.0282332 -0.00379569 -0.0490166 -0.00804305 -0.0334686 --0.0794572 -0.0991113 --0.0246551 -0.0847888 --0.0520811 -0.00915873 --0.18876 -0.0115177 -0.0237419 --0.00585951 --0.0261503 --0.0849829 -0.00193517 -0.000964211 --0.0311489 --0.019701 -0.00834711 --0.0461661 -0.0504181 -0.0573128 --0.0239171 -0.075732 --0.0471048 --0.000673436 -0.0638453 -0.175541 --0.0732659 -0.0326862 -0.0293509 --0.0605441 --0.0228354 -0.0494484 -0.0638815 --0.0253753 --0.0348987 -0.00156853 --0.0268942 -0.0246212 -0.00612187 -0.0831938 --0.0415215 -0.0735146 --0.0352915 -0.0200536 -0.0609029 --0.0748483 -0.0104452 -0.00815784 --0.0215695 --0.0672901 --0.0305029 --0.0683652 --0.0515068 -0.032917 -0.0229122 --0.0295543 --0.0598815 -0.0159989 -0.00446047 -0.128559 --0.0379148 -0.043682 --0.0548344 --0.074849 --0.0391315 -0.0846959 -0.0563857 -0.0381762 --0.0469067 -0.00461265 --0.0139061 -0.00335694 -0.0247776 --0.0200766 --0.0109619 --0.0855919 --0.00505585 -0.0166732 --0.0740547 -0.0459208 -0.0337249 -0.0357913 -0.0236691 --0.0340165 --0.0458958 --0.0535215 -0.00853748 --0.099527 -0.0418756 -0.00784446 --0.0197754 --0.0400278 --0.0130231 --0.119576 -0.0828553 -0.0333613 -0.0713931 --0.0239141 -0.00932673 -0.0537433 -0.0178086 --0.0689735 --0.00274352 -0.00506088 --0.0394246 --0.0451346 -0.00972201 -0.0333595 -0.0113949 --0.101925 --0.0352195 -0.0564264 -0.0337247 -0.0116186 --0.0460732 --0.00991027 --0.0871529 --0.143395 -0.051417 -0.0283644 --0.00355384 --0.115258 -0.0424029 --0.0242469 -0.0382484 -0.00123705 --0.0393684 --0.0672144 -0.110704 --0.00087587 --0.0249499 --0.00134975 --0.0239469 --0.0509696 --0.0521226 -0.0893836 -0.0707165 -0.0423422 --0.0353731 -0.080046 -0.0518091 --0.0263531 --0.0606401 -0.0168543 --0.0333674 --0.013402 --0.0230661 -0.00723541 --0.0418193 -0.00814698 --0.0319147 -0.00868674 --0.103187 -0.0912244 -0.0649308 --0.00113439 --0.0606085 -0.0149806 --0.0154338 --0.0542611 -0.0442843 -0.0227154 --0.0353304 --0.0355191 --0.0580985 --0.0223037 --0.00198987 --0.0568623 --0.00405922 --0.0289196 --0.0702656 -0.0558796 -0.0413838 --0.0038183 --0.0250306 -0.150899 --0.0184069 -0.0109202 --0.0551502 --0.00715508 --0.0360468 -0.00885662 -0.0102877 --0.0163201 --0.0335046 -0.0376449 --0.00543321 --0.0704222 -0.00749663 -0.0556591 -0.0364235 --0.0492387 --0.0711661 -0.0168823 --0.0163595 --0.0198322 -0.0358081 --0.116952 --0.0259846 --0.0734988 -0.0319816 -0.0539301 --0.0148298 --0.0549558 -0.102009 -0.0363225 -0.0299248 --0.113102 -0.0127426 -0.0249155 --0.0396066 -0.00383514 --0.0357531 --0.0244033 --0.0173764 --0.0131098 --0.0939608 --0.0209455 --0.0105225 -0.00353038 -0.0656966 --0.0105402 --0.0910299 -0.0208004 --0.0442952 --0.0434118 -0.0153882 -0.0500993 -0.0126279 --0.0566511 -0.0135274 -0.0367331 -0.128738 -0.047333 --0.0205445 --0.0262312 --0.0263208 --0.0618322 --0.00872752 -0.0370754 --0.0243394 -0.111963 --0.0422167 --0.0546374 -0.0612323 --0.0232596 --0.0264416 --0.0878733 --0.0576602 -0.0383001 -0.0304879 --0.0223555 -0.00597816 --0.0259746 -0.0428494 --0.00525112 -0.0161187 -0.051948 -0.00934333 --0.0673142 --0.0235197 --0.0595636 -0.00678028 -0.0404101 --0.0971245 -0.00409911 --0.0421484 -0.00858182 --0.022647 --0.0525218 --0.0188659 --0.0292957 --0.0340608 --0.0152384 -0.0191126 -0.104129 --0.0632434 -0.0137216 --0.0586611 -0.0677102 -0.111948 -0.00819309 --0.0123284 --0.000785705 -0.118607 -0.00563186 --0.0297199 --0.0254575 -0.0606887 -0.0489885 -0.113742 --0.0597148 -0.0731133 -0.122041 --0.0154756 --0.055591 -0.00736206 -0.0501492 -0.0408979 -0.0668702 --0.0992645 --0.0867931 --0.0990297 --0.0117663 -0.016138 -0.0401858 -0.0472084 -0.0416129 -0.0269397 --0.0575251 --0.0837526 --0.0594006 --0.0690835 --0.0961866 --0.00634262 --0.0425491 -0.0311724 --0.0553495 --0.0804436 --0.100387 --0.0843036 -0.122374 --0.0915605 -0.0488103 --0.00686781 -0.0153945 -0.0150803 --0.109899 --0.106439 --0.0284829 -0.0369233 --0.00402181 -0.0437958 --0.030995 --0.0475029 -0.104008 --0.0347421 --0.0217454 --0.00498094 -0.0338165 --0.0406652 --0.0189864 --0.0447304 -0.0279978 -0.0701919 --0.036181 -0.0683987 --0.0177099 --0.0377704 --0.0182827 --0.0467023 -0.0717989 --0.0518172 -0.140238 --0.0148206 --0.0378193 --0.0840883 --0.0677698 --0.0123891 --0.0227583 --0.0169506 -0.0739108 --0.0686589 -0.0427343 -0.00709746 -0.0320047 --0.00488084 --0.0287853 --0.00534141 --0.100081 -0.0950904 --0.0132098 -0.00412003 --0.0196285 -0.0908769 -0.0396403 -0.114736 --0.100214 --0.0517418 -0.0116948 -0.0497148 -0.0893339 --0.0285316 -0.0913972 -0.092255 -0.000929592 --0.0382856 -0.0470866 --0.023861 --0.0128821 -0.107199 -0.0119708 --0.0437047 --0.0176311 -0.0149748 --0.00253893 --0.00663653 --0.0280917 -0.00722548 --0.0339846 --0.067627 --0.0242713 -0.0681772 --0.0579697 --0.0857322 --0.0140186 -0.0631623 --0.030808 --0.0400547 --0.000721847 -0.0661105 -0.00960876 -0.0179058 -0.0449788 -0.005293 --0.001107 --0.0327018 -0.0245385 --0.0254322 --0.0125831 --0.0010549 --0.0188332 -0.0115744 -0.00333598 -0.00256762 -0.079579 --0.0183864 -0.00366356 -0.070083 --0.0422908 --0.109282 --0.0490379 --0.0764434 --0.015569 -0.0211572 --0.0846641 -0.020093 -0.061958 --0.0540202 -0.0312856 -0.0726505 --0.0534032 --0.0572216 -0.0216046 -0.0626601 -0.0853217 -0.0464443 --0.0108441 -0.0445741 --0.0345786 --0.0600204 --0.0538043 --0.0748783 --0.0584556 --0.0624658 -0.0769365 -0.0649301 -0.062657 --0.00138314 -0.0302679 --0.0578569 --0.0108959 --0.0451181 --0.021726 -0.0158111 --0.017632 --0.0144936 -0.0484067 -0.00814513 --0.0453859 -0.0238236 -0.00997486 --0.0237162 -0.020496 -0.105587 -0.00371031 -0.0444636 -0.0398573 --0.0232163 -0.0355132 -0.0252301 --0.0225619 -0.0652216 -0.0203454 --0.0135958 -0.0574767 --0.0275939 -0.0238104 --0.0489286 --0.0111189 -0.0890722 --0.087371 -0.094027 --0.0139846 -0.0184985 --0.0887415 -0.010712 -0.0414301 --0.078154 --0.0154142 -0.0355373 -0.033063 -0.00932832 --0.00870253 --0.0581038 -0.0697368 --0.126606 --0.0278142 --0.0523545 --0.0633731 -0.0108847 --0.00659745 --0.0379355 -0.0524019 --0.0410091 -0.0601057 --0.0654696 -0.0293594 --0.0165831 --0.0236489 --0.0913583 -0.0281585 --0.0253852 --0.0493612 -0.0385102 --0.00744432 -0.0155635 --0.0352467 -0.0362824 --0.0358562 --0.00126459 --0.0419787 -0.0418718 --0.0444528 --0.0245648 -0.0361989 -0.0572616 --0.028128 --0.05657 -0.0386831 --0.0630192 -0.0565126 --0.0864265 --0.0450109 --0.0831751 -0.0665923 -0.0222222 -0.0039468 -0.0462915 --2.47615e-05 --0.00582759 -0.00982952 -0.048662 -0.0248091 -0.0371138 --0.020828 --0.0128854 --0.0492129 -0.0198115 -0.0934646 -0.0176645 -0.00405623 --0.00322233 -0.0112017 -0.0330177 -0.040241 -0.0347547 -0.0173497 --0.0321444 -0.0235705 --0.0496472 -0.0261227 -0.0731991 --0.0168307 --0.0323245 -0.00608194 -0.0611256 --0.0237482 --0.0267653 --0.024333 -0.00465255 --0.0721932 --0.0604555 -0.0289595 --0.169719 -0.0299735 -0.0478993 --0.0605204 --0.0275513 --0.0581947 -0.0222481 -0.125131 -0.0107579 --0.0466585 --0.0517276 -0.0172165 --0.0097708 -0.047605 --0.0220964 --0.0101512 -0.00900946 -0.0759238 --0.00354646 --0.0148272 -0.0328686 --0.0181223 -0.00600917 -0.0817682 -0.00302032 --0.00104063 -0.0687009 --0.0157042 --0.0816751 --0.0145734 -0.0978158 -0.0872667 -0.0969281 -0.0422608 --0.00969369 --0.0136082 -0.0118895 --0.0116972 --0.0688419 -0.0421173 --0.0823165 --0.030215 -0.0318161 --0.0153041 --0.0337628 -0.0508644 --0.0287971 -0.0176878 --0.0302312 --0.00313697 -0.0282195 --0.00779483 --0.0573392 -0.00127088 -0.0527556 --0.0462332 --0.0189217 --0.0181115 -0.0282907 -0.00474387 --0.031604 -0.126804 -0.110266 -0.0203502 -0.0322007 -0.0291708 -0.0310078 -0.0259408 -0.0462334 -0.0621328 -0.0721271 -0.0534665 -0.0417466 --0.116939 --0.0776111 -0.00533806 -0.0376155 --0.0405651 --0.0244059 -0.0171151 -0.018866 -0.0630674 -0.0010347 --0.0176899 --0.0371902 --0.0557433 -0.0408605 --0.0411712 -0.0271941 -0.0460072 --0.0516376 --0.0340189 --0.0166046 -0.0220757 -0.00177934 --0.0506896 -0.0466319 -0.0374498 --0.0692426 --0.0491902 -0.0602066 --0.0646327 -0.0499473 -0.0710276 -0.0437696 -0.0164236 -0.0259265 --0.034393 --0.0316345 --0.0973929 -0.0391312 --0.0619808 --0.0100439 --0.0230978 -0.08028 --0.0340463 --0.0593478 -0.0392941 -0.0309196 -0.0926814 -0.000317608 --0.0304637 -0.0262145 -0.00322173 -0.0545383 --0.0280516 -0.0021758 -0.0187785 -0.0363765 --0.0208762 -0.0367182 -0.0816834 -0.00320984 -0.072494 -0.00720676 -0.041508 -0.0255842 -0.0302443 --0.019254 --0.000320649 -0.137495 -0.0100203 --0.00933179 -0.0216467 --0.00608257 -0.0277411 --0.00249284 --0.0175115 -0.0267931 -0.0278158 -0.00902428 -0.000374802 -0.0299244 -0.142801 --0.00614853 --0.033579 -0.00923861 --0.0361974 -0.0101954 --0.057809 --0.0137955 --0.0705621 -0.00895425 -0.0430287 --0.0567996 -0.0889362 -0.00911947 --0.0250541 --0.00553543 --0.00349406 -0.0458297 --0.00716797 -0.0699312 --0.126524 -0.00505257 --0.00819551 -0.0114007 --0.024797 -0.0206466 -0.0512597 -0.106054 --0.0373134 --0.0407349 -0.0417991 -0.0127252 --0.00968527 -0.0293759 --0.00617536 -0.0530667 --0.0135611 --0.0224304 -0.0449301 --0.0484008 -0.045827 --0.0640804 -0.0598501 --0.00870386 -0.0197419 -0.022157 --0.0471625 --0.0460448 -0.0904948 -0.0123098 --0.03237 --0.0262622 -0.038003 -0.0278915 -0.0462355 --0.063429 --0.0170553 -0.0358679 --0.051123 --0.0044451 --0.00147965 --0.0204774 -0.0758482 -0.0856536 -0.110709 --0.0648744 -0.0122407 --0.0442879 --0.0377955 --0.0326125 --0.00537921 --0.0499303 --0.0608324 --0.0311263 -0.103177 --0.0931658 --0.0259121 -0.0176873 -0.0381215 --0.0521608 --0.0326421 -0.0547886 -0.0730248 --0.0295004 --0.000779265 --0.00599852 -0.0575212 -0.0204253 --0.0215942 --0.0164171 --0.00360421 --0.0147507 -0.00482036 -0.0358196 -0.0333921 -0.0713388 --0.0182929 --0.020047 -0.00333484 -0.0427373 --0.0466435 -0.0634454 -0.0684948 -0.011772 --0.0225283 -0.0146193 -0.0251655 -0.00522675 -0.0319188 -0.019942 --0.011341 -0.106556 -0.0668678 --0.0459842 -0.017197 --0.0889587 -0.04291 --0.00792931 --0.0727773 -0.00613353 --0.0276195 --0.0358763 --0.0545963 -0.0235837 --0.0369579 --0.0416381 -0.0303447 -0.0177215 --0.0062753 -0.0281834 -0.0169464 --0.0445258 -0.0635793 --0.048032 -0.0286165 --0.0620912 -0.00320802 -0.00331709 --0.0502636 --0.0134872 -0.0624094 --0.0668719 --0.0577432 --0.104075 -0.0770876 --0.0587729 --0.0533996 -0.0117659 --0.0563725 --0.125777 --0.0179088 -0.00517236 -0.00799352 --0.11468 -0.0494391 --0.0280698 -0.0186596 --0.0453823 -0.00412002 --0.0330526 -0.104203 -0.0320048 -0.0315129 -0.0631896 --0.017793 -0.0550071 --0.0248522 -0.0605919 --0.0610789 -0.0388829 -0.104851 --0.0248643 --0.0453176 --0.00400237 --0.00976173 --0.0107272 --0.0876683 --0.0684867 -0.0467488 --0.0343409 --0.0362368 -0.0187697 -0.00324625 --0.038022 -0.111316 -0.0575432 -0.00429435 --0.0527471 --0.0687518 --0.111305 -0.0485125 --0.0418384 --0.0573615 -0.0124656 -0.0156459 --0.0534628 -0.00143162 -0.0223848 -0.0294003 --0.0690872 --0.0928738 --0.0616774 -0.0335965 -0.0380298 -0.0345118 -0.0163105 -0.0740291 -0.0389639 --0.00384561 --0.010194 --0.0378053 --0.031417 -0.0282194 --0.0544372 -0.0686855 --0.0362901 -0.0777714 -0.0345987 --0.0259624 --0.122309 -0.0230725 --0.00509948 -0.0222238 --0.0747808 -0.0994422 -0.0168912 -0.00324121 -0.00789667 --0.0522911 -0.00889308 -0.0186529 --0.0514964 --0.00647272 -0.0254636 -0.0100231 --0.024945 --0.0673466 --0.0780127 -0.0216684 --0.0134922 --0.0238354 -0.0177513 --0.03274 --0.0300445 --0.00748146 --0.00797136 -0.0223904 -0.0324171 -0.0483298 -0.00399431 --0.0629676 -0.0332745 -0.0200116 -0.0146458 -0.0317521 -0.0235426 --0.00886629 --0.020222 -0.00596902 --0.0212329 --0.111977 -0.04618 -0.0109176 -0.0312412 --0.0112624 -0.0507593 --0.0318502 --0.0294366 -0.046504 -0.0471171 -0.00908183 --0.0482979 --0.213201 -0.0589652 --0.081912 --0.00137561 -0.0648828 --0.0155724 --0.0289828 -0.0400493 -0.0615517 -0.0439681 -0.0202319 -0.0365047 --0.0578444 --0.0169915 -0.121117 --0.00965763 --0.108618 --0.0523454 -0.0506682 --0.00791368 --0.0464179 -0.018257 -0.0602036 --0.0374985 --0.0135296 --0.00341038 --0.0318389 -0.0627251 -0.017522 -0.0153831 --0.0268983 -0.0706917 -0.028592 -0.00679043 --0.0217695 --0.00554482 -0.0713222 --0.0185981 --0.0290548 --0.00338176 --0.0660428 --0.033727 --0.0387639 -0.0467309 -0.0159918 -0.071035 --0.140404 -0.00532436 --0.0335364 -0.00683024 -0.0570704 --0.0136126 --0.0454283 --0.0663334 --0.0386139 --0.0563184 -0.038574 -0.0875792 -0.0881709 -0.00168282 -0.00876658 -0.0132576 --0.0295628 --0.0306875 --0.017972 -0.0181138 --0.0272136 --0.00617583 -0.00520396 -0.0445895 --0.0303857 --0.0282785 --0.0342185 -0.0509651 --0.0644344 --0.0613209 --0.0323533 -0.0129164 --0.00890827 -0.0110902 -0.0186153 --0.0683781 -0.0477833 -0.0673788 -0.0124959 --0.0618926 -0.0190171 --0.010498 --0.0508475 --0.076871 -0.0581178 -0.0273391 --0.0568081 -0.00900714 -0.00890874 --0.0094312 -0.0175098 --0.0138018 -0.0803113 -0.0281618 --0.0509858 -0.0100876 -0.0604273 --0.0396534 --0.041242 -0.00973925 --0.035495 -0.00797475 -0.0034504 -0.00515173 --0.0714333 --0.0757596 -0.0216568 -0.00670954 --0.0140409 --0.00078272 --0.0793123 --0.035004 --0.0217469 -0.0457262 --0.076576 --0.0126446 --0.0788022 -0.102986 --0.0243278 -0.0220303 --0.0626731 --0.0353605 --0.0157794 --0.0635498 --0.0332142 --0.102128 -0.0606493 -0.0804221 --0.0396111 -0.0478028 --0.145059 -0.0594524 -0.0544877 -0.00452329 --0.0341505 -0.0501014 -0.0224755 -0.0275029 -0.0688059 -0.0759079 -0.029874 --0.0554291 --0.0363693 --0.0323852 --0.0472587 -0.0153059 --0.0521808 --0.0191604 --0.0527952 --0.0829191 -0.0470659 --0.0534639 --0.0070736 -0.104013 --0.0235726 -0.107101 -0.0461597 --0.071041 --0.0124386 -0.0233996 --0.0166145 --0.00639929 -0.000792755 --0.0342908 --0.000264227 --0.00731751 --0.0451127 -0.00456682 -0.0269415 -0.0632761 -0.0228867 --0.0373728 --0.0502228 --0.108458 -0.00175781 -0.0854638 -0.0232706 -0.0151913 -0.00267498 -0.0420288 -0.0388512 -0.0710656 -0.0222472 -0.035164 --0.0203403 --0.0296881 --0.0200274 --0.0636543 --0.0825124 -0.0314426 --0.0126492 -0.0159282 --0.0774357 -0.0185363 --0.0693386 -0.0312539 -0.0165549 --0.025385 --0.0471511 --0.0060916 -0.0312872 --0.0914157 --0.0341056 -0.0196356 -0.0338352 --0.0414981 -0.0518664 --0.0679197 -0.0626045 --0.0049175 --0.107537 -0.0755688 -0.00199456 --0.0428902 -0.0372724 --0.0389186 --0.026004 --0.0543303 -0.0795857 --0.0127225 --0.0689618 --0.0135232 --0.00535144 --0.00493101 --0.0865982 --0.00566492 --0.00659825 --0.00163188 --0.0827566 -0.090376 --0.0583647 --0.0588103 --0.0770131 -0.0545261 -0.0144692 --0.0711728 -0.0468869 -0.132473 --0.0528645 -0.028128 -0.0156101 -0.000735693 -0.0261768 -0.00768514 --0.00476018 --0.0788134 --0.0448127 -0.0445741 -0.0116635 --0.044424 -0.118827 --0.00825162 -0.0105471 --0.0298892 --0.026958 -0.00639453 --0.0573733 -0.0504938 --0.0418936 -0.0245017 -0.0362225 --0.0199974 --0.0250307 --0.0395126 --0.0180757 --0.000689773 -0.0561983 -0.0166984 --0.139158 -0.0174604 --0.0162533 -0.0749536 -0.0411134 -0.00916682 --0.0207973 --0.0349957 --0.0845658 -0.0321751 -0.0188833 -0.0143157 --0.0248388 --0.0453855 --0.163844 --0.0766671 --0.0143414 --0.00755399 --0.0499242 --0.0931372 -0.00997363 -0.0781848 --0.0111305 -0.0388288 --0.00276608 -0.0510545 -0.00375921 -0.0150878 --0.061511 -0.0167895 -0.0177738 --0.0686577 -0.00683157 --0.00637861 -0.0612149 -0.00938526 -0.148316 -0.0314484 -0.0190738 -0.0155958 -0.0440474 --0.0394362 -0.100249 -0.0345857 -0.0574738 --0.058691 -0.0668668 --0.00776109 -0.00592679 --0.0400498 -0.0439568 --0.0452895 -0.0897532 -0.0210824 -0.0576891 -0.0200599 --0.0222463 -0.0206461 --0.0360102 -0.026759 -0.0178703 --0.0343757 --0.0736571 -0.0250685 --0.0360126 -0.0717236 -0.0582581 --0.0312419 --0.0178492 -0.0222597 -0.0978914 --0.0425324 --0.0400241 --0.016826 --0.00365319 --0.00638859 --0.0077353 -0.0199828 --0.049254 --0.0216443 -0.0538046 --0.00796129 -0.0170107 -0.0290799 -0.0854362 --0.0150607 --0.00690774 --0.0225644 -0.065824 -0.00783302 -0.0348054 --0.0730881 -0.0524151 --0.181974 -0.0585296 --0.0363245 --0.0230683 --0.0895262 --0.0168554 -0.0150753 -0.0312435 --0.00974228 --0.0612182 --0.00394739 --0.0131613 -0.0386425 --0.149906 -0.0203188 -0.0660289 -0.0083031 --0.0930604 --0.0158373 --0.00913411 --0.0788995 -0.0399524 --0.026911 -0.066868 -0.0287606 -0.024133 --0.0240128 -0.0308692 -0.0168703 -0.0696645 --0.0344458 -0.0805863 -0.0564163 -0.042922 --0.00514513 -0.0317637 -0.0244781 -0.060065 --0.0324263 --0.0459032 --0.031255 --0.018347 -0.0797262 --0.0135786 -0.0200863 -0.0130472 --0.0161759 -0.00810097 -0.0129505 -0.0677843 --0.0192225 -0.0598945 --0.036564 --0.0739001 -0.0166299 --0.0362911 -0.0359077 -0.073942 --0.0265742 -0.0197615 -0.0170756 -0.0983727 -0.0308305 --0.0291876 --0.0162316 --0.0446334 -0.0430604 --0.00759462 -0.00749756 --0.055384 -0.0504414 --0.0625241 -0.020021 --0.048941 -0.071568 -0.000330453 --0.065688 --0.099653 -0.0765442 -0.0796358 -0.0844211 --0.0806731 --0.0300208 --0.00459124 --0.0116809 --0.00486282 --0.0417507 --0.0308012 -0.0680485 --0.03219 --0.104277 --0.038603 -0.00422131 --0.00474395 --0.0497932 -0.0608901 --0.0270783 --0.0914666 -0.0176111 -0.00522153 --0.0530254 --0.0327623 -0.00171623 --0.0626393 --0.0151894 -0.0193824 -0.0197768 -0.0486063 -0.00935143 -0.0433041 -0.0050235 -0.0637722 --0.00724046 --0.0420704 -0.00188018 -0.0257705 -0.0928395 -0.0252987 --0.0123351 -0.0453676 --0.0157263 -0.0610325 -0.00231458 -0.00716751 --0.0176547 -0.0121879 --0.0795602 -0.105863 --0.0779198 --0.0608749 -0.00612671 --0.0678412 -0.0204318 -0.00591339 --0.0728177 --0.0101952 --0.0072209 --0.0313573 -0.0861995 -0.0165779 --0.0731756 -0.00912406 -0.0559308 --0.0568315 -0.01216 -0.0281919 --0.0490289 -0.0387371 -0.044805 --0.0328361 -0.00381569 --0.00873426 -0.0314672 -0.101768 --0.0393292 -0.0577249 --0.0537995 --0.0143921 -0.0312656 -0.0924986 -0.0254354 --0.0872988 --0.00876876 -0.0242342 -0.0206136 --0.0514045 -0.00225754 -0.019489 --0.0265263 -0.0540967 --0.0416602 -0.0931013 -0.0517641 --0.0427627 --0.0711178 --0.0472425 -0.0384435 -0.00357071 -0.00234496 -0.0389819 --0.089195 --0.0223215 -0.0415261 -0.0431818 -0.0162252 --0.0298771 --0.0244091 --0.0740721 -0.0565133 --0.0310572 --0.00342776 -0.0330674 -0.00397899 -0.0930655 -0.0400358 -0.0820075 --0.133873 --0.0338192 -0.0264103 -0.0705251 --0.0194706 --0.00173194 --0.0593253 --0.00380866 -0.0127315 -0.0123774 --0.088014 --0.0654713 -0.0245991 -0.0366956 -0.00894964 -0.0113045 -0.0724994 -0.058207 -0.0518547 --0.0127029 -0.0307844 -0.0269935 --0.0655193 -0.00397678 -0.0198948 -0.0721903 -0.0584598 -0.00888441 -0.0257011 --0.0425823 --0.0164741 -0.0640108 -0.0965467 --0.0352026 -0.0601658 -0.022169 -0.0268972 -0.0251813 --0.00722853 --0.0408684 --0.0384093 -0.00535453 --0.0131431 --0.0368405 -0.00867887 -0.046782 --0.00703157 -0.0493509 --0.0839085 --0.102415 --0.0341509 -0.0184864 -0.0392745 -0.0635686 --0.0376289 --0.00536994 --0.0144 --0.0575958 --0.0164607 -0.0455863 -0.0382283 --0.108479 --0.0269278 --0.0182227 -0.0198978 -0.128116 -0.00758357 -0.0230412 -0.0125958 -0.0559805 -0.0184249 --0.036227 -0.10156 -0.0195657 --0.0808102 --0.0747939 -0.0593307 --0.0279545 --0.00454542 -0.0528857 -0.000301799 -0.000280229 -0.0651563 --0.0312326 -0.00664416 --0.134169 --0.0697895 -0.0428948 --0.0126139 --0.0645335 -0.00916854 -0.0386463 --0.046105 --0.0270263 --0.00905544 --0.0559914 -0.0781519 -0.0253347 --0.00330729 -0.0199567 -0.0362319 --0.0360871 --0.105108 -0.0112639 -0.0550386 --0.0337327 -0.00862396 --0.00674735 --0.103086 -0.0946309 -0.00204808 -0.0251679 -0.0637916 --0.0301827 --0.106166 --0.0601067 --0.0578222 --0.0901554 -0.147668 -0.0191113 -0.0387813 --0.016509 -0.0265198 --0.0355646 --0.0722159 -0.0204538 -0.0452728 -0.0422714 --0.0430905 --0.0959881 --0.0948987 --0.0721609 -0.107613 --0.0133175 --0.0247776 -0.00840767 -0.0135145 --0.0209527 -0.0604429 --0.0339836 -0.0438577 -0.0288643 -0.0359949 -0.0516828 -0.0986768 --0.0251909 -0.00576503 --0.000241465 --0.0222858 -0.0279308 --0.00243454 -0.0550098 -0.0221868 -0.0122408 -0.00530071 --0.0786335 --0.0997442 -0.022188 --0.0338379 --0.0582708 --0.0137789 -0.0528964 -0.00450042 -0.0473098 -0.0305129 -0.0439092 --0.0326963 --0.0334527 --0.020173 -0.0685538 -0.0384677 -0.106969 -0.0412877 --0.0790985 -0.0221692 --0.00639532 --0.0471119 --0.00412984 --0.127091 --0.0145638 -0.0273619 --0.150646 --0.0468584 -0.0615161 --0.00052228 --0.00692394 -0.0582264 --0.0518942 -0.0657497 --0.0607102 -0.0616264 --0.0282332 -0.0308978 -0.0541263 -0.00622121 -0.0267408 -0.0439269 -0.107903 --0.0786266 --0.116047 --0.0372534 -0.0191541 -0.0216477 -0.0483786 --0.0532043 --0.0035911 --0.0304717 -0.0357468 -0.0228543 -0.0428147 --0.0826278 -0.0205424 -0.0303388 -0.0110599 --0.084551 --0.015818 --0.00189313 -0.0601999 --0.0734222 --0.0607339 --0.00183694 --0.027122 -0.0772266 --0.0135719 -0.0849187 --0.0387814 --0.0799427 --0.0310406 --0.0184677 --0.0132979 --0.0263646 --0.00470105 -0.033116 -0.010894 --0.0483828 -0.0275071 --0.00809157 --0.0960394 -0.0150784 -0.0116689 -0.0576554 -0.0736394 --0.0306538 --0.0377195 -0.068842 -0.0751841 --0.0583788 -0.00667058 -0.0392239 -0.0516343 -0.0144108 -0.0434652 --0.0461556 -0.00832065 -0.0232446 -0.0190625 --0.00257801 --0.0130923 --0.0595736 -0.0638683 --0.068554 -0.062412 -0.0772906 -0.0158593 --0.0431234 -0.0906457 -0.0567988 -0.082151 -0.101311 --0.0499238 --0.0120093 -0.0087741 --0.0629585 -0.00898672 -0.0955837 -0.00179776 -0.00801093 -0.0323881 -0.0211339 --0.0499608 --0.0718824 -0.0161409 -0.00839935 --0.0584422 --0.00197943 -0.0143344 -0.0237181 --0.0329581 -0.078725 -0.0427006 -0.0127179 -0.0573987 -0.0777581 --0.0128574 --0.0177521 -0.0376514 --0.0452535 -0.0599053 --0.000383733 -0.0795171 --0.0261253 --0.00631873 -0.0212437 -0.0809372 --0.0193788 --0.0156041 -0.0712423 -0.0811022 --0.0719823 --0.0200071 --0.0510852 --0.00141906 --0.0225336 --0.00507363 --0.0490968 --0.0274939 --0.0157516 -0.0184872 -0.120604 -0.0524074 --0.0313154 -0.0438163 -0.0148116 --0.0812757 --0.0418036 --0.0409283 --0.0132202 --0.0249846 --0.0937473 -0.0471688 --0.0229945 --0.0599535 -0.0181737 -0.025464 --0.0575614 -0.0839154 --0.0371704 --0.0429456 --0.0104548 --0.0657044 -0.116438 --0.0550479 -0.0617108 --0.082775 -0.0957079 --0.00201982 --0.0607475 -0.00649969 -0.0384521 -0.0039971 --0.0301247 --0.0156156 -0.0368667 --0.0329971 --0.00263288 --0.0718715 --0.0225779 -0.0226193 --0.0642876 -0.0237277 -0.0133449 -0.0265743 --0.0243896 -0.00213008 --0.0735408 -0.0603288 --0.0393994 -0.0655586 -0.149448 -0.0416266 --0.0918937 -0.0709921 -0.0206331 -0.0431692 --0.00746169 -0.11511 --0.0419731 -0.0387613 --0.0430048 -0.0164934 -0.0789132 --0.0333253 -0.00832679 --0.0602816 -0.0110603 -0.0544051 -0.0590461 --0.00487108 --0.0442532 --0.0357016 -0.0686226 --0.0475453 --0.0544173 --0.055314 -0.0372623 -0.0247577 -0.0135608 --0.0346249 --0.0290786 --0.0320403 --0.0933636 -0.0321916 -0.101382 --0.0358022 --0.0218209 --0.00251756 --0.0502068 -0.114101 -0.00703458 -0.0927606 -0.0758972 --0.0254586 -0.0346224 -0.0251426 -0.00730659 --0.00209688 -0.05484 -0.0655269 --0.0481612 -0.0495332 --0.00333031 -0.0488172 -0.0599689 -0.0420198 -0.0187729 --0.0523144 -0.00587663 -0.0441536 --0.00865309 -0.0290774 -0.0637917 -0.0453688 --0.00338506 -0.0197302 -0.0191795 -0.0408567 --0.0385646 --0.0677989 -0.0786453 -0.023314 -0.0722217 --0.0788116 --0.0306047 -0.0472728 -0.074557 --0.0367603 --0.0486571 -0.0220088 --0.0421862 -0.0481636 -0.0341249 --0.0205241 --0.0562129 --0.00694152 -0.0243973 -0.0137367 --0.0808449 -0.0863714 --0.0107817 -0.0302793 --0.0397782 --0.0126439 --0.0228121 -0.0281369 --0.00468669 --0.0181541 --0.0401119 -0.041075 -0.142121 -0.039832 --0.0755372 -0.0361661 --0.0330057 --0.0260451 --0.0764676 -0.0594175 --0.00382572 -0.0790501 -0.118134 -0.0509796 --0.0401512 -0.0351407 --0.00994919 -0.0556535 -0.0778916 --0.0546432 -0.0527247 -0.0242381 -0.00751203 --0.132153 --0.0274015 --0.0170375 -0.0657885 -0.0511697 --0.0184722 --0.0253466 -0.0348855 --0.0171981 -0.000298008 -0.0895837 -0.0173913 --0.00381466 -0.0610908 -0.097495 -0.0225369 --0.0290796 -0.0599632 -0.0276266 --0.0228299 --0.078413 -0.0396414 -0.00978771 -0.0309962 --0.0102427 -0.0137446 --0.00753445 -0.0145414 -0.0144448 -0.0045797 -0.0225547 --0.0677917 --0.00969003 -0.037014 -0.100438 -0.0250328 -0.00080038 --0.068629 -0.0167788 --0.03088 -0.0456894 --0.0619895 -0.00209111 --0.0811325 --0.00195719 -0.0351073 -0.0319147 --0.0477922 --0.0406866 --0.0514353 --0.0572802 -0.0131951 -0.0277901 -0.0120285 -0.0974367 -0.103564 --0.0561435 -0.0258549 --0.0550837 -0.104846 --0.0231434 --0.018085 --0.00332504 --0.0189665 --0.0202303 -0.036235 -0.000638022 --0.0562409 --0.000355126 --0.00827213 -0.0483242 -0.0692873 --0.020604 -0.0768052 -0.049373 -0.0114376 --0.0319015 --0.0109247 -0.015441 --0.0368445 --0.0194806 -0.0614801 --0.0264652 --0.0565594 --0.0214839 -0.0119649 --0.0619959 -0.0541505 --0.0147654 -0.0064352 --0.0509472 --0.0225649 --0.0337338 -0.0200358 --0.0127195 --0.0371376 -0.0995922 --0.0773902 -0.0251842 -0.0480371 -0.00395913 -0.0204364 -0.0142577 -0.0331436 --0.104065 --0.0124941 -0.0148473 -0.0783553 -0.103715 -0.0202667 -0.0187041 -0.00385361 --0.0445182 --0.0194907 -0.0695552 -0.00103233 --0.0636391 --0.020772 --0.0493558 -0.0196324 -0.0163855 -0.010046 --0.0379669 -0.00789091 -0.0228139 --0.0302111 -0.00827227 --0.0224422 -0.0124636 -0.0506303 -0.0648417 -0.0154318 --0.017006 --0.0195613 -0.0251068 --0.0108981 -0.0323869 -0.0198224 --0.0353169 --0.00854507 -0.146372 -0.0634453 --0.0335159 -0.00418261 -0.0867651 -0.0513936 -0.0541467 -0.0228146 -0.0382649 --0.0287641 -0.0154012 --0.00471763 --0.00588677 --0.0302521 --0.0198015 --0.0193555 -0.0137545 --0.00989711 -0.0052912 -0.0840787 -0.025814 --0.076915 --0.00973694 --0.0107369 --0.0799321 -0.0286017 --0.0347555 -0.00261617 --0.00417717 -0.0485754 --0.0281134 -0.0101707 --0.0332464 --0.0282939 -0.0239972 --0.0765408 --0.10875 --0.0389661 --0.0221568 -0.0707359 --0.00163128 -0.0217297 --0.0251463 --0.0806625 --0.0153652 --0.0653817 -0.075953 -0.0776384 --0.0225009 -0.0125952 --0.0408596 --0.0774161 --0.02352 --0.0475958 -0.0286904 -0.00911559 -0.082828 -0.0147704 -0.0531832 --0.0772112 --0.00422096 -0.00804072 -0.0344402 --0.0786602 --0.00453376 --0.0111102 -0.0320212 -0.0581945 --0.0440734 -0.00166576 --0.0214862 --0.0266337 -0.0376187 --0.0925572 -0.0760753 -0.0907185 -0.0822102 -0.0591481 -0.0363702 --0.0612534 -0.0343894 --0.0898973 -0.0754881 -0.0528679 -0.0264071 --0.00237711 --0.0599417 --0.0368106 -0.0313031 --0.0296932 --0.0283957 --0.0323411 -0.0163854 -0.0238908 -0.0281624 -0.0684438 --0.0422307 --0.0537281 --0.0140379 -0.0376385 -0.111868 --0.011886 -0.00439705 --0.0546835 -0.0141193 -0.0502375 -0.0145296 -0.0772219 -0.0319585 -0.00330084 --0.00819988 -0.0245831 --0.037834 --0.0296994 --0.0414249 --0.0314072 --0.0483043 -0.0244805 -0.0716578 -0.0464249 --0.00526738 --0.00808848 -0.0204941 --0.00667523 --0.0262418 --0.0102353 --0.00911968 -0.0713202 --0.0426903 -0.00741455 -0.0492052 -0.0541994 --0.100736 --0.00751127 -0.0933241 --0.00605296 --0.0142309 -0.0489765 -0.0416733 -0.0237731 --0.0303246 -0.0482967 -0.0374688 --0.00143875 --0.00747701 -0.0835967 -0.00660966 --0.0523011 --0.0525207 -0.0366388 -0.0166671 -0.0407253 --0.00225908 --0.0405101 -0.00636346 -0.0448606 -0.00818123 --0.027268 -0.0757745 -0.0889542 --0.022835 -0.0229191 -0.0603602 -0.0165591 -0.038785 --0.100395 --0.0211445 --0.012771 -0.0449896 -0.00221971 -0.00486857 -0.0488054 --0.0288265 -0.021493 --0.0231419 -0.0249546 --0.0474099 -0.0355435 --0.0868577 --0.0612121 --0.0472026 -0.0132958 --0.0438238 --0.0390551 --0.0083014 --0.0108041 --0.0533004 --0.109174 --0.0273721 --0.0085647 -0.0152564 -0.0139162 --0.0212218 -0.0439345 -0.048444 --0.00156283 --0.0754997 -0.00333367 -0.0386572 --0.0421906 --0.00823192 -0.00645861 --0.0526497 --0.0215805 --0.0435427 --0.0447616 --0.0500033 --0.0667572 --0.0238949 --0.0088198 -0.0199224 -0.0704962 -0.0601878 -0.0685529 --0.0257222 -0.00538481 -0.0706147 --0.0444567 -0.0538987 --0.112486 -0.106359 -0.00945314 --0.102546 --0.046253 -0.0494112 --0.0629113 -0.0322977 --0.0094791 -0.0749837 --0.0870604 --0.0555265 -0.0768873 -0.0386553 -0.0172939 --0.00678211 -0.061574 -0.0126316 --0.0152824 -0.0207463 -0.00808655 -0.0312153 --0.0721662 -0.0425316 --0.0067534 -0.034227 -0.0115752 --0.00376394 -0.0809064 -0.042303 --0.00616931 -0.0674149 --0.0373871 --0.0187294 --0.0841288 -0.0611643 -0.0144322 --0.0408623 -0.0190146 --0.0507098 -0.0262944 --0.0713424 --0.0290801 --0.0247928 -0.0220751 --0.145344 -0.00945143 --0.00608678 -0.123146 --0.0210045 -0.0331763 -0.000846261 --0.100413 --0.022486 -0.065033 -0.0511185 -0.00905675 -0.0309434 -0.0140948 --0.0489755 -0.0993293 -0.026657 -0.0746495 --0.00244139 -0.0263389 --0.0536275 --0.0244357 -0.102646 --0.0438992 --0.0786536 --0.0261681 --0.0503301 --0.0325745 --0.00769311 -0.0375644 --0.0235071 --0.0172123 --0.00440577 -0.0569159 -0.011989 -0.118331 -0.0114104 --0.0197921 -0.0817938 -0.0502113 -0.0459686 -0.0254607 -0.00373584 --0.0395034 --0.059308 -0.00347859 -0.0751148 -0.00295809 -0.053834 --0.0550522 -0.0034029 --0.000663942 --0.0843024 -0.0261716 -0.0281533 -0.0208515 -0.0791282 -0.0111433 --0.00372197 --0.0784842 -0.0188154 --0.0531424 --0.0262334 -0.0190068 --0.0749316 -0.0494618 --0.0257358 --0.051017 --0.00455518 --0.0037293 -0.0211293 -0.0118874 -0.0952087 --0.0402079 -0.00935856 -0.102797 --0.0444035 --0.0349719 --0.012735 -0.00732266 -0.108201 -0.0803129 --0.0851621 --0.0774819 -0.0338242 --0.0558266 --0.0152231 -0.0937738 --0.0665688 -0.000438423 --0.0215117 -0.00757573 --0.00964099 --0.0193379 --0.119026 --0.00246003 -0.0141156 -0.0374089 -0.0560408 --0.0171131 -9.80788e-05 -0.04658 --0.0273822 -0.00111427 --0.0169091 --0.00933941 -0.0553434 -0.10304 --0.0111079 -0.00335201 --0.0370971 --0.0229609 --0.0745989 --0.0480937 --0.00827217 -0.0853188 --0.000750411 --0.0158205 --0.0816861 --0.0754429 --0.0389103 --0.00710687 -0.104689 --0.0554423 -0.0141397 -0.016449 -0.0602235 --0.0152428 --0.00638127 -0.00646809 -0.0219472 --0.0255698 --0.0388782 --7.53758e-05 -0.0378423 -0.0133331 -0.0294424 --0.04068 --0.0388443 -0.00414637 --0.04539 -0.0107022 --0.0690911 --0.0930819 -0.0602165 --0.0322633 --0.017326 -0.0374204 --0.0164394 -0.0292416 -0.0429682 -0.10384 --0.013758 --0.0302171 --0.0626836 -0.0410528 --0.0865523 -0.0139785 --0.0120429 -0.0190905 --0.0253963 --0.0403482 -0.00703752 -0.0757901 --0.0802527 -0.00717352 --0.0121787 -0.0521414 -0.0114899 -0.0667977 -0.0623108 --0.0489715 --0.0354942 -0.0686843 --0.0190855 --0.070501 -0.0764759 -0.043493 --0.0401817 -0.0560573 --0.0282514 -0.0420478 --0.052958 --0.0470395 --0.045769 --0.030139 --0.015101 -0.0643963 --0.0299822 -0.0364085 -0.00642734 --0.0541373 --0.0478378 --0.0395475 -0.114373 --0.018759 --0.0781908 -0.0166328 -0.0133812 --0.0847968 -0.0202917 --0.00231416 -0.0262636 -0.025979 --0.00848676 -0.0719275 -0.0248122 --0.0139447 --0.0171933 -0.0693533 --0.0332204 --0.00591031 --0.0206222 -0.0881691 -0.085511 -0.134867 -0.0418473 --0.0404833 --0.0606678 -0.0168731 --0.0720258 --0.0630005 -0.00446239 -0.000857517 --0.0291023 -0.0055726 -0.0187211 -0.0283182 --0.0401662 --0.0216366 --0.012188 --0.0173575 --0.0679582 --0.0773668 --0.0945157 --0.00253283 --0.0309353 --0.0576767 --0.0947842 --0.00615621 --0.0789933 --0.0126141 -0.0442636 --0.0209124 -0.0410813 -0.0757889 --0.0798129 -0.0104631 -0.0719988 -0.0402065 --0.0205607 -0.00386982 -0.0411998 --0.0382759 -0.0226308 -0.0315076 --0.0351625 --0.0480074 -0.0335052 --0.0369789 -0.122862 -0.0181839 -0.0179602 -0.0565082 --0.057315 -0.000463403 -0.0235858 -0.0499823 -0.0676202 --0.0033846 --0.0442078 --0.00943148 -0.0198225 -0.0198701 -0.0672838 -0.0213372 -0.00412194 -0.0798518 -0.0578065 --0.0222888 -0.0388384 -0.00627407 --0.0781347 -0.0894332 --0.0360551 --0.053521 --0.0226976 --0.0697889 --0.00546025 --0.065495 -0.0785999 --0.145621 --0.0309151 --0.0389117 -0.0389776 -0.00441698 --0.0354106 -0.0569737 --0.0829308 -0.00831481 --0.0855037 -0.105458 --0.00131409 --0.0265119 -0.0293375 --0.0568153 -0.0484536 -0.00565359 -0.0653301 -0.062199 --0.0283044 --0.0213869 -0.0498347 --0.0140453 -0.039288 --0.0450885 -0.0425834 --0.0318328 -0.010767 -0.00431428 --0.0245378 --0.0621778 -0.0474799 --0.0580929 --0.0155413 -0.0811408 -0.103539 -0.00429066 --0.013037 -0.00910174 --0.00659087 -0.0102083 -0.0553513 -0.0941166 -0.0756103 -0.0601092 --0.0293607 -0.0347468 --0.0393877 --0.0624774 --0.0257372 -0.0508844 --0.02981 -0.0311361 --0.0295478 -0.0253713 -0.0126417 -0.0315527 -0.0827487 --0.0582196 --0.0153604 -0.057135 --0.0233709 --0.0305735 -0.00130842 --0.00884528 -0.04139 -0.109809 --0.0337128 --0.0484366 -0.0134091 --0.0403885 --0.0247322 --0.0549697 --0.0367769 -0.0232139 --0.0179591 --0.0510949 --0.0140069 -0.00106154 -0.010641 -0.0272588 --0.0211675 -0.0312739 --0.116465 --0.00805026 --0.0558407 -0.0572805 -0.0826886 --0.0268301 -0.0258272 --0.0103933 --0.0165458 --0.0175003 --0.0151077 --0.0388944 --0.0210951 --0.0624379 --0.0152806 --0.0244821 --0.00934425 --0.0465008 --0.0339087 --0.0571148 -0.11099 --0.0884165 -0.0263726 --0.0792009 --0.0340937 -0.106465 -0.00933702 --0.000128712 -0.0368601 -0.0783981 -0.0129871 --0.0739976 --0.0673673 --0.0127411 -0.0293855 --0.0214314 --0.0632774 -0.0176947 --0.0856186 -0.0403609 -0.0164045 -0.0246342 --0.0648315 -0.0390405 -0.00836686 -0.0610234 -0.0804934 --0.135672 -0.0053918 --0.0200377 -0.0357179 --0.0801604 --0.0748982 -0.0857701 -0.0163894 --0.0210801 --0.0790783 --0.0426192 --0.0540599 -0.0291648 -0.0402561 -0.0355816 -0.0099062 --0.0514291 -0.00159837 --0.00618023 --0.0271897 --0.0131646 --0.0194116 --0.101854 --0.0286706 --0.0744975 -0.0109735 --0.00532231 -0.0578516 -0.0714786 -0.0625973 -0.0146627 --0.00798813 --0.0260697 --0.0240402 -0.00435572 -0.0174603 -0.0622438 -0.0126742 -0.0187107 --0.0370486 -0.059626 -0.00338829 --0.0800914 --0.0491047 -0.0282618 --0.0236903 --0.0198744 -0.0133349 --0.0369089 --0.0479268 --0.00877537 -0.0719359 -0.0450951 -0.0591922 --0.019741 -0.0340557 -0.0765393 -0.0210806 -0.0216982 -0.0450611 -0.00382991 --0.0842825 --0.0250916 -0.00832485 -0.0878887 -0.00160352 --0.00210208 -0.000366243 --0.000227107 -0.000131036 -0.00438232 --0.0308921 --0.112475 --0.0408367 --0.00993741 --0.0896903 -0.054639 -0.00850391 -0.041468 -0.0574264 -0.0721027 --0.0398859 -0.029675 --0.0139956 -0.0201154 --0.0501314 -0.0400979 -0.0395135 --0.0408458 --0.0132117 -0.0719881 -0.122476 -0.0103822 -0.0267562 -0.0828819 --0.0558644 -0.0465692 -0.0794439 -0.0124935 --0.0112276 -0.00115066 --0.0359667 --0.100639 --0.054333 -0.0179223 --0.12193 --0.0600659 --0.0922692 -0.0267895 -0.00788748 --0.127603 -0.00908841 -0.0260581 -0.00850919 --0.0701366 -0.066989 --0.0679088 --0.0100161 -0.0494264 --0.0190966 -0.0428875 -0.00113339 -0.0152438 -0.122328 --0.0706099 -0.00833821 -0.00802805 --0.027649 -0.0200955 --0.0455904 -0.00660686 --0.0470623 -0.117698 --0.0654923 -0.0124925 --0.135475 -0.0298263 -0.0520931 --0.0223654 -0.0760295 -0.0644467 --0.0418459 -0.0388036 --0.0257618 --0.0321816 -0.0353024 -0.0403521 --0.0307468 --0.0303513 -0.0956671 -0.001235 -0.0150089 --0.00444556 -0.0604087 --0.0334615 --0.0164349 -0.0231825 -0.0464887 --0.00920051 -0.0219271 --0.0353103 --0.0351671 -0.0526321 --0.0185462 -0.0205408 --0.0253935 --0.0288857 --0.00728414 -0.0196318 -0.0561846 -0.054482 -0.0789083 --0.00879901 -0.0614594 -0.0820295 --0.00673185 --0.0295494 -0.0176093 -0.00265239 --0.0576083 -0.0155597 --0.0136494 --0.020926 --0.0719493 --0.0245517 --0.00321973 --0.0419155 --0.0343436 -0.00174313 -0.0703102 --0.075646 -0.0320813 -0.0194222 --0.0131613 --0.0537762 --0.0394034 -0.0194398 -0.105998 --0.00217307 --0.0614563 -0.0510291 -0.0713446 --0.0116561 -0.0828065 --0.075966 --0.0699697 --0.0157546 -0.0397377 -0.0272535 --0.013085 --0.0419893 --0.142701 --0.121964 --0.0431135 --0.0471496 --0.0458447 -0.0237227 -0.0318697 -0.00175843 --0.0640883 --0.0720622 --0.0524953 --0.0361115 -0.068741 --0.000784673 --0.0768376 -0.00229123 -0.0382002 --0.0101318 -0.0211536 -0.0316233 -0.0154748 -0.00745319 -0.00402773 -0.0271349 --0.00954199 -0.0116908 --0.0877397 -0.0841394 --0.138468 --0.0553867 --0.0215945 --0.120518 -0.0227403 --0.009653 --0.111338 -0.0773639 --0.0815741 -0.0131172 --0.0349492 -0.0255685 --0.047771 --0.0116726 -0.00802005 -0.0759978 -0.00159692 -0.0150703 --0.00680264 -0.0823579 -0.0174609 --0.087797 -0.0618193 -0.0169382 --0.0183098 -0.036361 --0.0341016 --0.0175251 -0.0517673 -0.00255742 -0.0791742 --0.0866156 -0.0468319 --0.0666323 -0.0189961 --0.0023132 -0.0809644 --0.00718855 -0.000652153 --0.0357868 --0.0366266 -0.0286118 -0.00798218 -0.00888355 -0.0570496 --0.0441386 --0.0415758 -0.00732147 --0.0140718 --0.0479829 --0.0254506 -0.0359286 --0.0501099 -0.0393579 --0.0375236 -0.0632459 --0.0247444 -0.0408267 -0.0562432 --0.0112306 --0.0704561 --0.014909 -0.0586998 -0.115294 -0.0396331 --0.0584364 -0.025963 --0.000331542 -0.0110455 --0.0931587 -0.0590244 -0.0913122 --0.04967 -0.139734 --0.0681339 --0.011067 -0.0143265 --0.0680247 -0.0418728 --0.00532747 -0.0317365 -0.0510238 --0.139805 --0.00310939 --0.0194566 -0.020302 -0.0190823 --0.0680451 --0.0722217 -0.0767722 -0.0205156 -0.0373944 -0.0695469 --0.0300556 -0.0525774 -0.065954 -0.0766345 -0.021612 -0.0705319 --0.0604503 --0.021504 --0.0627108 --0.0349353 -0.0102211 --0.0101532 --0.0552269 -0.0355636 -0.0381348 --0.012229 -0.0114756 --0.035998 --0.0300932 -0.0355427 --0.0269337 -0.0265475 -0.0272744 -0.0158026 --0.0397394 --0.0417368 -0.042528 -0.00630912 -0.0392455 --0.0133476 --0.0371197 -0.0513161 --0.0310633 --0.0101148 -0.0354945 -0.0265649 -0.00548066 --0.0784889 --0.0388246 --0.0479753 -0.0195313 --0.12215 --0.0457519 -0.0551387 --0.0298639 --0.014634 -0.0362045 --0.0411044 --0.0357424 -0.094162 --0.00829157 -0.0256573 -0.089898 -0.0558224 -0.0232908 --0.0729372 --0.0614174 --0.0233951 -0.00657035 --0.0349279 --0.0387629 -0.0688289 -0.0477185 --0.014186 -0.0818533 -0.129434 -0.00534498 -0.0119648 -0.00774089 --0.0895543 -0.0745595 --0.00686238 --0.0158239 -0.0060592 -0.0399219 -0.00670149 --0.0896195 --0.00902605 -0.0205654 -0.0079183 --0.0644732 --0.0244947 -0.000447072 -0.0529226 --0.0799268 -0.0835574 -0.0706276 --0.00831392 -0.0824127 --0.0246247 --0.024996 --0.104625 -0.0912015 --0.0285217 --0.0397423 --0.0193161 --0.102345 --0.0748178 --0.00522581 -0.0715848 --0.00281811 --0.0336849 -0.0126259 -0.108497 -0.00256541 -0.0301992 --0.00758697 --0.0761215 -0.0619877 --0.034909 -0.0285519 --0.011708 -0.000449531 -0.0354257 -0.0585354 --0.0743807 --0.0406719 -0.0953791 --0.00705816 --0.0240603 --0.0651195 -0.0740307 -0.0630472 --0.0732651 -0.0337193 -0.0200497 -0.0512855 -0.00433409 -0.0515161 -0.0977963 -0.00306923 --0.0264977 -0.0118553 --0.0752705 -0.0427405 -0.123276 -0.0399222 -0.0254954 --0.0323596 --0.0432534 --0.138996 -0.00269841 --0.0506261 -0.016347 --0.0954606 -0.0104774 -0.137473 --0.0247667 --0.079273 --0.0390494 --0.0080662 -0.0113957 --0.02915 --0.0251738 -0.00280062 --0.0722271 -0.0129332 --0.0332118 -0.0184416 --0.0305489 -0.000854472 --0.047084 --0.0129902 -0.0130875 --0.0752123 --0.0607853 --0.0125499 -0.0258028 --0.0249139 -0.0584443 -0.0317225 --0.0153925 --0.0948328 -0.0235138 -0.0438211 --0.0334485 -0.00160627 --0.0510461 --0.0998273 -0.0875913 --0.0105048 --0.0522653 -0.0337867 --0.0431735 -0.0556876 --0.0636179 --0.0138772 --0.0357595 --0.112273 --0.0304704 --0.0444407 -0.0213769 -0.0110383 --0.0321618 --0.0165375 -0.0165267 -0.0442094 --0.0833503 --0.0379001 -0.144143 --0.0314036 -0.109472 -0.0382219 -0.00585785 --0.0113802 --0.0333203 --0.0117307 --0.00678349 --0.0182096 -0.00173536 --0.0578791 --0.0260942 --0.0210513 -0.0577742 --0.135191 --0.0649991 -0.0597513 --0.0393312 -0.0184009 --0.00300698 --0.110726 -0.0413453 -0.00169958 -0.109423 --0.0112834 -0.0227884 -0.0300942 --0.0088509 -0.059807 --0.0213052 --0.0491229 --0.0128966 --0.0314195 --0.0808255 -0.0329612 -0.0503865 -0.0310284 -0.0244989 -0.0570618 -0.0242548 --0.0705012 --0.0190286 --0.0128998 --0.0529286 --0.00764407 --0.0658396 -0.184496 -0.0680741 -0.0114132 --0.0840673 -0.0728802 -0.0359444 --0.0374654 -0.0145609 --0.00762311 -0.0244121 --0.0546669 --0.0206821 -0.0445984 -0.0450753 -0.024694 --0.128539 --0.0183938 --0.0626678 -0.0355647 --0.0769864 --0.0387368 --0.0555954 --0.00882653 --0.0135908 -0.0274819 -0.0394029 -0.0345355 --0.0166937 --0.103495 --0.0275884 --0.044988 --0.00530875 --0.0159008 --0.0114844 -0.0647301 -0.047061 --0.000493406 -0.012457 --0.0304858 -0.0309387 -0.0143085 --0.0128256 --0.119633 -0.0590876 --0.00229122 -0.00491025 --0.0377755 -0.0182663 -0.000554997 --0.025929 --0.0540131 --0.0396566 --0.000428522 -0.0250557 --0.0088926 -0.0274068 --0.0504386 --0.000517194 --0.102141 --0.0143504 --0.0816525 -0.0300389 --0.0074342 --0.0522777 --0.0425909 --0.038199 -0.0792164 --0.0243574 --0.00239488 --0.0435152 --0.031205 -0.00299176 --0.0110189 -0.02246 --0.00651412 -0.0144283 --0.0233405 --0.0375738 -0.0287291 -0.00116673 -0.0267623 -0.164649 --0.0381126 -0.0208142 -0.0186554 --0.013382 --0.0554889 --0.0505934 --0.0860886 -0.0871077 --0.00295711 --0.0477788 -0.014127 --0.0266595 -0.0148823 --0.053713 -0.0485742 --0.0605929 -0.0108383 --0.0223672 -0.012036 -0.040416 --0.0244623 --0.0692013 --0.018707 -0.0445425 --0.0596491 -0.12223 -0.0715237 --0.0517201 --0.057972 -0.000293413 --0.0612985 --0.0172983 --0.0666807 --0.0600234 --0.000855864 --0.0164653 --0.0376919 --0.0710729 --0.00943728 --0.0648354 --0.0151636 --0.0509594 --0.0067347 --0.0692611 --0.053554 --0.0245379 --0.00932179 --0.0426235 --0.0100349 --0.00310703 --0.0822303 --0.0501708 --0.0434032 --0.0174467 --0.0109981 --0.00213938 --0.0117299 -0.0767948 --0.0560724 -0.0196278 -0.0074577 --0.0441264 --0.0590116 --0.00524593 -0.0733533 --0.028026 --0.0917567 --0.0674394 -0.00616547 -0.057478 --0.00465213 --0.0296006 --0.00110101 --0.0107192 --0.00499027 --0.0418446 -0.0753822 -0.0695833 --0.0358969 -0.104751 --0.0150192 --0.0706213 --0.0261628 -0.078555 -0.0159613 -0.00966782 --0.063114 -0.0954074 --0.108111 -0.0223836 --0.0240567 -0.0210006 -0.0386089 --0.0877756 -0.0116474 --0.133142 -0.0420983 --0.0195818 --0.0765396 -0.0452935 -0.026919 -0.0630299 -0.00129158 --0.00118456 --0.00383094 --0.0520919 --0.0202415 -0.0641973 -0.0282944 -0.0633308 -0.0782655 -0.0362985 -0.078611 --0.107709 --0.0189436 --0.00237228 --0.0336317 --0.0216233 --0.011073 --0.00944624 -0.0652692 -0.0291175 --0.0160796 --0.0332868 --0.00840877 -0.0310958 --0.0426252 -0.0301317 --0.0831025 --0.0299176 --0.0378267 -0.00815814 -0.0633119 --0.00498305 -0.0226881 --0.00724191 --0.0745029 -0.0199289 -0.115893 -0.0935055 -0.0381709 --0.0236196 --0.0161003 --0.0101085 -0.0286345 --0.0745405 --0.0900683 --0.103003 -0.0282955 -0.0225566 --0.0227366 --0.0522559 -0.0350212 --0.0111289 -0.0423451 --0.072693 --0.0894882 -0.000144485 --0.0406691 -0.02139 --0.0262541 --0.0406895 -0.0229334 -0.0147442 --0.0154656 --0.00250512 -0.00627099 --0.0130951 --0.0141655 --0.0323881 -0.00550211 -0.121948 -0.107696 -0.0454497 --0.00743948 -0.00491473 -0.0204244 -0.0299164 --0.0432671 --0.0193079 --0.0321153 -0.0999377 --0.0635823 --0.038488 -0.00610696 --0.0356414 -0.0494419 -0.0363126 -0.0156865 --0.0191682 -0.0435715 -0.0179105 --0.016624 -0.0243927 -0.126231 -0.00555897 --0.0964509 --0.0643231 -0.0172785 --0.0497941 --0.0918591 --0.00744186 -0.0427724 -0.0100076 -0.0438468 -0.0695728 --0.000293535 --0.0528868 --0.0305276 --0.069556 --0.0497231 --0.000538181 --0.0239403 -0.0350308 -0.0169145 --0.0408286 -0.0141882 -0.101809 -0.0688654 --0.0709534 -0.0357093 --0.0412876 --0.0731354 --0.0553523 --0.0303694 -0.0532003 -0.0081191 -0.0058645 -0.0704595 -0.0898685 --0.00241878 --0.0451339 --0.0550679 --0.0461133 -0.0299601 --0.0191166 -0.0212549 --0.0911679 -0.0869172 -0.0837681 --0.0193407 -0.059116 -0.0290785 -0.00946114 -0.0443059 --0.0133401 --0.0356244 -0.035449 -0.0661029 --0.028026 --0.0844183 -0.0436708 --0.123691 --0.04769 --0.0379462 --0.0375563 -0.0176324 -0.00028707 --0.00887035 --0.00489321 -0.0502441 -0.0605486 --0.00269208 -0.0463188 --0.0568159 --0.038225 --0.0304709 -0.0342261 --0.0674436 -0.0224995 --0.00113624 --0.00143512 -0.00260444 --0.034407 -0.0501193 --0.00160124 --0.112565 -0.0760215 --0.0277766 -0.0494966 -0.13485 -0.020247 --0.0135974 --0.0515365 -0.0477782 -0.0633573 --0.0393135 --0.0321614 --0.0573949 --0.118621 --0.0279138 -0.00597946 --0.049758 -0.00451594 --0.0326071 --0.0294173 -0.0216821 --0.0747569 --0.00480172 -0.0694077 -8.89808e-05 --0.00111214 -0.00210905 --0.104989 -0.100706 --0.000821604 -0.0693383 -0.0369728 --0.054043 -0.0394375 --0.0892614 -0.0256235 -0.0361526 --0.0105123 -0.0111567 -0.0457333 -0.0544836 --0.059475 -0.109204 -0.0789509 -0.00651757 --0.100924 -0.0632158 --0.0244749 --0.0288005 -0.0120835 -0.0249763 -0.0375786 -0.0307934 --0.0418549 -0.0457498 --0.0143465 -0.0110448 -0.0473633 -0.00291575 -0.0228817 --0.0700831 --0.00897692 -0.0131348 --0.0985067 -0.146414 -0.056169 --0.000282179 -0.0198473 -0.0307459 -0.0706695 -0.112496 -0.012072 -0.0726125 -0.088203 -0.0223621 -0.00503398 -0.0835838 -0.0576873 --0.0188206 --0.0604178 -0.0179358 --0.0388935 --0.0416641 --0.0482724 -0.0892132 -0.0447555 --0.0519546 --0.0108078 --0.040711 --0.0304903 --0.0582072 -0.0350592 --0.0123408 --0.0582335 --0.0943941 -0.0356933 -0.113641 -0.0793688 --0.0667103 --0.0080358 --0.000454119 -0.0237278 --0.0470571 --0.0502998 -0.0219025 -0.0270721 -0.00792862 -0.0776009 -0.0418487 -0.0205918 -0.0811588 --0.0461732 -0.0706053 -0.0274372 --0.0355738 -0.0124258 --0.064734 --0.0231257 --0.0445511 -0.0572463 -0.0178165 -0.0695948 --0.037452 -0.0129202 --0.00582478 -0.0423313 --0.0159417 --0.0843904 --0.0889127 --0.0149038 --0.0883006 --0.000300563 -0.0137284 -0.0142704 -0.0495918 -0.0815945 --0.0518776 -0.0952961 --0.0121871 --0.0055194 --0.0686804 -0.00347824 -0.0216841 --0.0597065 -0.0282374 --0.0383894 -0.0546213 -0.0359134 -0.00684816 -0.0121401 --0.0135651 --0.116942 -0.0210155 -0.0626635 -0.0479104 -0.0140681 --0.0448467 -0.0123942 -0.0329218 -0.0245987 --0.00429721 --0.00727088 -0.0155153 -0.0486416 -0.0165578 -0.0455135 --0.00160193 -0.00722449 --0.0907786 -0.0112896 -0.107866 --0.0783475 -0.00400836 -0.0283872 -0.00591573 --0.0249408 --0.0294536 -0.0550428 --0.0105282 --0.0648153 --0.0534113 -0.00988658 --0.0576805 -0.0113975 -0.041806 -1.86944e-05 -0.077203 -0.0431855 -0.0203432 --0.0585512 --0.00491896 --0.00525773 -0.0644361 -0.0388743 -0.0683585 -0.023297 --0.0456268 -0.0817381 --0.0338786 --0.0674536 --0.0107919 --0.014271 -0.0948654 -0.014591 --0.00908586 -0.0412407 -0.0256928 -0.027927 -0.0373195 -0.0456027 -0.0944697 -0.028397 --0.0502436 --0.0159643 -0.035201 --0.0401835 -0.0564164 -0.00278466 --0.0225504 -0.0394784 --0.00338743 -0.0128478 -0.0358647 -0.109658 --0.0774674 -0.012008 -0.0211932 --0.00352431 -0.0279973 --0.00394944 -0.0424044 -0.0516237 -0.0345575 -0.00496954 --0.0582556 -0.0666426 -0.00214825 -0.0380303 --0.0307124 --0.0629517 --0.137515 --0.0422019 -0.0424309 -0.105792 --0.0331628 -0.0161991 -0.0179177 --0.0704432 -0.0446144 --0.0238302 -0.0123392 -0.0824941 -0.0399461 -0.0542514 --0.0487956 -0.0880509 --0.0375787 -0.0348053 --0.0133422 --0.0333602 --0.0609268 -0.0438942 -0.00776072 --0.0439876 --0.00629603 -0.0298622 --0.0679931 --0.0750319 --0.000672808 -0.0337782 --0.0267387 --0.00709757 --0.0105866 --0.0911047 --0.000840095 -0.0532082 --0.118019 -0.057344 --0.026856 --0.0562121 -0.0435881 --0.033912 -0.0157628 -0.0354645 --0.0245782 -0.0252637 -0.162638 --0.126692 -0.0192705 --0.0500079 -0.0697106 -0.0347072 -0.00417792 -0.0185624 --0.0360628 -0.00856635 --0.0582142 --0.0371921 --0.0746405 --0.0593304 -0.0354582 --0.0928905 -0.00792491 -0.00287453 --0.0275145 -0.0143938 --0.00786218 -0.0157943 --0.0607879 -0.0166374 --0.0394015 -0.0729567 -0.0249944 -0.0278502 -0.0872931 -0.0652895 --0.0421759 --0.090775 -0.0186569 --0.0296632 --0.05229 -0.0421146 --0.0132715 --0.0407766 -0.0731354 --0.0494532 --0.0147007 --0.0761048 --0.0479586 -0.00488856 --0.0295459 -0.0434605 -0.0413379 -0.01255 -0.0419013 --0.00342562 -0.0240433 --0.0377086 --0.00518346 --0.0559805 -0.0403539 -0.098023 --0.00311552 -0.0111226 --0.0377655 --0.00707418 -0.0233412 --0.0968414 -0.00617343 -0.0169474 -0.0315281 --0.0342453 --0.0360085 --0.0622218 -0.0200421 --0.0285734 -0.0203663 -0.0248229 --0.112055 --0.0377266 --0.039115 -0.0554516 --0.0937325 --0.0220414 -0.0535062 -0.0134555 -0.0408164 --0.0809708 --0.0428179 -0.0388914 -0.00582157 --0.0740298 -0.092697 -0.0209105 -0.0452282 -0.00258062 -0.023823 -0.00637023 --0.0311035 -0.0311199 --0.0472643 --0.0648347 --0.00212445 --0.0242869 --0.0147043 -0.0700947 --0.0975808 --0.0182709 --0.0710158 -0.0711389 -0.0316978 --0.0509395 -0.0039476 -0.0847104 -0.0424158 -0.0425197 -0.0865112 -0.0980861 --0.0192487 --0.0707654 --0.0415545 --0.0308236 -0.037282 --0.0237191 -0.0228652 --0.0657188 --0.00377631 -0.0615178 --0.00651623 -0.0164748 -0.00613274 -0.039109 -0.0878633 --0.00758777 --0.0297069 --0.0489329 -0.0739436 --0.0821577 -0.0184088 -0.0277542 --0.112065 -0.0208902 -0.0084176 -0.0799683 --0.000264254 --0.0535006 --0.0267008 --0.0230343 -0.0431631 --0.0451315 --0.0450163 --0.0386414 --0.0225674 --0.0632483 -0.0128998 -0.000391569 --0.0927679 --0.00240715 -0.00646548 -0.0728435 --0.00295658 -0.00194968 --0.108971 --0.0286921 -0.0712805 --0.0036875 -0.00661907 --0.0316051 --0.0164122 --0.00509005 --0.0383573 --0.0237439 -0.100797 --0.0662609 --0.042893 --0.101553 --0.0210485 -0.0204694 -0.0130664 --0.0276833 -0.00449099 -0.0210152 -0.0782372 --0.0165623 -0.0440181 --0.0894909 -0.05327 --0.00797075 --0.0763129 --0.0573268 --0.0400342 -0.0368404 --0.06043 --0.00470017 -0.00813963 -0.0402721 --0.0622563 --0.110737 -0.0367131 --0.0819341 --0.0576439 --0.0435096 --0.0517199 --0.0238975 -0.0199649 --0.0347697 -0.0166013 -0.0754085 -0.000725287 --0.000897042 --0.0122727 -0.0532309 --0.0113078 -0.00699584 -0.017036 -0.0640065 -0.061257 -0.0677212 --0.106403 -0.0523442 -0.0582437 --0.00238258 -0.0437149 --0.0367032 --0.0027416 --0.0181318 --0.0379634 --0.0544724 -0.059633 -0.0520352 -0.0444115 --0.0094995 -0.0259569 -0.0240037 --0.0519514 --0.0524223 --0.0682089 -0.0609718 -0.000493614 -0.0368367 --0.0754359 -0.0165713 --0.0522462 -0.0107873 --0.0518285 --0.0505945 -0.0818167 --0.0149862 --0.0241322 -0.051258 --0.0162623 -0.0525427 -0.115006 -0.128134 -0.0143043 -0.111124 -0.0238833 --0.113024 -0.0272086 --0.000945994 -0.0401534 --0.0171413 --0.011662 --0.00169718 -0.0571472 --0.0909829 -0.139823 --0.0320816 -0.0202929 -0.0286568 -0.000608003 --0.0610526 -0.0092426 -0.0257797 -0.0396505 --0.021288 -0.00519304 -0.0367304 --0.00933056 --0.00415847 --0.0110656 -0.00288066 --0.0526467 -0.0152549 -0.0247206 --0.0302456 -0.0453729 --0.0289089 -0.0376232 -0.042124 --0.0691496 --0.0412 -0.0428819 -0.0109643 --0.00685083 --0.00397658 --0.0642865 --0.0578926 -0.028835 -0.0153731 -0.0096259 --0.0468234 -0.0215214 -0.0241314 --0.00295667 --0.0667479 --0.0327168 --0.105926 -0.0289958 -0.0288595 --0.0389542 -0.0477605 --0.0337128 --0.0586478 --0.00500532 -0.0240146 --0.0115338 -0.0371059 -0.0328194 --0.0164044 --0.0355539 -0.026597 --0.0204061 -0.0604496 --0.0296416 --0.0825853 -0.0388502 --0.0214213 -0.0543334 --0.0795428 -0.0491728 -0.0526349 --0.0403822 --0.137176 -0.024732 --0.0882259 --0.00268407 -0.0180105 -0.0425632 -0.0976118 -0.0398006 --0.0616158 --0.0872393 --0.00617075 -0.0213137 --0.0453525 --0.029757 --0.0432921 --0.0574423 --0.0387512 --0.00295324 -0.0230855 --0.0349123 -0.00328042 -0.0351234 -0.109741 --0.00480515 -0.0190284 --0.04463 --0.0462543 -0.016481 --0.0977702 -0.0422057 --0.0108065 -0.013859 --0.0238554 -0.01767 -0.00825296 --0.0146076 --0.036976 -0.0588263 -0.0452177 --0.0164193 --0.0406482 --0.0337184 -0.0331605 -0.00522755 --0.0731994 -0.0871942 -0.0602072 -0.0793887 -0.0133477 --0.0572062 --0.0582185 --0.0285386 --0.0407162 --0.0292541 --0.0350795 -0.0142034 -0.00773165 -0.0510291 -0.0344593 -0.000177301 -0.0288608 --0.00628615 -0.0238779 -0.0390448 --0.0284453 -0.082438 -0.0754347 --0.00634669 --0.0118728 -0.0104356 -0.0557981 -0.0400822 --0.0748299 -0.0163644 -0.00961227 -0.028945 -0.0043377 --0.0161582 -0.0889092 -0.0448763 --0.012115 -0.070932 --0.0101691 -0.010038 --0.0117824 --0.0560593 --0.00593225 -0.0231268 -0.00366433 -0.0407383 --0.0967505 --0.0449611 -0.0176154 -0.0225912 -0.0270896 -0.0470864 -0.0126074 -0.0287771 -0.000901311 -0.0819188 --0.0518404 --0.0298973 --0.0331471 --0.0371245 -0.0306799 -0.0248768 --0.0239241 --0.00495473 --0.034852 --0.00451716 -0.0242631 --0.0217857 --0.0235909 --0.00305508 --0.0250573 -0.0692255 -0.00569361 --0.038882 -0.0358005 --0.0498716 --0.0108035 -0.0124836 --0.0235113 -0.0952237 -0.0520259 -0.0875726 -0.036063 -0.0191018 --0.00319994 --0.043494 -0.00562768 -0.0898872 --0.0624408 -0.0430565 -0.0897006 -0.0247357 --0.0554941 --0.0320978 -0.000842055 --0.0684872 -0.0400579 -0.0247869 --0.0140683 -0.0382067 --0.016819 --0.0201765 --0.0166147 --0.0106115 --0.0299863 --0.0184609 --0.132743 -0.038481 -0.066088 --0.0920459 -0.0652788 --0.0573999 -0.0664175 --0.0449675 -0.0390456 --0.0178408 -0.00520961 -0.0647767 -0.0907404 --0.0103484 --0.0344856 --0.00410681 --0.0462705 -0.0040303 -0.0482542 -0.0795249 --0.0376623 --0.0179215 -0.0052964 --0.0195827 -0.0515843 -0.120741 -0.0473233 --0.0641744 --0.0419862 -0.0415719 -0.0282035 -0.073016 --0.0239737 --0.122451 -0.0549932 -0.0751314 -0.0505638 --0.042845 --0.0727124 --0.0673946 -0.0293361 -0.0586075 --0.00814746 --0.0186998 -0.0124037 --0.0449075 -0.0307464 --0.0245685 -0.0202335 -0.0711569 -0.0365112 -0.0201784 -0.0406775 -0.00895061 --0.0248634 -0.0831764 -0.0185759 -0.0182761 --0.0223892 --0.0367624 --0.0569461 --0.012431 -0.00406022 -0.0534796 -0.00403836 --0.00826916 -0.00424244 -0.0499708 -0.0140198 -0.0183529 --0.0455694 --0.0263481 --0.000538217 --0.0469831 -0.0266646 -0.0140518 -0.0169523 --0.118745 -0.0274886 --0.0135666 -0.00365277 --0.00879918 -0.0231399 -0.0459633 --0.028345 --0.0927338 --0.0560966 -0.0702381 --0.0265126 -0.0080565 -0.0564842 --0.0392135 -0.0784008 --0.015229 --0.0726828 --0.0128054 -0.0722303 -0.00599706 --0.00280495 -0.115564 --0.0302228 --0.000971408 --0.0243462 -0.0881635 --0.0658793 --0.0217899 --0.092524 --0.0454494 -0.054712 --0.0122343 --0.0360203 -0.00972204 --0.00344722 -0.0270702 --0.0699518 --0.0406955 --0.0483537 -0.0023724 -0.0464631 --0.0526552 --0.0692985 -0.0277184 --0.0186277 --0.0280676 -0.0571358 --0.0890339 -0.08615 --0.0427545 --0.0220017 -0.0148901 -0.0200465 --0.0373419 -0.0739709 --0.00581384 -0.0258243 --0.0834372 --0.0447017 -0.00707985 --0.0235111 --0.0683458 --0.0974393 --0.0557644 --0.010473 --0.0536867 --0.00876665 -0.00635531 --0.031209 --0.0112334 --0.0640299 -0.0996119 --0.00256625 --0.0520822 --0.0606217 --0.0399887 --0.00174163 -0.0109764 -0.00239673 --0.00807837 -0.0033566 --0.03748 -0.07157 -0.0104844 --0.103063 -0.00885043 --0.0626082 --0.0253897 -0.0879731 -0.130428 -0.0336193 -0.043392 -0.0212224 -0.00633744 --0.0486501 -0.00246254 -0.0229144 --0.025629 -0.0430653 -0.00879081 -0.0217393 -0.0847112 --0.0154265 -0.0173135 --0.0216198 --0.0437359 -0.0911765 --0.000442681 --0.0259875 -0.0098294 --0.0316581 --0.0229614 --0.0221505 -0.030902 --0.019489 --0.0655708 -0.00384256 --0.034888 -0.0431867 --0.0159914 --0.0148054 --0.000450419 -0.0694889 -0.0525986 -0.0663793 -0.0295785 --0.0328776 -0.0160821 -0.09582 --0.030684 --0.0320025 -0.0199725 --0.0091195 --0.0882786 --0.0235994 -0.0373648 --0.0223243 -0.0249672 --0.0467548 -0.039361 --0.0588901 --0.125365 --0.0055753 --0.00274236 -0.0148252 --0.023631 --0.0375833 -0.047576 -0.0646912 --0.0973124 -0.0944488 --0.00241003 --0.00631481 --0.0137069 --0.0254025 --0.026488 -0.0826565 -0.0200269 -0.0358611 --0.0611462 --0.042978 --0.0361355 --0.0018562 --0.0540314 --0.016864 -0.0161151 --0.0179294 --0.00925034 -0.0655318 -0.00128105 --0.017907 -0.0643669 --0.0494327 -0.0169128 --0.0585846 --0.0762256 -0.130035 -0.0102517 -0.0559913 -0.0107367 -0.011435 --0.00253689 -0.00445381 --0.115628 --0.130173 -0.0200876 -0.0154751 --0.0420954 --0.0649731 -0.0138008 -0.0386857 -0.00732719 --0.0221639 -0.0426246 -0.0358037 -0.0346197 -0.0243583 -0.0550972 -0.0197452 -0.0216041 --0.0476434 --0.0460822 --0.00765417 --0.0798128 --0.0210132 --0.0484821 -0.0898719 -0.0588043 -0.0103126 -0.0166141 -0.0499842 -0.132009 -0.041512 --0.0744565 -0.0165796 -0.0182829 -0.0181899 -0.0209677 --0.0559252 -0.0676933 --0.0549174 -0.0735931 --0.0165273 --0.0293156 --0.0373402 -0.0579989 -0.0344766 --0.0236596 -0.0109211 --0.023131 -0.0111149 -0.0353439 --0.0067239 --0.0124208 --0.00382078 -0.0184558 -0.0320079 -0.0441629 --0.0411914 --0.0440319 --0.0430516 -0.0829242 --0.0211169 --0.0123437 --0.0101612 -0.0317023 --0.0457438 -0.000460428 --0.115955 -0.0928482 --0.0414657 -0.0668106 --0.00408699 -0.00428238 -0.00270654 --0.00549306 --0.0730176 --0.0796425 --0.0226945 -0.0275797 --0.0933149 -0.0666183 --0.0711365 --0.0589391 --0.00689903 --0.0290206 -0.0442323 --0.00255672 --0.00979677 --0.0953671 -0.0900788 --0.03553 --0.0348959 --0.0550392 --0.115082 --0.0195269 -0.063661 --0.0135911 --0.0375488 --0.0204414 --0.0466889 --0.00955681 --0.0100311 --0.00133199 -0.0593122 --0.0597775 -0.00617788 --0.0297912 -0.0741678 --0.00267519 --0.02201 --0.069663 -0.00165815 -0.0605748 --0.0241135 -0.0406444 --0.0528582 -0.0430583 --0.000391892 -0.0471571 -0.00320087 -0.0413065 -0.121488 --0.00837186 -0.0373865 -0.00476387 -0.0231187 --0.00356293 --0.0319595 -0.0432297 --0.00498685 -0.0669506 --0.0137645 --0.0794072 --0.0481812 -0.0185617 --0.0410255 --0.070532 -0.0257589 -0.0621376 --0.0390518 --0.0653705 --0.0771395 --0.032358 -0.0539411 -0.0253384 --0.0461632 -0.0919555 -0.0274274 --0.109969 -0.043517 -0.113067 -0.0333525 --0.0878403 -0.0719958 -0.0165093 -0.0227354 --0.0401011 --0.0170738 --0.00951421 -0.0499843 -0.013458 -0.0113972 -0.0853929 --0.0406854 --0.0107498 -0.0216276 -0.0408795 --0.0601728 --0.0563658 --0.00600114 --0.0470287 -0.00165042 -0.0370391 -0.0345899 -0.0211314 -0.132582 --0.0581859 --0.00953301 --0.0318652 -0.0765059 -0.03117 --0.00797202 -0.0677048 --0.0405083 --0.0192825 --0.0434135 --0.012174 --0.0275142 -0.0958216 -0.128027 -0.028803 -0.02082 --0.0236453 -0.0351854 --0.0873713 --0.0289507 -0.059235 -0.00117548 --0.022241 --0.0422364 -0.0166762 -0.0486903 --0.00536861 --0.0548416 -0.0146705 -0.0141554 -0.027949 -0.0630374 -0.0149588 --0.000704615 -0.0258342 --0.0100883 -0.0480229 --0.0821927 --0.0409616 --0.0273373 --0.0137463 --0.0238412 -0.0710793 --0.0261076 -0.04992 -0.00236257 -0.0350817 --8.55968e-05 --0.0509836 -0.0618503 -0.0587671 -0.0192207 -0.0386948 --0.043417 -0.0356242 --0.0247661 --0.066202 --0.0135409 -0.0181455 -0.0556905 -0.00449223 --0.0156967 --0.0257909 --0.0130863 --0.0206185 --0.00700535 --0.00386907 -0.00416096 -0.0141562 -0.0234571 --0.0111471 --0.047925 -0.0114658 -0.0325452 --0.0824775 -0.0783321 --0.0409279 -0.0108934 --0.0422675 --0.100921 --0.0285335 -0.0741002 -0.0523688 --0.0913364 -0.00693057 -0.0113994 -0.00955568 -0.0406287 --0.031093 -0.0506763 --0.0238962 -0.0731185 --0.0336953 -0.0183086 --0.000183413 --0.0313907 -0.00412041 -0.0505289 --0.00584364 -0.0208805 -0.0180192 --0.00150666 --0.0696551 -0.00167411 -0.0930679 -0.046856 -0.0643142 -0.0525432 --0.0349923 -0.0761688 -0.0458868 -0.0028744 --0.0599304 -0.0116393 --0.0646935 --0.0533516 -0.0211854 --0.0089407 -0.112565 --0.019928 -0.0444917 -0.0650789 -0.101446 -0.0061145 -0.0336565 --0.0570559 --0.0453704 --0.121958 --0.0102223 -0.00270265 -0.00844515 --0.00111617 --0.0607859 --0.038968 --0.0379157 --0.0123224 --0.0686448 -0.0178899 -0.0415282 --0.0479949 --0.075682 -0.0808895 --0.061987 --0.108932 -0.00967422 -0.0203634 --0.149615 --0.104244 -0.0285512 --0.0207925 -0.0168593 --0.0252475 --0.0646705 -0.0121769 --0.0187293 -0.119132 -0.0414895 -0.012761 -0.00632512 --0.0390345 --0.190453 -0.0165989 -0.062947 -0.0242445 --0.00298968 --0.0190943 --0.0338781 --0.00521991 --0.0677107 -0.0331248 -0.0388472 -0.0405449 --0.0511384 --0.0678316 -0.0390858 --0.0351209 -0.0437141 -0.0180134 -0.0420262 --0.0709429 --0.0227849 -0.000336811 --0.000411246 -0.0477844 -0.00688695 --0.0102799 --0.0282341 --0.0680137 -0.0324474 -0.0114302 --0.0807224 -0.0229084 -0.0929818 --0.0199968 -0.0291852 -0.0114238 --0.0423438 -0.0153154 -0.0836309 -0.0242628 --0.0014686 -0.0160845 --0.0607429 --0.13535 -0.0531754 --0.0422474 -0.0440573 --0.109041 -0.0455732 -0.0207228 -0.0161411 -0.0286979 -0.0755382 --0.000296895 -0.030475 -0.0357605 --0.0018941 --0.0388961 --0.00168327 --0.0292563 --0.111572 -0.00228235 -0.00807201 -0.145452 --0.0403557 --0.00896546 --0.0334692 --0.00502021 --0.0258268 -0.0336226 --0.0941588 -0.0138782 --0.0829645 --0.0319724 -0.0381507 -0.024748 --0.0134399 -0.0433466 --0.0208509 -0.0088142 --0.00642189 --0.00756695 -0.0337706 --0.0188545 -0.0168291 -0.0333698 --0.00507515 -0.0299593 --0.0789287 --0.0068778 -0.0113049 --0.0997144 --0.0383583 --0.00671589 -0.00359501 -0.0779732 -0.00380721 --0.0675724 --0.050779 -0.00439729 -0.0288914 -0.00591107 -0.0614253 -0.0346426 -0.0393711 -0.0728531 --0.0255399 --0.0588985 -0.058837 -0.00888586 --0.0626458 -0.182948 --0.0564327 -0.0570564 -0.0214807 -0.0587548 --0.00727446 --0.016582 -0.000946529 --0.00454974 --0.0670891 -0.0101852 --0.0110352 --0.0332803 -0.0136771 --0.0291177 -0.0464384 --0.0626933 -0.0378856 --0.0162124 -0.0517498 -0.126806 -0.0114082 --0.00380737 --0.0228839 --0.0300032 --0.0320907 -0.054598 -0.0124062 -0.00915856 -0.0243559 --0.0279748 --0.0490673 -0.0136247 --0.00312086 --0.0116441 --0.0372257 --0.0112848 -0.00179355 --0.013148 -0.0135379 -0.0133644 --0.00941854 --0.024688 --0.0460024 -0.052403 -0.0154822 --0.0570215 --0.0281573 --0.0114131 -0.00479363 -0.103022 --0.00663167 -0.0596558 -0.0137081 -0.0189195 -0.0204059 -0.0435005 -0.102323 --0.00337604 --0.0525428 --0.0480767 -0.0332283 --0.0138316 -0.012204 --0.00465346 --0.0354085 -0.00850281 -0.00884497 -0.0926471 -0.0100351 -0.0171223 -0.00487521 -0.0237379 --0.0339331 -0.00317686 -0.0584228 --0.0340776 -0.0486746 --0.00285972 --0.0229243 --0.0496343 -0.0483632 -0.0582757 --0.0379319 --0.104169 --0.00246197 --0.099661 -0.068474 -0.111977 -0.00942874 --0.011581 -0.0221875 --0.0434428 -0.0724967 -0.0260718 --0.0857149 --0.0342864 -0.0285849 -0.0174037 --0.0143555 -0.00784194 -0.00585967 --0.0129744 --0.069334 -0.020347 -0.0344214 --0.0310959 -0.0374967 -0.0567483 --0.0557858 -0.0110061 --0.00589032 -0.0269458 -0.0683339 --0.053213 -0.0157707 -0.0429392 --0.0472682 --0.0700033 -0.0317283 --0.103819 -0.112987 --0.038345 -0.0281852 -0.0372526 -0.0248695 --0.0496868 --0.0508489 --0.0665618 -0.00381191 --0.00279455 --0.0723359 -0.0370277 -0.0485468 --0.0306206 --0.00116969 --0.020832 --0.0276591 --0.0488884 --0.0427209 -0.0763503 -0.0890205 -0.00089871 --0.0245186 -0.0243497 --0.0878324 -0.0584599 -0.016843 -0.0200124 -0.00985619 -0.0251844 --0.0763568 -0.0086812 -0.040171 -0.0446523 --0.0419026 --0.0148412 -0.0151451 -0.0710437 -0.0424656 -0.0104685 -0.0117613 -0.0765158 -0.00211096 --0.0175032 -0.0630063 --0.037722 --0.0115097 --0.0248328 --0.0515039 --0.0213211 -0.10251 --0.0167372 -0.0372744 --0.0399666 --0.063074 --0.0864441 --0.0203324 --0.0105551 -0.109077 -0.0761268 -0.0208627 --0.089952 -0.00652803 --0.0563816 --0.0327429 --0.0449798 --0.0293874 --0.033644 --0.0144415 -0.00772167 --0.0264315 --0.0623582 --0.00143206 -0.0303002 --0.0264569 --0.0598737 -0.0607999 --0.021923 -0.0536802 -0.0804956 -0.0272634 -0.053787 -0.0121245 --0.0645104 --0.0352677 -0.0166892 -0.00938158 --0.0495662 --0.0512965 --0.06229 -0.0343222 --0.0251325 -0.0659311 -0.085716 --0.00124915 -0.0264326 -0.0175269 --0.0255848 --0.0929507 -0.0685902 --0.0389958 -0.0152452 --0.0328121 --0.0160887 -0.0213692 -0.0128713 -0.00294858 -0.0682702 -1.87775e-05 -0.00751586 --0.068751 --0.0673277 -0.0285493 --0.000699284 -0.0576207 -0.00874359 -0.0475577 --0.0299039 -0.0767718 -0.0685967 -0.0367815 --0.0139928 --0.0830528 -0.0282028 -0.0272432 -0.0296949 --0.0199348 -0.0165477 -0.0429876 -0.0101995 --0.0984655 --0.0262775 --0.0804284 --0.0440345 -0.0743362 -0.0929406 -0.0245657 -0.0657379 --0.0468154 --0.0895113 --0.0679621 --0.0586103 --0.0137985 -0.0937115 -0.110422 -0.0179028 --0.0620644 -0.0115255 --0.00518026 --0.00844337 --0.0110549 -0.0521794 -0.0381088 -0.00551678 -0.035874 --0.0709166 -0.102356 --0.0391349 -0.0640995 -0.0326085 -0.0231831 -0.0265938 -0.000745355 --0.0839182 --0.00560401 -0.0900358 --0.0129088 -0.0220375 --0.026979 -0.02814 -0.0166638 --0.0297647 -0.0249953 -0.0419616 --0.0553862 -0.000937844 -0.0259788 -0.0931234 -0.0129309 -0.013776 -0.0161312 --0.00442685 -0.0261226 -0.0998278 --0.0581949 -0.0908143 --0.0121875 --0.0087363 -0.0451398 -0.0155588 -0.0110171 --0.00812956 -0.0569777 -0.031265 -0.0486274 -0.0393087 -0.0790658 -0.011481 --0.0196006 --0.0109821 -0.0220266 --0.0160215 --0.0262696 -0.0803447 -0.0053275 -0.0390818 --0.028561 -0.0519855 --0.00399419 --0.014836 -0.0633146 -0.0284495 --0.0407638 --0.0257408 -0.0190699 --0.0437204 -0.0184448 -0.0322984 --0.123756 --0.109353 -0.00403452 -0.0427528 -0.0400652 --0.0253039 --0.146339 -0.0357413 --0.0224906 -0.042618 -0.00175531 -0.0109312 --0.0517762 -0.0556057 --0.0414606 -0.0331252 -0.00547755 -0.071516 -0.02077 -0.0515511 -0.0153213 -0.034493 --0.00453054 --0.0382648 -0.0544402 --0.0347315 --0.0894672 -0.0433377 -0.0131214 --0.00757624 --0.0707653 -0.0456018 -0.049318 -0.00695086 -0.0251536 --0.00368742 --0.00377972 --0.00137314 --0.0165668 --0.0226053 -0.101773 --0.0576977 -0.0153822 -0.0707905 --0.0421617 --0.007386 -0.0608485 -0.114456 -0.0105463 --0.0668324 -0.0278205 -0.0579809 --0.000633175 --0.0904178 -0.00694148 --0.0520028 -0.0843646 --0.0155516 -0.0885219 -0.0421215 --0.048369 -0.0315922 --0.0134528 -0.0578575 -0.0112608 --0.00292126 -0.11144 -0.0419729 -0.00375505 --0.115527 --0.0220673 -0.0436344 -0.0398193 -0.0102578 -0.0522808 -0.069289 -0.085662 -0.0744936 -0.00310435 -0.0576448 -0.0263905 --0.0345111 --0.0815907 --0.0244607 -0.0387996 --0.0152219 --0.0367241 -0.0142975 -0.00847248 --0.041684 --0.0512865 --0.0964359 -0.0458335 --0.0549742 -0.00707641 -0.0315095 -0.0629343 --0.0426376 -0.00674401 -0.0648178 -0.01784 -0.048019 -0.0433814 -0.0723129 -0.0288509 --0.00493966 --0.0361806 -0.017784 --0.0233256 -0.0525176 --0.0687095 --0.0378616 -0.00257954 -0.0153884 -0.00169442 -0.0133008 -0.0310037 -0.0391471 --0.00335024 --0.010147 -0.0152914 -0.0881046 --0.0684164 --0.0474314 --0.0193132 --0.0258229 -0.113696 -0.0129532 --0.0462449 -0.0158678 -0.104765 --0.0567108 -0.0609448 --0.0131332 -0.0182486 --0.0508902 -0.030209 --0.00443068 --0.0264159 --0.0228162 --0.01596 --0.00848243 -0.00806229 -0.0646238 --0.100507 --0.0159081 --0.0749166 -0.0101544 -0.0949585 --0.0425193 -0.00136236 -0.0423352 --0.0479343 -0.0428637 -0.0133001 --0.0673097 --0.105706 --0.0777768 --0.0333145 -0.0894405 -0.0117411 --0.00524847 -0.0209947 --0.0566101 --0.0210024 --0.0515949 -0.022536 -0.0164812 --0.0473223 --0.086139 -0.0845306 --0.0215946 -0.000187962 -0.0494688 --0.00818911 -0.0537283 -0.00478834 --0.00410396 --0.0250748 --0.0399555 -0.0539756 --0.00945471 -0.055199 -0.0315921 --0.0626327 --0.0236987 --0.0821552 -0.110374 -0.128377 -0.0823126 -0.0494825 -0.0184728 -0.0429728 --0.100648 -0.135723 -0.118704 --0.015997 --0.000675628 --0.0210013 --0.00373115 -0.0852835 -0.0174676 -0.0808823 --0.00531942 --0.120102 --0.0708018 --0.0124217 -0.0618871 --0.0882822 -0.0764515 -0.0397297 -0.0302939 --0.0551218 --0.00657718 --0.0111965 -0.0853192 --0.00296064 --0.00882224 --0.0392409 -0.0258598 -0.0440571 -0.071498 -0.0165509 -0.0129482 --0.000549926 --0.0760085 -0.0349727 -0.0279947 --0.0243864 -0.0406374 --0.038766 --0.0298806 -0.00513645 --0.00717099 -0.0177441 -0.0502269 --0.0269085 --0.0168608 --0.00243108 --0.0682858 -0.053909 -0.00223444 -0.0963996 -0.0686244 -0.00572324 -0.0417935 -0.03615 -0.00965643 -0.0137795 -0.0756091 -0.0124633 --0.0174067 -0.016698 --0.0780848 -0.00836334 -0.0101672 --0.0860082 -0.0959393 -0.0926299 --0.0469673 -0.0597968 --0.0560221 --0.0212809 -0.0708442 --0.062359 --0.0695714 --0.00659002 -0.00608061 -0.060092 --0.0458167 --0.0779237 -0.0250954 -0.00321039 --0.0232201 -0.0345204 -0.00233961 -0.0650824 -0.00109187 -0.0201392 --0.0435655 --0.0263957 -0.00388459 --0.0270327 --0.0149073 -0.0212548 --0.00295508 --0.0189025 -0.0643916 --0.0468661 -0.0151581 --0.0742945 --0.0421554 --0.00839354 -0.0177528 -0.0774196 -0.094927 -0.0375251 -0.00512333 -0.0108688 -0.0665203 -0.032224 --0.0617402 -0.0147492 -0.0238132 --0.0644074 -0.00841167 --0.0465545 -0.0124081 -0.0179402 --0.11483 --0.0534713 --0.025202 --0.0399538 -0.0390227 --0.0460814 -0.0128132 -0.0373651 --0.0184597 -0.0405202 -0.0910694 --0.00409616 -0.0729656 -0.0602499 -0.0722853 --0.00361938 --0.00600953 -0.0944159 -0.0367086 -0.0291512 -0.0299923 --0.0301617 --0.0119316 --0.0379366 --0.0185608 -0.0182581 -0.0440046 --0.070747 -0.0444624 --0.0374733 -0.0355693 -0.0231682 --0.0346044 --0.0269231 -0.017072 --0.0105566 --0.0413104 --0.0267357 --0.00955421 -0.0417453 --0.0616581 --0.00504696 -0.0515454 -0.0189614 -0.0390562 --0.000466543 --0.0258791 --0.0237236 -0.111738 -0.0507758 --0.0917349 --0.0775221 --0.0667019 --0.0308138 --0.0345191 --0.0595373 --0.00893307 --0.0900208 --0.00684157 --0.0208435 --0.0120244 --0.0646023 -0.0232191 --0.0556739 --0.0387434 --0.0401034 -0.0331535 -0.0266073 -0.0233572 -0.107658 -0.0755107 --0.0243743 -0.0920584 --0.0548363 --0.0799218 -0.0461868 --0.0017383 --0.0406683 --0.017188 -0.0387768 --0.0574984 --0.0289917 --0.0207404 -0.00803841 -0.0179617 -0.0132986 -0.0177722 --0.0336503 --0.0834537 -0.00146338 --0.0118028 --0.0125739 -0.00865024 --0.0176276 -0.135925 --0.00297554 --0.0321795 -0.0235028 -0.155024 --0.0204386 -0.0248446 -0.0510565 -0.0194266 -0.045238 -0.0602414 -0.0439491 --0.0190167 --0.0311731 -0.00124384 -0.0137021 --0.0837746 -0.0198765 -0.00783711 --0.032105 -0.141472 --0.0244917 --0.0775539 --0.165358 -0.0378183 --0.0313743 --0.0109105 -0.0125107 -0.0328339 -0.0771114 --0.0540968 -0.0960533 -0.0879444 --0.0215231 --0.0209908 --0.088898 --0.0565175 -0.0458602 -0.0554673 -0.069662 --0.00718071 --0.0289817 --0.0635558 --0.0151498 -0.0239751 -0.106366 --0.00784698 -0.0148812 --0.00565436 -0.0385656 --0.08772 -0.0527996 --0.00488122 --0.052445 --0.0723403 -0.0432779 -0.0330325 -0.00862815 -0.0313506 -0.0914792 --0.0232246 -0.0377794 --0.110914 -0.071646 -0.024106 --0.0174511 -0.0165842 -0.0812097 --0.107968 -0.0135181 --0.0574526 -0.112653 --0.0386609 --0.00400395 --0.0597447 --0.0132812 --0.051497 -0.0485414 -0.0450987 -0.00613567 -0.0203769 -0.00240906 -0.0607279 -0.0133846 -0.0338321 --0.0158287 --0.00670085 -0.0444628 -0.0537277 -0.014907 -0.0899196 --0.0857544 --0.0478354 -0.00559676 --0.0272676 -0.0361768 -0.0209953 -0.0156726 --0.035725 --0.0043776 -0.00195087 -0.00956944 --0.0237132 --0.0490289 --0.014555 --0.00440061 --0.0854834 --0.0262023 --0.0100214 --0.119959 --0.0343902 -0.0634869 --0.0248838 --0.00933801 -0.0655937 -0.0453682 -0.0162324 --0.0518343 --0.023023 --0.0390521 --0.019213 --0.00166832 --0.0119036 --0.00664924 -0.0391538 --0.115169 --0.0192296 --0.0653729 -0.0166853 -0.0548437 --0.110425 -0.0340283 -0.0131865 --0.0579434 -0.0355062 -0.0589716 -0.0221364 -0.0336151 --0.0618661 --0.0136238 -0.00146189 --0.107728 -0.0756223 --0.00503814 --0.0241248 -0.029044 -0.0895732 -0.0375783 --0.0273199 -0.018564 -0.0103351 --0.0512667 --0.0712824 -0.0301309 --0.0340671 -0.0177497 -0.0483616 --0.0767666 -0.0579132 -0.0577466 --0.0352143 -0.0253851 -0.00866932 -0.0544028 -0.0540776 --0.044629 -0.0519534 --0.0588687 -0.0855051 --0.0314919 -0.0340588 --0.0450919 -0.00588542 -0.014693 -0.0161348 -0.0544865 --0.0111216 --0.0628805 -0.035621 -0.0159665 -0.00328059 --0.0355289 --0.111634 --0.0109774 -0.059502 -0.0676591 -0.0959803 -0.0275508 -0.0215162 --0.0288167 -0.015624 --0.0487496 --0.031259 -0.0839745 --0.00719368 --0.0915904 --0.0416152 -0.0155497 --0.0756266 -0.0567329 --0.128007 -0.0961847 --0.103471 -0.0624256 --0.0189872 --0.0701001 -0.0175819 --0.0115403 -0.0453413 -0.0930677 -0.111379 --0.0342524 --0.0247037 --0.0217899 --0.0300195 --0.0496698 -0.00612878 --0.0194506 --0.0358156 -0.0865746 --0.0427982 --0.0883189 --0.0146553 -0.0266405 --0.015973 --0.0319814 -0.0246642 -0.100926 -0.00564488 -0.0317431 -0.0184009 --0.0115395 --0.00230611 --0.0140249 -0.0757892 -0.011996 -0.0143605 -0.0712498 -0.00464366 --0.0109129 --0.0144486 -0.00650002 --0.087732 --0.0383644 -0.0343158 -0.011308 --0.0363926 --0.0615752 -0.0479781 -0.0247946 --0.0281226 --0.041213 --0.0308643 -0.060197 --0.0461334 --0.0361422 --0.0345563 -0.0521449 --0.00171798 --0.0242414 --0.0458642 -0.0714969 -0.0383363 -0.0124598 --0.051621 -0.0103646 -0.0611074 -0.0381812 --0.0508547 --0.0443573 -0.0466303 --0.0291897 --0.0210858 --0.0232713 -0.046039 -0.00886368 --0.0692653 --0.0505891 --0.104199 -0.0512383 -0.108907 --0.0344155 --0.0271503 --0.00852977 --0.070442 -0.0771897 --0.0130141 -0.0935207 --0.0604875 -0.0280755 --0.0163443 -0.0150875 -0.0611752 -0.0648839 -0.0229854 -0.0475278 --0.0463111 -0.025751 --0.0120621 -0.011214 --0.0144399 -0.0761955 --0.00168684 --0.0224564 --0.00486186 -0.0694858 -0.0266616 -0.0643731 -0.00827429 --0.115149 --0.0207738 --0.034009 --0.0393827 -0.00830997 --0.0490518 -0.0154363 --0.00457841 -0.0249082 --0.047985 -0.100745 --0.0874391 -0.0428541 -0.094463 --0.0749522 --0.074042 -0.00586971 -0.0736858 --0.0453599 --0.0310103 --0.0649378 --0.0134663 --0.0379766 -0.0118509 --0.0461003 -0.0341477 -0.0472589 --0.0202067 --0.0502739 --0.0583771 --0.0406137 --0.0107746 -0.0294124 --0.0744091 --0.0150996 -0.0745198 --0.0401991 --0.0740255 -0.0589651 -0.0786913 -0.0221759 --0.076192 --0.0294166 --0.1275 --0.0216514 --0.0616371 --0.00238912 --0.0440226 --0.0483254 --0.0293788 -0.014864 -0.0249766 --0.00766326 --0.0275513 --0.0814465 --0.0125408 --0.0273807 --0.011423 --0.0352718 --0.0935458 -0.0794084 -0.034603 --0.0144296 -0.042731 -0.0689977 --0.0151495 --0.0683012 --0.0128117 -0.0786442 --0.0479108 -0.0509835 -0.042722 -0.0309327 -0.04682 --0.000490306 --0.0127387 --0.0275334 -0.059751 -0.0152922 -0.0352495 -0.0291338 -0.0177105 --0.0511107 -0.0282832 --0.0426464 -0.0104049 -0.0337041 --0.00575786 -0.0435116 --0.0526395 --0.0461761 -0.0350977 --0.0210677 -0.0562249 -0.0131764 --0.0235188 -0.0627435 -0.0587457 --0.0628809 -0.056358 --0.0395413 -0.0232391 --0.00275849 --0.0566283 -0.036044 --0.0606737 -0.119286 -0.0287653 --0.0900432 --0.0630213 --0.00243081 -0.0719677 --0.0180108 -0.0154368 --0.0339737 --0.00678744 -0.0678054 -0.00158496 -0.0737326 -0.040277 -0.0336854 -0.0372078 --0.00406445 --0.00717139 -0.0698978 -0.0437186 -0.0593388 -0.139994 -0.0854926 --0.00530989 -0.0465415 --0.0530622 -0.0800876 -0.0346478 --0.0628198 --0.103516 -0.0375847 -0.0366159 --0.0349077 -0.00755423 -0.0151398 -0.0369948 -0.0218215 --0.0141 -0.0469651 --0.0112767 -0.00476107 --0.0267032 --0.0519404 -0.043409 --0.0356486 --0.038646 -0.0122791 -0.10384 --0.0111589 --0.0484643 --0.0100697 --0.0125193 -0.0906121 --0.00621241 --0.0466724 -0.0340068 -0.0278782 --0.0198005 -0.0536275 --0.0433357 --0.0226942 -0.0158142 --0.0105393 --0.00904788 -0.0592961 --0.0397352 --0.0514524 -0.0230553 -0.021651 --0.00108725 -0.0437906 --0.0539384 --0.0231487 --0.059049 --0.00220614 --0.032822 --0.00831302 --0.0153617 -0.0140454 -0.0407563 --0.0450172 -0.0690014 --0.0184312 -0.0294598 -0.0273863 -0.0603105 -0.0275908 -0.0775635 --0.061039 --0.0374544 -0.00582648 --0.0387481 --0.0221087 --0.130334 -0.00354398 --0.0162093 -0.0373965 -0.0279346 --0.005315 -0.0282879 -0.0953675 -0.0121053 -0.0158677 --0.0528818 -0.03082 --0.0943061 --0.0437064 -0.0360586 --0.0410612 --0.0649116 --0.0448959 -0.038459 -0.0160137 -0.0496105 -0.0220758 --0.0172958 --0.0496124 -0.0781187 -0.00894869 -0.0313115 --0.0145108 -0.05275 --0.0127187 --0.0729413 --0.0250734 --0.0390652 -0.0107074 --0.0193648 -0.0193708 --0.0194923 --0.0286436 --0.0420897 --0.0276987 -0.0546863 --0.0249 -0.0535054 --0.0252226 -0.0207115 --0.0259308 -0.00270052 -0.00505957 -0.0672025 -0.00672234 --0.0381541 --0.0667855 -0.00979876 -0.0462414 -0.029147 --0.0348213 --0.0465705 -0.0584292 --0.0561451 -0.0582525 --0.0498561 -0.00675115 -0.00515444 -0.125122 -0.0118867 --0.0232714 --0.000441307 -0.0141642 --0.0312894 --0.00674557 -0.0107043 -0.00076016 --0.0585568 --0.0480287 -0.0590603 --0.00430262 -0.0238845 -0.0192634 -0.0608413 --0.0896535 -0.0259253 -0.0171762 -0.0137884 --0.0565181 -0.0200856 --0.0174996 -0.134183 --0.0621028 --0.0271065 -0.0312549 --0.0708361 --0.0240933 -0.0270495 --0.0508805 --0.00863622 --0.0412867 -0.0423842 --0.0938159 --0.010623 -0.0484604 --0.0810958 -0.0820301 --0.0506299 -0.00832134 -0.0734058 -0.0157445 --0.0352607 -0.103533 -0.0184719 -0.0155525 --0.0306163 -0.0360987 -0.0946279 --0.0155692 -0.0465448 --0.0872021 --0.0450171 --0.062988 -0.0300525 --0.0111992 --0.0212616 -0.00115146 --0.00510569 --0.0203916 --0.020483 --0.0141729 -0.0631954 -0.149571 --0.0474896 -0.0536012 -0.0389219 --0.038233 -0.0533135 -0.0127673 --0.0288945 -0.00629805 --0.0231982 --0.0375624 --0.0764309 --0.0519345 --0.000883055 --0.0357361 -0.0432342 -0.0397982 --0.00492929 --0.0366853 -0.0331207 -0.0376048 -0.00845431 -0.0653618 -0.00725761 --0.0302252 --0.0417907 --0.0713088 --0.0436048 --0.113166 -0.0540557 -0.0190533 --0.0168538 --0.0151741 -0.0123324 --0.0090299 -0.053758 --0.0388844 -0.0346782 -0.0398098 -0.00211623 -0.0124396 -0.0314833 -0.0583314 --0.059104 -0.0374969 -0.154499 -0.0557104 --0.0213655 --0.0907204 --0.0928568 --0.0194505 --0.109347 -0.0486889 --0.0518856 -0.0588826 -0.0249863 -0.168409 -0.013274 -0.00531838 -0.00892459 -0.0545165 --0.0514099 -0.0513679 --0.0477774 --0.105532 -0.0348834 -0.0446428 -0.00445713 -0.0211415 -0.00217089 --0.00164627 --0.0932397 -0.00686679 -0.0493798 --0.0807335 --0.0115631 --0.0109858 -0.00824829 --0.0322542 -0.05935 -0.0384625 -0.0631774 --0.067699 -0.0192804 -0.0627233 -0.023338 -0.069711 --0.00282497 --0.0452733 --0.0282846 -0.0482856 --0.0904175 -0.0854451 --0.0242813 --0.0119836 --0.0393691 --0.00663656 --0.00210629 -0.0385449 --0.0139807 --0.0383004 -0.0309029 -0.018556 --0.0147912 --0.103827 -0.0257256 --0.0610212 --0.00923661 -0.0246295 -0.183723 -0.0392703 -0.0471489 --0.0108757 -0.00947068 --0.019095 -0.100813 --0.0169275 --0.125448 -0.018484 -0.00296341 -0.0762498 --0.00979241 -0.0346952 --0.0243707 --0.0986561 -0.0688571 -0.0477999 --0.0294082 -0.0237866 --0.0479369 -0.0016626 -0.0732992 -0.0172254 -0.010068 --0.105259 --0.0260761 --0.0195217 --0.0181867 -0.00630863 --0.0282715 -0.00673405 --0.0116956 --0.009558 -0.0295876 --0.109548 -0.0962751 --0.0665322 -0.0525523 -0.0153124 --0.0452667 -0.0100312 -0.0659354 -0.00953924 --0.0240532 --0.00744403 --0.0946735 --0.0700134 --0.00579964 --0.00173733 -0.0617442 -0.0543534 --0.0769894 --0.0956424 -0.0502042 --0.029988 -0.0281388 -0.0350755 --0.0772087 -0.0376159 -0.0255912 --0.0106136 -0.102677 -0.000387909 -0.0522742 --0.00814314 -0.0451991 -0.020327 --0.0334607 -0.0641425 -0.0447006 --0.0305534 --0.0227724 -0.0138648 -0.0981286 --0.00894047 -0.0150659 --0.000325578 --0.0234789 -0.00505502 --0.0424373 -0.0023067 -0.0300611 --0.0100171 -0.0010068 -0.05321 -0.0294782 -0.0148708 --0.00262883 -0.0537089 --0.0347621 --0.0334044 --0.13106 -0.0826977 -0.0889929 -5.78614e-05 --0.0783405 -0.0588464 --0.00325535 -0.0348232 -0.0136306 --0.0216872 --0.0107278 -0.00653375 --0.0971285 --0.0462444 -0.0091695 -0.0149108 --0.0753059 --0.0218955 --0.14635 --0.0319079 -0.0467713 -0.0324092 -0.0293085 -0.00801222 --0.0170369 --0.126658 --0.0404991 --0.00999132 -0.0382794 --0.0107092 -0.00815289 --0.075526 --0.00291139 --0.0450394 -0.0186667 -0.0781773 --0.0717613 -0.00858321 -0.075136 --0.0276029 --0.0315021 -0.00480239 --0.00672534 --0.05392 --0.0158223 -0.0581555 --0.0355483 --0.106644 -0.00467219 --0.0679035 --0.0920394 --0.0749176 --0.0216429 --0.0192385 --0.0742309 --0.0261316 --0.0306746 --0.047428 --0.0425357 --0.142919 --0.0683176 --0.0450233 -0.0733209 -0.0331544 -0.0406725 --0.0133989 -0.00397441 --0.0552544 --0.0229265 -0.0384486 -0.0162039 --0.0983592 --0.0508382 -0.0455184 -0.0626226 -0.0578524 --0.0185531 -0.0453796 --0.0360872 -0.0156801 --0.0700143 -0.0169805 -0.0382652 -0.0952148 --0.050728 --0.00495852 -0.0200918 -0.0504503 --0.0187668 --0.0304641 --0.0313803 -0.0205561 --0.0336696 --0.0339082 -0.0135746 -0.0690118 -0.0985939 -0.0907191 -0.0321582 -0.039013 --0.0762753 --0.0044394 --1.52525e-05 -0.0049978 --0.0130614 --0.0215225 --0.0165364 -0.0484945 --0.0449158 --0.0333652 -0.0371982 -0.0116753 -0.0819924 --0.054909 --0.0134917 --0.0201265 -0.0295851 -0.0470054 -0.0353463 -0.0272541 -0.0287191 -0.0255322 -0.00363212 --0.04189 -0.0735932 -0.029347 --0.0138077 -0.0252314 --0.00145033 --0.00797298 --0.0282 -0.0936085 --0.0279459 -0.0165014 --0.0694723 --0.00235999 --0.0371828 -0.0760047 -0.0287312 -0.13662 --0.0167418 --0.0175945 --0.0778423 --0.0599294 --0.142609 -0.0377174 --0.0471013 -0.0361532 -0.0588858 --0.0644412 -0.05285 --0.0521194 -0.0123901 --0.0419387 --0.0215874 -0.0015115 --0.0941098 -0.0650498 --0.051194 -0.070885 --0.0122867 -0.0848649 --0.0176516 --0.0105633 --0.122411 -0.0511392 --0.0697484 -0.0150095 -0.0416301 --0.0146852 --0.000115406 --0.0393068 -0.0140033 -0.0544794 --0.069685 --0.03638 --0.0445105 --0.0121654 --0.0319471 -0.0885957 -0.0277324 --0.0450731 -0.00385418 -0.0559095 --0.00312856 --0.0444518 --0.00448993 --0.0745377 --0.0194065 --0.0816006 -0.0696941 -0.103558 --0.0358989 --0.0210394 -0.0113901 -0.0564734 --0.0614459 -0.02634 --0.063512 --0.0398197 -0.0280576 --0.0131922 --0.00326476 -0.0395499 -0.0646931 --0.0742279 --0.0635252 -0.0595907 -0.110195 -0.0071379 --0.0133087 --0.0083879 -0.0164465 -0.0634219 --0.0876517 --0.0343731 -0.0315384 --0.0144106 --0.0165335 --0.00594918 -0.0564484 --0.0448115 --0.0485286 --0.0635998 -0.00342014 --0.064569 -0.0315562 -0.0168608 --0.0249144 -0.0727459 -0.0546215 -0.0112199 -0.0309299 -0.0573892 -0.0532926 -0.000790724 --0.0187894 -0.00992173 --0.058007 -0.0154801 --0.0606135 --0.0803491 --0.0635191 -0.0733448 -0.039383 --0.0442097 -0.0270385 --0.0220282 -0.0894251 -0.0176096 --0.00200577 -0.0471399 -0.0756534 --0.086848 --0.0977213 -0.0142375 -0.100671 --0.0247383 -0.0319402 --0.0660007 -0.0412168 -0.0160588 -0.076917 --0.00694488 --0.0431947 -0.0367185 -0.0242267 -0.00121942 --0.0852312 -0.0339695 -0.0110001 --0.0842781 -0.0728337 --0.0554829 --0.115642 --0.0391928 -0.0240383 -0.0390419 -0.013196 --0.0769465 -0.000276215 --0.025813 -0.051991 -0.00850118 -0.0090279 --0.0666632 --0.0511856 --0.0153338 -0.0405913 --0.040405 --0.00244529 --0.081816 -0.0183968 -0.0132955 -0.0357672 -0.0599511 --0.0276102 --0.0333399 -0.00670357 -0.0145052 -0.0368495 --0.100532 --0.0190065 -0.00549258 --0.0460676 --0.0726041 --0.0357841 -0.0581669 -0.049324 --0.046862 -0.040327 -0.0517297 --0.102532 --0.0404587 --0.00927712 -0.0221895 --0.0307242 --0.00825683 -0.0105128 --0.0070738 -0.00841743 -0.0524432 -0.0109272 --0.0405874 -0.00196092 -0.0325506 -0.0310671 --0.0589979 --0.0476181 -0.0851704 --0.0870417 -0.0229792 --0.100626 --0.00980497 --0.00595577 --0.100796 --0.0173902 --0.0439237 --0.0232645 -0.0468466 --0.0423661 -0.0325636 --0.00263063 -0.0156457 --0.0349079 --0.0166438 -0.0416208 -0.0628354 --0.000677311 -0.0464036 --0.0922138 --0.0572783 --0.0234978 -0.114138 -0.0439674 -0.0197936 -0.0301592 --0.0271574 --0.0848117 -0.0032231 -0.0269248 --0.073466 -0.010246 --0.132116 --0.023032 -0.0707821 -0.0144678 -0.0547623 --0.00473844 -0.066894 -0.0389856 --0.0028753 --0.0383193 -0.0357619 --0.111448 --0.058944 --0.00324542 -0.0041352 -0.0787954 -0.0209851 --0.113202 -0.0369237 --0.0225774 --0.00508848 -0.0630301 --0.0134632 -0.0346331 -0.032264 --0.0800922 --0.0474317 --0.00703935 --0.0152818 --0.0182597 --0.000401671 --0.0891212 -0.0787344 -0.053447 -0.0264059 -0.0848351 -0.0227549 -0.0177604 --0.0151081 --0.0432369 --0.0229215 -0.0300182 --0.0562703 --0.0661412 --0.00758294 --0.0166082 -0.0852555 --0.0430889 -0.0175103 --0.0093927 -0.0105596 -0.0415559 -0.0828954 -0.100106 --0.0159377 --0.0396398 --0.0524576 -0.00703952 -0.040183 --0.0114614 -0.0202215 -0.0357725 -0.0178187 -0.000742203 --0.0298735 --0.0453864 --0.04054 -0.00806528 -0.0895109 -0.000663254 --0.0303275 --0.0955331 -0.0584326 --0.0548309 -0.0641584 --0.0408554 -0.0488171 -0.0184698 --0.0860951 --0.0718545 --0.00230392 --0.0102367 --0.0255888 -0.0570752 --0.0743063 --0.0428894 --0.0322333 --0.0534202 --0.0198489 -0.00505078 -0.072981 -0.0790026 -0.0831299 --0.138289 -0.0543343 --0.0070269 --0.028831 --0.00635414 -0.0311813 --0.0511478 -0.0279622 --0.0332484 -0.124587 -0.0225579 --0.0262238 --0.0300778 -0.0177407 --0.0277001 -0.0179205 --0.0766806 -0.0363626 -0.0985272 --0.0205049 -0.0754047 -0.041564 -0.028651 -0.0199496 -0.0542466 -0.044467 -0.018455 -0.0446077 -0.0488705 --0.0938498 -0.0703816 --0.0707032 --0.0969093 -0.0684226 -0.0458931 --0.0438908 --0.00307165 --0.00992384 --0.0335904 --0.0719887 --0.0628322 --0.0487619 --0.0184403 -0.0258225 -0.0473847 --0.0213693 --0.0198507 --0.0429333 --0.0734441 --0.0708683 --0.0621127 -0.0100744 --0.0580931 -0.0103032 --0.0312725 -0.0566824 --0.00361647 --0.0189188 --0.0136493 -0.0693708 -0.029866 --0.0477957 --0.0631819 --0.0376781 --0.0517682 --0.0353997 --0.0415911 -0.0818767 -0.028622 --0.064991 -0.0387758 -0.0319568 --0.0933484 --0.0148465 --0.0223305 --0.00796156 -0.00481218 -0.0236063 --0.0312703 --0.0087227 --0.00392262 -0.0119545 -0.0461053 -0.0430028 --0.014832 --0.00195851 -0.0311777 -0.0931051 -0.117102 --0.0559195 -0.0161067 --0.00366371 --0.0987606 --0.0156852 -0.120696 -0.0310407 -5.4934e-05 --0.0434462 --0.00195581 --0.024264 -0.0216702 --0.075964 -0.0414662 -0.041889 -0.0311862 -0.0592807 --0.0927969 --0.00289784 -0.00800388 --0.0378824 -0.0192884 --0.0132208 -0.050925 -0.0687478 --0.0120905 --0.0397856 -0.0826785 -0.0805374 -0.0321561 -0.0111549 --0.0300628 -0.00811624 -0.0236599 -0.0180649 --0.00628054 --0.0554359 -0.00494301 -0.0157593 --0.0796743 --0.00177046 --0.0587087 -0.0866789 --0.0814977 --0.0306145 -0.0110137 -0.0245697 --0.0533259 --0.023292 --0.0301052 --0.0636719 -0.00746258 -0.0311629 --0.0313836 --0.0215386 --0.0669339 -0.0689036 -0.0459561 -0.0812138 --0.0683613 -0.0199442 -0.0220949 --0.0123517 --0.138166 --0.0477664 --7.04548e-05 -0.00805424 -0.00795627 --0.0196205 -0.0151249 --0.0767122 -0.0805041 --0.0258994 -0.000178708 --0.0816542 --0.0193327 -0.079783 -0.0270066 --0.0272299 --0.0366297 -0.0688087 -0.0128896 --0.0236048 --0.00734225 --0.0486279 --0.0585228 -0.0469444 --0.0890635 -0.0495018 -0.00772591 --0.0176263 -0.0117672 --0.00946425 -0.0100237 --0.00286954 -0.00083501 -0.0552142 -0.0908587 --0.0611759 -0.001134 -0.0104626 --0.0348902 --0.0381612 --0.0850219 --0.0346296 -0.0399531 --0.0347637 -0.000380295 --0.0290962 --0.027625 -0.0128228 -0.0226605 -0.00585595 -0.0704753 -8.30148e-05 -0.0104782 -0.0718747 --0.0179858 --0.0194597 -0.0864201 -0.0105335 --0.036078 -0.103253 -0.0146768 -0.0348748 -0.0484848 -0.0983524 --0.0469435 --0.00556273 --0.0172551 --0.0917316 -0.0202103 --0.0329075 --0.094079 -0.0177399 -0.0449368 --0.0159902 --0.000516609 -0.0801929 --0.0253633 --0.0468216 -0.0169296 --0.0153268 --0.0568421 --0.0304185 -0.043352 -0.0142347 --0.00279016 --0.0629284 --0.0686549 -0.062568 -0.0265225 -0.0352511 --0.0132241 --0.0652796 --0.0424791 --0.0174514 -0.0675957 --0.0623823 -0.0229278 -0.0678506 --0.0501616 --0.0237525 --0.104839 -0.0477168 -0.00198387 --0.018656 --0.06299 --0.0381376 --0.0507618 -0.000701977 --0.0237578 -0.0347402 -0.0340249 --0.0127438 --0.0809655 --0.0388369 -0.0433899 -0.0399195 --0.0134009 --0.00772981 -0.0527962 --0.0698251 --0.00342426 -0.0545872 --0.00819432 --0.00378444 -0.062605 --0.0623222 -0.0445091 -0.0161719 --0.0100086 --0.0415339 -0.0163452 --0.0552921 --0.00415008 -0.0266909 --0.0279844 --0.0244124 -0.0134243 --0.0213591 --0.0463199 -0.0472568 -0.086832 -0.0280447 -0.0676046 -0.00419925 --0.0545822 --0.0566095 --0.0665889 -0.0517994 -0.0736329 -0.0167263 --0.0721059 -0.0292727 -0.0632104 --0.00655926 -0.0601006 -0.0109753 --0.00646469 -0.0366258 --0.00453731 -0.0946092 -0.0560986 --0.045998 -0.0544694 --0.00638256 --0.0680248 -0.0303607 -0.0405936 --0.0533407 --0.0508336 -0.0171667 -0.0306788 --0.0647081 --0.0576764 -0.0100975 --0.0192674 -0.0296794 -0.115828 --0.0605506 --0.0475946 -0.0766815 --0.0451206 -0.146739 --0.0119402 --0.0469941 -0.030937 --0.134475 -0.0326628 --0.0321067 -0.00469071 --0.00773023 -0.0108149 -0.0551817 -0.0322285 -0.0995315 --0.0381019 --0.0361292 --0.110247 --0.00678604 --0.108749 --0.00754789 --0.0293301 -0.0664151 --0.0443264 --0.056695 --0.0199177 -0.023469 -0.0356277 -0.0642566 -0.046924 -0.0363823 --0.00990366 --0.0456404 -0.00189335 -0.0494468 -0.050305 -0.0454415 --0.00355188 -0.0365099 --0.0155807 -0.0354669 --0.021227 --0.0449832 --0.0686627 --0.0582629 --0.0269101 --0.0428636 -0.00255808 --0.0557601 --0.0286015 -0.0573429 --0.0990287 --0.0730466 --0.0209072 -0.0113979 -0.0178289 --0.0505607 --0.0179542 --0.0458568 -0.0135202 --0.0302314 -0.0345902 -0.0188407 --0.0630531 -0.0143837 --0.0169888 --0.0143152 --0.0299425 -0.0110371 -0.0116535 --0.0207445 --0.00630362 -0.0391608 -0.0547008 -0.0338964 --0.0239309 -0.0278271 --0.0499126 -0.0112375 -0.0369752 -0.0476798 -0.00701125 -0.00358752 -0.0455635 --0.0648734 -0.0225293 -0.0841497 -0.00299559 -0.0259945 --0.0361438 -0.0352933 -0.0140779 --0.00581451 --0.0163802 --0.038717 --0.0233228 -0.0134122 --0.0251682 -0.0113838 --0.0981582 --0.12675 -0.0421656 -0.00423662 -0.0475778 -0.0538343 --0.0132011 --0.0265343 -0.0407197 --0.0149464 --0.0245426 --0.0682261 --0.0498007 -0.0349715 -0.0255973 --0.0335571 -0.0101481 --0.0533517 -0.058488 --0.0413183 -0.0299984 -0.0385269 --0.048351 --0.0612086 --0.0117432 -0.0434811 -0.0481895 -0.0325259 -0.0152891 -0.0405107 --0.0254712 --0.0070318 --0.0524115 -0.0118121 --0.0169578 --0.0760339 --0.0118725 -0.00329876 -0.0464677 -0.0625458 --0.00577953 --0.0084867 --0.0905685 -0.0314719 -0.00320766 -0.0526082 --0.0199165 --0.00550051 -0.0578296 -0.0485207 -0.0480139 --0.0323198 --0.0403309 -0.00550934 -0.0199251 -0.0473602 -0.041703 -0.0263159 -0.0340114 --0.00304452 --0.0148387 --0.0427136 --0.0383613 --0.0520173 --0.0236631 --0.00286894 --0.0140932 --0.0579655 -0.0329849 --0.0357299 --0.0309586 -0.0471167 -0.0385892 -0.0845566 -0.00604228 -0.0293864 -0.00876347 --0.0690715 -0.0362908 -0.0401097 -0.0061421 --0.00976283 -0.0150543 --0.020486 -0.00598867 --0.0241478 -0.0128888 --0.0122363 --0.104285 -0.0111565 --0.0540031 -0.05456 --0.0833085 --0.0141667 -0.0081779 --0.0514089 -0.047325 --0.0127118 --0.069442 --0.0500842 --0.0655754 -0.0439354 -0.0315322 --0.0506555 -0.0426645 --0.0464133 -0.00145924 --0.0338997 -0.0845973 --0.0372766 -0.0152539 -0.0675851 --0.0157428 --0.0895098 --0.0627941 --0.00267933 -0.060361 -0.0225061 -0.0796491 --0.0100768 --0.0383326 --0.0346338 -0.0743169 --0.00661934 -0.0605537 --0.0136334 -0.00921036 -0.00111497 --0.00779411 -0.0864809 -0.133174 -0.00869205 -0.00385699 --0.0391131 -0.0235531 -0.120059 --0.0173511 --0.0371515 --0.126035 -0.0265841 -0.0235414 -0.0817812 --0.00297347 -0.0749112 --0.063662 -0.0302885 --0.0381555 -0.0677504 -0.000795626 --0.038354 -0.0124479 --0.0257224 -0.000740247 -0.0229896 --0.0773195 --0.0196852 -0.0678222 -0.00413316 --0.0287122 --0.0225635 --0.0812582 --0.039426 -0.00904845 -0.080532 --0.0753568 --0.0320307 -0.0168625 -0.0381275 -0.0402085 -0.0188846 -0.0480979 --0.0519161 -0.0215627 --0.0983582 --0.00326667 -0.0178776 --0.0325738 --0.0603907 -0.00590501 -0.0525006 -0.0267874 --0.0457832 -0.106086 --0.0327906 --0.0559085 -0.0719687 -0.0563941 -5.90862e-05 --0.0147231 --0.0269197 --0.0299485 --0.0102877 -0.0175696 --0.0204104 -0.00966931 -0.0271478 -0.0353184 -0.0102094 --0.108641 -0.0103975 --0.00194199 -0.0305523 -0.0360344 --0.00415016 -0.0473932 --0.0286901 --0.0326801 -0.00882914 -0.0626121 -0.0395906 -0.0834857 --0.00604832 --0.0298424 --0.0488262 -0.061472 --0.0551069 -0.0390884 -0.0463306 -0.114865 -0.0191492 --0.00360931 -0.0577025 --0.07433 -0.0279576 --0.028071 -0.0122939 -0.0465265 -0.0262284 --0.0124815 -0.000184099 --0.0123696 --0.0716855 --0.0396756 --0.0163375 --0.124655 -0.0107702 --0.00605322 -0.00222393 -0.0430499 --0.0476746 -0.0313478 --0.0274384 -0.043985 -0.0393315 -0.0483244 -0.0549831 --0.00892554 --0.0719285 -0.127454 -0.0148649 -0.00678066 --0.00400934 -0.0332492 -0.0225342 --0.00785655 --0.0540254 -0.0590218 -0.00708743 -0.0705415 --0.0546309 -0.0154343 -0.0350463 --0.0281767 -0.0164562 -0.0452144 --0.00432672 --0.0714107 -0.005236 -0.00192226 --0.0653135 --0.0790167 --0.0502342 --0.00203122 --0.00169245 --0.0318751 -0.0460346 --0.0492592 -0.016332 -0.0784894 -0.0104387 -0.00646815 -0.0603417 -0.00756774 --0.0256594 -0.0539147 -0.045073 --0.0473658 -0.0336266 --0.0242721 --0.00590017 --0.0128016 --0.0689924 -0.0333434 --0.0416415 -0.010043 --0.102606 --0.00154711 --0.0188846 -0.0127831 -0.0516829 -0.056809 -0.0917775 -0.0482742 -0.0153213 -0.0374703 -0.0844906 -0.00870994 -0.0229129 -0.0981059 -0.0661454 --0.095045 --0.0300297 --0.064391 -0.024825 --0.0127669 -0.0144422 -0.0730036 --0.0337734 --0.00836916 -0.023231 --0.0342839 --0.0106265 --0.0249834 -0.0602662 -0.00528559 --0.0453959 --0.0566196 -0.0379208 -0.0269915 -0.104807 --0.0594906 --0.0941577 --0.115816 -0.0346923 --0.0935962 -0.0887933 -0.0243777 -0.0507932 -0.0619868 --0.0390552 --0.00548888 -0.0308145 --0.0019203 -0.00328525 --0.0364874 --0.084052 --0.00901778 --0.0431972 -0.112382 --0.0690817 --0.0230918 --0.0500673 -0.00199765 -0.0316912 --0.0281246 -0.00379978 -0.00441211 -0.0522747 -0.101861 -0.0626973 --0.0943123 --0.0190211 --0.015126 -0.023397 --0.0716952 -0.0720806 -0.0314407 -0.0265359 -0.0218796 -0.101668 --0.0404153 --0.0155338 -0.00262506 -0.0182872 -0.0188548 -0.0221875 -0.049739 -0.00721325 -0.12527 -0.0331951 --0.106589 --0.00719455 -0.00386567 -0.0415005 --0.0678793 -0.126037 -0.00413518 -0.0777287 -0.00966456 --0.0208272 -0.0425429 -0.017693 -0.00867715 -0.0782689 --0.0935295 --0.072969 --0.0433201 -0.0424529 --0.0811893 -0.0518979 -0.0212449 --0.00411168 -0.110618 --0.0852836 -0.0213149 -0.0520095 --0.0858973 -0.0108065 -0.0262493 --0.140289 --0.0991776 -0.0289071 --0.00403373 --0.0282576 --0.00498144 --0.00715829 -0.0414699 --0.044161 -0.0657181 -0.0406092 --0.00229254 -0.0362634 --0.0604332 --0.091669 -0.0578836 --0.011782 -0.0469685 -0.0382448 --0.00142743 -0.0321111 --0.067099 --0.0780606 -0.0512904 -0.108138 --0.0516378 --0.0178059 -0.0702224 -0.0310902 -0.0460095 --0.00176363 --0.0195182 -0.0162067 --0.0190516 -0.0819224 --0.043873 --0.0487291 --0.0771353 --0.0300962 -0.00171244 -0.0100978 --0.0739681 -0.0808442 --0.0100638 -0.0251279 --0.0126701 --0.0214257 -0.0978447 --0.055281 -0.0202957 -0.00413608 -0.0287613 -0.0902988 -0.0455007 -0.00722397 -0.0343579 --0.0697424 --0.0110885 --0.0514986 --0.0377952 -0.00160459 -0.0181177 -0.0120254 --0.039819 --0.00888186 --0.018111 -0.0138082 -0.0556771 -0.0508435 --0.0447888 --0.0116095 --0.0727599 --0.0112346 -0.0554425 -0.142017 --0.0320336 -0.0978173 -0.0323698 --0.013391 -0.00742477 --0.0404509 --0.0177349 --0.0413015 --0.117515 --0.0281348 --0.0867094 -0.0712763 --0.0475029 -0.0631249 --0.0423825 --0.0559732 --0.0434793 --0.0599527 -0.012133 -0.0266741 -0.0140811 -0.0016788 --0.0683616 --0.00418309 --0.0350758 -0.0398419 --0.00108365 --0.079993 -0.122377 --0.0555996 -0.00843577 -0.0323776 --0.0981133 --0.0350137 -0.04216 --0.0223939 -0.000517799 --0.0639835 --0.0177725 -0.0458664 -0.0608117 -0.0827156 -0.0223577 -0.0617309 --0.000373757 --0.0369021 --0.0257678 -0.00012602 --0.0410408 -0.149126 -0.0487257 -0.0604781 --0.0324143 -0.0602373 --0.0358251 --0.11166 --0.023995 -0.0437248 -0.0698581 -0.0184059 --0.0368685 --0.00897759 --0.0205687 -0.0480052 -0.0146543 --0.0130625 --0.0229409 -0.0580002 --0.11301 --0.0477409 --0.0253964 -0.0322646 -0.0562736 --0.0262455 -0.0152142 -0.015383 --0.0490333 --0.0781316 --0.0230095 -0.045513 -0.000143739 --0.0127082 --0.0277086 -0.0258982 --0.0259329 -0.0381763 --0.0429486 -0.0577896 -0.110792 --0.00155392 -0.0374822 -0.0316051 --0.00716994 --0.0185293 --0.0132382 -0.0123386 --0.0360802 -0.021901 -0.096671 -0.016682 -0.0663739 -0.079181 -0.00877923 --0.0249553 -0.0256076 --0.0235725 -0.0424681 --0.0620681 -0.016103 -0.00253413 --0.0309854 -0.0511839 -0.0180196 --0.00868809 -0.0743271 --0.0590732 -0.133368 -0.047945 -0.0294667 -0.00985186 --0.00501972 --0.0336153 -0.0343464 --0.0623623 --0.0284572 --0.117417 -0.00282898 -0.0309515 -0.132332 --0.0834254 -0.00165785 --0.0949274 -0.0464701 -0.0548557 --0.022691 -0.00589863 -0.00903981 --0.0185913 --0.0158783 -0.01349 -0.0508697 -0.0356209 --0.0164292 --0.0247323 -0.0211546 -0.101795 -0.0253278 --0.0749715 --0.030031 -0.000944357 --0.0169014 -0.122218 -0.0136966 -0.0299192 -0.0207804 -0.0430609 --0.00956092 -0.0181087 -0.0673114 -0.0500231 -0.00303689 --0.160579 -0.00102815 --0.00414263 -0.00602305 -0.0532788 -0.0510427 --0.0651753 -0.0633906 -0.0539483 -0.0219983 --0.0532925 --0.0232039 --0.0506686 --0.00151074 --0.00793539 --0.0243236 -0.0321739 --0.00512884 --0.00847383 --0.00654381 --0.0163362 -0.0480048 -0.00264916 -0.0031429 --0.0080483 -0.0475718 --0.0832987 --0.0511437 --0.111865 --0.0340935 -0.0252047 -0.0584719 -0.0847083 -0.0896284 --0.0808642 -0.0489821 -0.0279487 -0.0233527 -0.026922 --0.00385973 --0.0441974 -0.042844 -0.00537886 --0.0876485 --0.0305099 --0.00142023 --0.0334599 --0.043859 -0.0542708 -0.0617874 --0.0231496 --0.0082787 --0.124005 --0.0321726 -0.0654275 -0.0746536 -0.0446509 -0.0211521 -0.0381199 -0.000664379 --0.0753001 -0.00767629 --0.0579056 -0.0111545 --0.0149006 -0.0912313 --0.0241779 -0.027646 -0.126197 --0.0241551 -0.0180196 -0.00282959 -0.0126611 -0.0559023 --0.0595767 --0.0665718 -0.00840474 -0.0694376 -0.0282412 --0.107555 -0.0313366 --0.0142997 -0.0602702 --0.0442781 -0.0143759 --0.0197688 -0.0748995 --0.0613939 --0.105644 --0.0319296 -0.0540482 -0.0432195 --0.0786591 -0.0715267 -0.0188044 --0.088586 -0.0519298 --0.0504812 --0.0354872 -0.00921231 --0.103642 --0.0406777 -0.00443668 --0.112332 -0.0518808 -0.0263522 -0.0674745 --0.0137167 -0.0207818 -0.0387225 -0.0257482 --0.0281783 -0.0456188 --0.000967722 -0.0470386 -0.0439702 -0.0701227 --0.0407412 --0.058168 -0.00832874 --0.0209234 -0.00287498 -0.00232676 -0.0239571 -0.0031702 -0.0572461 --0.0838214 --0.0566174 --0.00059114 -0.0208961 -0.122258 --0.0276951 --0.0742069 -0.02701 -0.0227129 -0.0366222 -0.0528113 -0.0379147 -0.00964162 --0.0696027 -0.0129563 -0.109348 -0.0117154 --0.00656321 --0.0797612 --0.00293677 --0.0713085 --0.0152017 -0.0184368 -0.0520081 -0.0409398 --0.0985183 -0.00245467 --0.0605031 -0.000679231 --0.0823747 -0.00376432 --0.0205041 -0.0125091 --0.052896 -0.0371197 --0.0508878 -0.0506937 --0.0518654 --0.0554543 -0.00301325 -0.101961 -0.0137089 --0.0841373 -0.0211249 --0.00095342 --0.111918 -0.0560575 --0.0343555 -0.0603712 --0.0415945 -0.0340965 -0.0772198 --0.0618846 -0.0449431 -0.0328231 -0.0427948 --0.0392223 -0.0405568 --0.065019 -0.00704184 -0.08896 --0.0415855 --0.0346099 --0.102877 --0.0668884 -0.00167289 -0.0115239 --0.0784156 --0.0367986 -0.0794223 --0.083813 -0.0207651 --0.0922696 -0.032622 --0.0564469 --0.0191306 -0.00372159 -0.0703954 -0.0344868 --0.0118561 --0.00867276 --0.0199611 --0.0180552 --0.0193242 --0.0418228 --0.0112335 --0.0628787 --0.0385499 -0.0592667 -0.00335084 --0.0963234 --0.00529464 --0.00124509 --0.0825482 -0.0123245 -0.00527344 -0.0425923 --0.0349503 --0.0403231 -0.0369064 --0.0517783 --0.0947018 --0.0193266 -0.00296198 -0.028457 --0.0523883 --0.0603493 -0.0115136 --0.0677561 -0.0438399 -0.041308 -0.0691052 --0.00372189 --0.0269424 --0.0209048 --0.0060302 -0.0288286 -0.0795845 -0.0220045 --0.0385015 --0.0628388 --0.0679172 -0.0293315 --0.0957915 --0.0215724 -0.0154203 --0.0603666 --0.0604412 --0.0448361 -0.0450637 -0.0147882 -0.000833303 --0.0783084 --0.0234199 --0.0588435 -0.0350358 -0.0529128 -0.0851701 --0.0308576 --0.0603088 --0.0467224 -0.0054685 --0.0347272 --0.0220188 --0.00820114 --0.0004433 --0.0297849 --0.00374287 -0.0604819 --0.113956 --0.0579358 --0.0379902 --0.0364771 -0.0431781 -0.100422 --0.101688 --0.0440937 -0.0278644 -0.0418802 -0.0617283 -0.116818 --0.00285612 -0.0913041 -0.00235206 --0.0593029 -0.0117466 -0.0189229 -0.112104 -0.0330029 -0.00511151 --0.0323601 --0.0257574 --0.000865014 -0.0680709 --0.0652407 -0.0599231 -0.0293038 -0.0385039 --0.026139 -0.025455 -0.0154553 --0.0326621 --0.0962384 --0.00654115 -0.00384147 --0.024344 -0.0231188 --0.0124439 -0.0250654 --0.0423808 --0.0332623 --0.0281933 --0.0873585 -0.0312047 --0.0477998 -0.0609449 --0.0448138 -0.0627634 --0.00259925 -0.0693387 --0.00937643 --0.00382001 -0.078539 --0.0706381 --0.0104436 --0.0287858 -0.0466733 -0.0337231 --0.0194928 --0.0157525 -0.105198 -0.0357719 -0.041845 -0.0178365 --0.0347746 --0.0610229 --0.0682051 -0.0399916 -0.00209077 --0.0758217 --0.0363022 --0.0782817 -0.0202461 --0.00707245 -0.0375091 -0.0926756 -0.0306647 --0.114431 -0.00699316 -0.0186861 -0.0192882 --0.0712424 --0.0431945 --0.00528695 --0.0323166 -0.0383788 --0.0165808 -0.0135655 --0.0206991 --0.0488047 --0.0333213 --0.00242367 -0.0125307 --0.0105838 --0.00323164 -0.012253 --0.0191372 -0.0666454 -0.0527133 -0.114191 -0.0203786 --0.0385924 -0.0328121 -0.0354397 -0.0400811 -0.0273481 -0.0475744 --0.11643 -0.0415976 -0.0778532 -0.0305601 -0.106072 -0.0533686 -0.0643767 --0.0508947 --0.0484782 -0.0277855 --0.0185653 -0.0468816 -0.0364505 --0.0501055 -0.0544357 --0.054843 -0.0348576 --0.0111893 -0.042305 --0.119088 -0.00406959 -0.0262768 -0.0232464 --0.0147558 -0.022621 -0.0475898 -0.0677832 -0.0974042 -0.0377618 -0.0796694 -0.0203765 -0.02273 -0.0154974 --0.0447131 --0.0358916 --0.00535414 -0.0330996 -0.00147271 --0.00690863 --0.0419354 -0.0136274 -0.010544 --0.0375404 -0.0400142 --0.101538 --0.106875 -0.0269812 --0.0205581 -0.0450943 --0.0261003 --0.0625785 -0.0235419 --0.0373362 --0.00151003 -0.0328729 -0.0629763 --0.0184266 --0.0169703 -0.00895755 --0.0327049 -0.0220191 --0.00229557 --0.0826229 -0.00849446 --0.0591182 --0.0510478 --0.0204108 --0.0224388 -0.0155769 -0.0071101 -0.0585691 --0.104573 --0.0620266 -0.043458 -0.0193583 --0.0691463 --0.00103242 -0.0303155 --0.0100387 -0.0276623 -0.00428771 -0.0664203 --0.0522989 -0.0757445 --0.0300398 --0.0333096 -0.0190879 --0.0107763 -0.0544972 --0.00118123 -0.0548258 --0.0150109 --0.0529225 --0.076042 --0.0797041 -0.0790092 -0.0680584 -0.0396675 --0.0358719 --0.018993 -0.0102117 -0.0404832 --0.051516 --0.00741161 --0.0265446 -0.0256807 -0.0371928 --0.0563137 -0.0439541 -0.0597335 -0.00569872 --0.0384265 -0.0800604 -0.0419329 --0.130609 -0.0602854 --0.00418426 --0.0949238 -0.0494182 -0.0242035 --0.0845623 --0.021595 -0.0140512 -0.0067731 -0.0232459 -0.0516079 -0.0249566 -0.0165316 -0.0627292 --0.0250425 --0.0484488 -0.0612648 -0.036803 --0.0417695 --0.0284119 -0.0367048 -0.0109155 --0.105227 --0.0192706 --0.0249274 -0.0367502 --0.0160718 --0.00622226 -0.09555 --0.0433656 -0.0241911 -0.0172772 --0.0754129 --0.0101162 -0.0173945 --0.0723202 -0.0361545 -0.0112137 -0.0143918 -0.0238997 -0.0786085 --0.0615067 -0.129965 -0.00836252 --0.0257998 --0.0843859 -0.12581 --0.0165107 -0.0147566 --0.114225 --0.0994545 -0.00166981 --0.0134965 --0.072974 --0.038104 -0.00271102 --0.0946026 -0.0274339 --0.0533049 --0.0325947 --0.0692376 --0.045589 --0.0255162 --0.00615377 --0.0129905 --0.0470982 --0.0820448 --0.141674 --0.0352507 -0.0607633 -0.0634122 --0.0712515 --0.0597402 --0.032585 --0.0387417 -0.0108074 --0.0360053 --0.0336549 --0.07786 --0.0439385 --0.0296763 -0.0903366 -0.0113577 -0.0230389 --0.0409234 --0.0330215 -0.0751076 --0.064107 -0.0556802 --0.0132375 --0.00737479 -0.0346377 -0.00630127 --0.0477234 --0.0165338 --0.0417301 -0.00357992 -0.0392007 --0.0150155 -0.0308024 -0.0257252 --0.0269344 --0.0131428 -0.00223291 --0.13241 -0.0248566 --0.008567 --0.0204292 --0.0282225 -0.00956189 --0.0121212 -0.0663859 --0.0305167 --0.0196167 --0.00640447 -0.00391553 -0.00794017 -0.0817238 -0.00611529 --0.00962663 -0.0824469 --0.0459616 --0.00759197 --0.052851 -0.057981 -0.0658843 --0.0545048 -0.00529094 -0.0158894 -0.0444953 -0.0538936 -0.0142587 -0.0529371 -0.0766247 --0.0280685 -0.00279919 --0.00724973 -0.016296 -0.134888 -0.0130569 -0.00964303 -0.0447409 --0.0173433 -0.0580239 --0.00831029 --0.0881356 --0.0620989 -0.007487 --0.0564398 --0.070528 --0.0951272 -0.0646839 --0.0153936 -0.0242447 -0.0501138 -0.0204586 -0.00670441 --0.00307432 --0.0233704 -0.0611852 --0.0318487 --2.91732e-05 -0.0499768 -0.0686644 --0.0514042 -0.00192132 --0.0436511 --0.0313183 -0.0398277 --0.0541356 -0.0199095 --0.0269583 -0.073377 --0.0283653 -0.0584004 --0.0920554 -0.0438192 --0.0341348 --0.0142334 -0.0797785 --0.0224646 -0.0892526 -0.0420895 -0.045545 --0.0215839 --0.0617986 -0.0487068 -0.0905168 -0.0198048 -0.00616405 --0.0066133 --0.0341143 --0.00581895 --0.0566304 -0.053275 --0.0189797 -0.0950343 --0.0506747 --0.019814 -0.0563572 --0.0355424 -0.0126258 -0.0221684 -0.0270209 -0.0581208 --0.0896552 --0.00458021 --0.0592051 -0.00101096 -0.0209486 -0.0429234 --0.00251567 -0.0187874 --0.0312989 --0.052203 -0.0592212 -0.0712379 -0.0133556 -0.0250217 -0.0253658 -0.0166757 -0.0124203 -0.02112 --0.0606589 -0.00133144 -0.0071951 --0.0120629 -0.0452345 -0.0172216 --0.031723 --0.0546582 -0.014032 --0.0446192 -0.00122116 -0.0066932 --0.0441687 -0.04033 -0.0153363 -0.0318899 -0.0283358 --0.0146611 -0.0338408 --0.0148568 --0.0299418 -0.0281928 -0.039122 -0.0681985 -0.0358925 -0.0383603 -0.0121805 --0.00526761 -0.00537711 --0.0409381 -0.0629331 --0.0453961 --0.0592906 -0.00331556 --0.0351702 -0.0506938 -0.0576111 --0.0391483 --0.00423777 -0.0109747 --0.145929 -0.000741362 -0.00617243 --0.0075679 -0.00126248 --0.0268655 --0.0311104 --0.0338032 -0.0061012 --0.00998103 -0.0120042 -0.0503708 --0.00684357 --0.0204154 -0.0111694 -0.0864096 -0.0241226 --0.0306876 --0.00888692 --0.0704627 -0.0532394 --0.124828 -0.0892248 -0.00767825 --0.0345031 -0.0198714 -0.0676243 -0.0689278 --0.0406517 --0.0750572 --0.078576 -0.0174985 -0.0503325 -0.0620382 -0.0137914 -0.049139 --0.0403099 --0.097898 -0.0846542 -0.0352436 -0.0535684 -0.019453 --0.00849907 -0.0105384 --0.00689366 --0.0120183 -0.117627 --0.0446466 --0.022469 --0.0872385 --0.0404536 -0.0760685 --0.0683485 -0.0460615 --0.046119 -0.0385043 --0.0531282 -0.0216648 --0.0256595 --0.0240323 -0.00696063 -0.00466298 -0.00711933 --0.0224619 -0.0160882 -0.0588448 -0.0636249 --0.0171924 --0.0120576 -0.0117466 --0.0158565 -0.0318437 --0.0154433 -0.000483853 -0.0185121 --0.049454 --0.0485973 --0.00299364 --0.0190438 -0.119908 -0.0426709 -0.0859447 --0.0170646 --0.0384242 -0.0149732 --0.0332969 --0.055652 -0.017322 --0.0179127 -0.0132757 -0.0372452 -0.0577872 --0.010443 -0.0306882 --0.0464669 --0.0488454 --0.031938 -0.00332521 -0.00488653 --0.114179 -0.032533 -0.0806317 --0.0537141 -0.0507771 --0.0678005 --0.0643759 -0.0814045 -0.111224 --0.00393114 --0.0227785 -0.0633846 -0.03517 -0.0305936 -0.00330753 --0.0594194 -0.110262 --0.0531844 --0.0162101 -0.0117841 --0.0882272 -0.00233041 -0.126821 -0.0630728 --0.00248282 --0.0573308 -0.0118105 --0.0199179 -0.0237823 -0.0837332 -0.0504855 --0.0035919 -0.039002 -0.0721941 --0.0480657 -0.0257929 -0.122791 -0.053978 --0.0878738 --0.0045287 --0.043292 --0.0798042 -0.023831 -0.0109599 --0.0614485 --0.0314302 -0.0253606 --0.0197445 -0.0422424 -0.0152975 -0.0781016 --0.00807077 -0.0465451 --0.0119481 -0.0676996 --0.0441627 -0.0306733 -0.0260727 -0.0527923 -0.053086 --0.00670847 --0.0556091 -0.0220862 -0.0322406 --0.0396194 --0.0630865 -0.0634513 --0.0118858 --0.0979325 -0.00764784 --0.0470356 -0.0629822 -0.0432349 -0.0373953 --0.0476567 --0.0189613 --0.0353804 --0.0673992 --4.49397e-05 -0.0352022 --0.0573575 --0.0273572 -0.0162905 --0.0441799 -0.0358075 -0.0356206 --0.0105419 --0.0191967 -0.0728123 --0.0626724 -0.043189 -0.0103805 --0.000628094 --0.0418621 -0.0635224 -0.0868019 --0.0209049 --0.038494 -0.0406679 --0.0228766 -0.0192992 -0.0729756 -0.0750828 --0.00568642 --0.0234247 -0.0143658 -0.0431591 --0.0170174 --0.00654259 --0.0322092 -0.0439329 --0.0662468 -0.0353619 -0.0687263 -0.0119127 -0.0758413 -0.0237102 -0.045836 -0.056679 -0.099709 --0.0173749 -0.0654559 -0.0535423 -0.0398897 -0.0121022 -0.0299047 -0.00956484 -0.0335347 -0.053818 --0.0057415 --0.0472183 --0.0127746 -0.126258 -0.0324477 --0.0930987 -0.0295944 -0.0168358 -0.0809543 --0.00935025 --0.0495968 -0.00624163 --0.133415 -0.049557 --0.00686909 --0.0205325 --0.111778 -0.0213716 --0.102716 --0.0484798 -0.0105146 -0.0349174 --0.0809591 --0.0919312 --0.0100558 --0.0418565 -0.0201508 -0.0129149 -0.0148083 --0.0448606 --0.013791 --0.0249632 --0.066859 --0.0107761 --0.00917248 -0.0343917 -0.113676 -0.0184242 --0.00962954 -0.0173404 --0.0772364 --0.0535081 --0.037212 -0.0245 -0.00749204 --0.0342919 --0.0768127 -0.0997918 -0.0457968 -0.0759185 --0.0629592 --0.00583464 --0.0424321 --0.0448339 --0.0335001 --0.070651 --0.0127161 --0.0523635 -0.0160703 -0.00326094 --0.0329314 --0.0210938 --0.0811282 -0.08914 --0.0840605 -0.0267635 --0.0570577 -0.00731635 --0.0229001 -0.00678075 --0.0893901 --0.0172501 -0.0695876 -0.0795858 --0.102835 --0.0193327 -0.0169019 --0.0498841 --0.0248084 -0.0869459 -0.0354955 --0.0347682 --0.0217934 --0.0445631 --0.0564275 --0.0698072 -0.031717 -0.134014 -0.0569811 --0.0231922 --0.067523 --0.0352672 -0.0112533 -0.0376132 --0.0142356 -0.0390477 --0.0572759 -0.0611228 --0.0199954 -0.0876632 --0.0321128 --0.035492 -0.0537286 --0.0367804 -0.0595589 -0.0102849 -0.0407268 --0.0301376 -0.0460336 -0.038926 -0.0160622 --0.0495461 -0.0781879 -0.0457158 -0.0209141 --0.011792 -0.00474632 --0.0243308 --0.00607882 -0.0232758 -0.0504677 -0.00502595 --0.0322263 -0.00805881 -0.0557425 --0.0039097 -0.0598228 -0.0774306 --0.043426 -0.003188 -0.00438787 --0.0745541 -0.0155322 --0.0763659 -0.106699 -0.014825 --0.00311423 --0.0110517 --0.0514584 -0.00967001 -0.090972 --0.0734452 --0.00610956 --0.0383436 -0.0253398 --0.0428522 -0.0228583 --0.0786486 --0.093885 -0.0416413 -0.023031 --0.0198129 --0.0472244 -0.0400614 --0.021519 -0.051753 -0.063099 -0.0153859 -0.0439958 -0.0799641 --0.0092949 --0.030295 -0.0205097 --0.0287128 --0.0470057 --0.0134733 --0.0456947 --0.0138184 -0.0237441 --0.00333616 --0.00572977 -0.00384981 --0.0394657 --0.0241988 --0.13422 --0.0321178 -0.00591524 -0.00158104 --0.0975978 --0.055462 --0.0959494 -0.0220001 --0.0168376 -0.0442734 -0.00455535 -0.0023509 --0.0656092 --0.0552473 -0.00786831 -0.0169616 -0.0321149 --0.0211868 --0.0522187 --0.0250433 -8.82444e-05 -0.0848078 -0.129417 -0.00546166 -0.0539281 -0.00661255 --0.0479955 -0.0105246 --0.0260234 --0.055195 --0.0220269 --0.051851 --0.0657408 -0.0284758 --0.00187366 --0.0382325 -0.0282966 --0.021617 --0.0583355 -0.0266098 --0.0505905 --0.0158461 --0.00247075 -0.0383635 -0.0633756 -0.0537732 -0.0811408 -0.0381857 -0.046126 --0.0190096 -0.0192388 --0.02946 --0.023185 --0.0181451 --0.00648678 --0.0587806 -0.0565654 -0.0429921 -0.0365329 --0.0182316 -0.0136161 --0.00179385 --0.0234527 -0.076529 -0.0515972 -0.0743302 --0.00543192 --0.020001 -0.073199 -0.0302823 --0.0700411 -0.0427547 --0.00319069 --0.0653778 -0.0360985 -0.0425543 --0.0555503 -0.0410046 -0.0467813 --0.0217701 -0.00791688 -0.0643255 -0.00824021 -0.00618331 -0.138897 -0.0361899 --0.0933425 --0.0737382 -0.134217 --0.0356177 -0.00267339 -0.156992 --0.00645235 --0.0461473 --0.00944228 --0.0657304 -0.0677783 -0.00232302 --0.0156938 --0.00859276 -0.064695 --0.0103985 --0.00033794 -0.0919674 --0.06844 -0.00192137 -0.0254857 -0.0413218 -0.0395509 -0.0198861 --0.00250223 --0.0707644 -0.073391 --0.0626351 --0.00479982 -0.00526568 --0.00649227 -0.00200056 -0.091278 -0.00997972 --0.032114 -0.0193128 -0.0977035 -0.00574318 --0.000793538 --0.0136166 --0.0178938 -0.0281857 --0.0262175 --0.0340136 --0.038545 --0.00159325 --0.118189 -0.0401408 --0.028221 --0.00906968 --0.0981253 -0.0756553 --0.0690909 -0.00187012 -0.00961996 -0.00340845 -0.0762928 -0.0302751 --0.0276235 -0.00599995 -0.0687706 --0.00637412 -0.017703 -0.0421868 --0.00381551 -0.000545505 --0.0823894 --0.0653462 --0.00995993 -0.0577764 -0.0585849 -0.0162898 --0.00654832 -0.0480789 --0.000382911 --0.0638596 -0.0281021 -0.0279135 -0.0354903 -0.000279709 -0.0381989 -0.0641679 -0.0147524 -0.056676 --0.0998269 -0.0419434 -0.00173288 -0.0329679 --0.00736867 --0.013848 -0.0110585 -0.0317087 --0.0648455 --0.0607966 --0.0396188 -0.00914849 --0.0649678 -0.0527732 -0.0111677 --0.114718 --0.0772992 -0.0374955 --0.00862491 --0.0209385 --0.0597696 --0.0221515 -0.0133322 --0.0610171 --0.0083245 --0.101928 --0.10961 -0.0146151 --0.00266471 -0.0828371 -0.075226 -0.0558764 --0.0441994 -0.0630398 --0.0247969 -0.0162143 --0.0532755 -0.0132063 --0.0347305 -0.0246399 --0.0637806 -0.0374064 --0.0636543 -0.0764929 -0.019072 -0.0755283 -0.0899851 --0.000265287 --0.0254599 --0.0569542 -0.00482584 --0.0230532 -0.0477963 --0.0327816 -0.0270887 --0.0401161 -0.0259335 --0.0176715 -0.0254481 --0.0401775 -0.0806566 --0.0487986 -0.0213667 -0.00579073 --0.0743712 --0.0291835 --0.0279731 -0.103026 -0.0403609 --0.0588951 -0.106157 --0.101133 --0.0567874 --0.0815219 --0.0193749 --0.0224393 -0.00488078 --0.0285271 --0.0138243 -0.00276693 -0.00543573 --0.00911548 -0.0195915 --0.027077 -0.0368433 --0.0674312 -0.0849614 -0.0292344 --0.000952281 --0.0778008 -0.0689477 -0.0751575 --0.102382 --0.138715 --0.0158197 --0.0254974 -0.0438627 --0.0372106 -0.0470279 --0.0793394 --0.0130725 --0.000786167 -0.032656 --0.0140908 --0.0508156 -0.0322901 --0.0468051 --0.0344205 -0.0149244 --0.0107088 -0.0155357 -0.066197 -0.0354624 --0.0263839 -0.0397676 --0.0231532 --0.0667418 -0.0212235 --0.0714555 -0.0499426 --0.0185048 -0.0448347 -0.0390534 -0.0422795 -0.0932922 -0.0412382 -0.0747429 --0.0149966 --0.0294966 -0.0764 -0.0448487 --0.0229853 --0.0730595 --0.0407467 --0.0113366 --0.0422764 --0.0295888 -0.0187732 --0.0129855 --0.0508946 --0.0164562 -0.0161639 -0.0863498 -0.0648167 --0.0876151 --0.0262835 --0.136957 --0.0191336 -0.101763 -0.102542 -0.0419278 --0.00203527 -0.00396668 --0.00889991 -0.0100477 -0.00713423 --0.0462902 -0.0607795 -0.117925 --0.0267435 -0.0323709 -0.0507163 -0.0210444 --0.0177312 --0.0424557 -0.00148447 --0.0024514 --0.0335918 --0.0676993 --0.0336571 --0.0575113 -0.0452747 -0.0384322 --0.00474298 -0.111298 --0.0259623 -0.0948548 --0.0351898 -0.0376756 --0.0261487 --0.00949918 -0.00535212 -0.0196439 --0.0568435 --0.014398 --0.0337091 -0.0411057 -0.0023544 --0.0292235 --0.0147885 --0.0307776 -0.0707986 --0.0794916 --0.0136525 --0.0731467 --0.013338 --6.01965e-05 -0.0572026 -0.0117978 -0.0715913 -0.00946412 --0.0675801 --0.0201061 -0.0249094 -0.0463157 -0.0247744 --0.0778163 --0.0739217 -0.0168825 -0.0605983 -0.0174181 --0.000373774 -0.000940348 -0.000403781 --0.00117796 -0.0296559 -0.0738831 -0.0672759 -0.00419004 --0.0518785 -0.00768867 --0.00233859 -0.025483 -0.0505175 -0.0595325 -0.0530369 --0.0629931 --0.0474421 -0.0300203 -0.0323481 --0.111047 -0.0280532 --0.0461415 --0.0870136 -0.103567 --0.0462264 --0.0169657 -0.040512 -0.00152664 --0.00106229 --0.021389 --0.00868027 --0.0634597 -0.0831523 --0.030989 -0.0617884 -0.0913899 --0.0549653 --0.0629095 -0.00435516 --0.0104835 --0.02941 -0.0339545 -0.030623 -0.0478674 -0.0836176 -0.0449769 -0.0551934 --0.0425747 -0.0182234 --0.0162407 -0.066104 --0.00956925 -0.0105777 -0.00697847 -0.00506675 --0.0447219 --0.0100127 --0.0828484 -0.00757368 --0.0113848 -0.00745957 -0.0501312 --0.0534459 --0.0433664 -0.0200321 --0.000385888 -0.0320047 --0.0541229 --0.00117414 --0.109871 --0.0157698 --0.0672847 --0.0142163 --0.0226845 -0.0186733 -0.0423384 -0.0647651 -0.0297758 --0.0175785 -0.0577371 -0.0431242 --0.0564551 -0.00520082 --0.0160186 -0.00872976 --0.00643099 --0.0679137 --0.0282802 -0.0459819 -0.0330093 --0.0226027 -0.01423 --0.0206131 --0.0255137 --0.0468438 -0.0177752 --0.0640278 --0.104942 --0.0901614 --0.111757 -0.0575034 -0.0785649 --0.002198 --0.0175597 --0.0325396 -0.0762114 --0.0177669 -0.00979011 --0.0575068 -0.00801119 --0.03808 --0.017594 -0.0184756 -0.0303422 --0.04649 -0.0298305 -0.0472769 --0.0574391 --0.00496938 --0.040595 --0.0132951 -0.0540719 --0.00984195 --0.0287813 -0.0361092 -0.0460818 -0.0228712 --0.0641989 -0.00347838 --0.0151012 --0.0473051 --0.00153488 -0.0170456 -0.0355761 --0.0387295 --0.0442758 -0.044925 -0.0280904 --0.00559088 -0.100319 --0.0014474 -0.0378456 -0.0190632 --0.00184145 -0.0347392 --0.00481197 --0.0359924 -0.0164148 -0.0413403 --0.0599486 --0.0478875 -0.00194032 --0.0549866 -0.0402643 --0.0153035 --0.0492061 --0.0323253 --0.0378569 --0.010433 --0.0227661 -0.0436976 -0.0525173 --0.00629409 --0.0775576 --0.0949332 -0.0214574 --0.0304592 -0.0328689 -0.037909 -0.0156652 --0.0274305 -0.0299054 -0.0632584 --0.0615336 --0.0341636 --0.0134978 -0.0444014 -0.011896 -0.0439905 --0.0152909 --0.00774618 --0.0333037 -0.0544973 --0.062764 --0.0228914 -0.038979 --0.0277556 --0.0704291 -0.0317476 -0.0141338 -0.00430629 --0.0429992 --0.0160519 --0.0191196 --0.0877244 --0.0133728 --0.0407072 -0.131655 --0.0576005 -0.0162588 --0.00872568 -0.0192282 -0.0529171 -0.0480496 --0.0328296 --0.055553 -0.0130271 -0.0622076 --0.00316039 -0.0184773 -0.0565214 --0.03283 -0.0955808 --0.0160121 --0.00290758 --0.0261836 -0.0349863 --0.0149305 -0.0128852 --0.0154972 --0.0719111 -0.0670932 -0.0968869 -0.00300671 --0.0301409 --0.00966774 -0.0343472 -0.0860819 -0.0509269 -0.0593469 --0.0113567 --0.0188484 -0.0462833 --0.00967628 --0.0477908 -0.00371783 -0.0182917 -0.0554852 --0.00905062 --0.00837935 --0.0761585 -0.0217366 -0.0201579 --0.0128504 -0.0808232 -0.0440619 -0.0759191 -0.0800175 -0.000823967 --0.0643817 -0.0108218 --0.0128896 --0.0286673 -0.0335532 -0.0159546 --0.00676096 -0.0567838 --0.0693839 --0.0698682 -0.00162937 -0.0656742 --0.0838695 -0.0241516 --0.123185 --0.0172867 -0.0148898 --0.00227571 -0.0427978 -0.0326575 --0.00527201 -0.0235679 --0.0286606 -0.040242 --0.103832 --0.0108821 -0.0936873 --0.0179362 -0.000829467 --0.0398377 -0.0833901 -0.0567597 -0.0156519 --0.00876201 --0.0555751 -0.0193251 --0.00136196 -0.00262265 -0.00619297 -0.0320074 -0.0728641 -0.0808214 -0.0217311 --0.0181351 -0.00172694 --0.00285176 -0.027034 -0.0438816 --0.100345 --0.000525974 -0.025541 -0.138319 --0.122102 -0.0544729 --0.0112643 --0.0683073 --0.0146059 -0.0139316 -0.0149482 -0.0460387 --0.044253 --0.043421 -0.060739 -0.0189464 -0.018198 -0.0210355 --0.0735393 -0.119622 -0.0174369 --0.0429269 -0.00866496 -0.0105686 --0.0196608 -0.0653283 -0.103318 --0.048798 --0.0117941 -0.0375327 --0.0172012 -0.00665473 -0.0289178 -0.0832237 -0.0452327 --0.0208785 -0.0277345 -0.0322145 --0.00758673 -0.0324057 -0.0271181 --0.027115 -0.034407 --0.0261389 -0.0982662 -0.0242109 --0.0113042 -0.0643927 --0.0136736 --0.0120734 -0.00561027 -0.0134454 -0.0166977 -0.066003 -0.0992193 -0.00796363 --0.0697425 -0.0107832 -0.0270631 --0.0703833 -0.0492282 --0.0382205 --0.0104535 -0.00351556 --0.0500985 -0.0248056 -0.0393966 -0.0232036 -0.112858 -0.0218349 --0.00264186 --0.0265676 --0.0348024 -0.0407069 -0.0242784 --0.0106718 -0.118402 -0.0176416 -0.0501083 --0.0546413 --0.0174012 -0.0832865 --0.0266812 -0.0274165 --0.0361799 -0.0413919 --0.00555536 --0.025961 --0.0986644 --0.0680262 --0.0443409 -0.126514 -0.0948381 --0.0786866 --0.0178713 -0.0477269 -0.0823489 -0.023543 --0.00321817 -0.054802 --0.0110625 -0.0323892 -0.00517185 --0.00456319 -0.00696322 --0.0746588 --0.0529362 -0.00365848 --0.0554622 --0.0330699 -0.0331287 -0.0548843 --0.0423424 --0.0185101 --0.00149809 -0.0229974 --0.0315025 --0.0816348 --0.0843011 -0.0207739 -0.0870901 --0.0409859 -0.0265261 --0.0385546 --0.141754 -0.00916275 --0.0460345 -0.0472329 -0.0707415 --0.0833255 --0.0445304 --0.0268427 -0.00267012 --0.0378148 -0.0439438 --0.119927 -0.0287388 --0.0201738 --0.0360275 -0.113965 --0.0787518 -0.0319704 --0.0658654 --0.0930387 -0.00398794 -0.0420883 --0.00493667 -0.0275561 -0.0269465 -0.0875567 -0.0029696 --0.0407275 --0.0384754 --0.0211589 --0.0323389 --0.0332362 -0.0792034 -0.0192216 --0.0790031 --0.0514626 --0.00182054 -0.05745 --0.00896203 -0.00323313 --0.0436334 --0.0752096 --0.00414503 --0.0957981 -0.000341184 -0.0206977 --0.0511399 --0.0762587 --0.0405917 -0.0133829 --0.000922908 --0.021281 --0.0967532 -0.0268613 -0.0155978 -0.057792 --0.0187567 -0.0653474 -0.0451274 -0.0276156 -0.0241667 --0.0161648 -0.014207 -0.0520322 --0.0529101 --0.011121 --0.000441543 --0.0385456 --0.0038904 --0.0243991 --0.076628 --0.00067096 --0.0160605 -0.0102563 --0.0090143 -0.044771 --0.00209347 --0.0214431 -0.0856161 --0.0313577 --0.0813456 --0.0335099 -0.0207182 -0.0812962 -0.0175818 -0.0258791 -0.0188143 --0.015311 --0.0672098 --0.000667354 -0.0522377 --0.0170904 -0.0615384 --0.0964799 --0.0184655 --0.00359626 --0.142627 --0.0405662 --0.0206033 -0.00098574 --0.0127014 -0.0552364 --0.0101518 --0.0296515 -0.0314442 -0.048538 --0.0248436 --0.109278 -0.0160494 -0.00732583 -0.00946369 -0.0226005 -0.0181909 -0.0629653 --0.0223709 --0.00589329 --0.0335586 --0.0644346 -0.0334515 --0.0221648 -0.0669994 -0.0437628 -0.0183007 --0.0345039 --0.0352168 -0.142537 -0.0272387 --0.0186662 --0.00814772 -0.000916006 -0.0141276 --0.0119841 -0.0132354 --0.0281106 --0.00653847 -0.0199909 -0.00945441 --0.0409042 -0.0881976 --0.00710435 --0.0445018 --0.019539 -0.0301542 --0.0266033 --0.0108821 -0.0356943 -0.0381626 --0.079062 -0.0451948 -0.0719656 --0.0581673 -0.0370614 --0.035567 -0.0340536 --0.0414599 --0.04999 --0.0352894 -0.0307118 --0.0367604 --0.0676658 --0.0380326 --0.0267269 --0.0118682 --0.0179904 -0.0112294 --0.0712012 -0.119578 --0.0683163 -0.0551391 --0.00844607 --0.0328877 -0.0795408 -0.0934483 -0.018679 --0.0429933 -0.0817395 -0.021126 --0.00842661 --0.00565095 -0.0362774 -0.0117785 --0.0300801 --0.0231849 --0.0133378 -0.066197 --0.0722907 --0.0262158 --0.0594843 --0.0891323 -0.0124102 --0.0560404 --0.00193716 --0.0704715 --0.00139651 --0.101782 --0.0482578 --0.0497845 -0.0465446 --0.0228251 --0.0032715 -0.0091417 --0.071225 -0.0483992 --0.0380771 --0.0436705 -0.0743259 -0.0802065 --0.0575329 -0.0896805 -0.0152856 --0.0304576 -0.0394244 -0.0580791 --0.0240919 -0.0442654 --0.0698731 --0.0372178 --0.046848 -0.0328618 --0.03168 -0.0252768 -0.0206522 --0.019366 --0.00427761 --0.0207707 -0.0414191 --0.118294 -0.0762618 --0.0105617 -0.0410748 --0.00914858 --0.00813169 -0.0630516 -0.0614993 --0.0418394 -0.0377746 --0.0955405 -0.00361421 -0.0775134 --0.0251226 --0.0136758 -0.0623496 -0.0225187 -0.0165877 -0.0140362 --0.0015595 --0.00571857 -0.0104797 -0.00840673 -0.0219921 --0.082057 --0.0732543 -0.00543695 -0.0477016 -0.0677954 -0.112316 --0.0889016 -0.0421263 -0.0796697 --0.0268362 --0.0752689 -0.0314632 -0.0827511 -0.0168591 -0.0757081 -0.0497911 -0.0693662 --0.0338934 -0.0511818 -0.0337108 --0.00241211 --0.0506062 --0.0172201 -0.0118343 -0.0131396 -0.0171689 -5.16351e-05 -0.00580497 --0.0420325 -0.0292274 --0.00372009 --0.0822943 -0.0512918 --0.0476137 --0.0330722 --0.0547154 -0.0123368 -0.0164597 -0.0213754 --0.0209244 --0.00316661 --0.0182255 --0.057628 --0.00344691 -0.0782333 -0.0405192 --0.0189151 -0.00504635 --0.0397728 --0.0519886 --0.0154606 --0.0160117 -0.00947274 --0.0112453 -0.0377391 --0.0704061 -0.0110521 --0.0574633 -0.0194825 -0.0422601 -0.0267521 --0.0243157 -0.0051243 -0.0915281 --0.00370255 --0.00270293 -0.0359903 --0.0175129 -0.038639 -0.0401125 --0.0206073 -0.0488204 --0.000104704 -0.0621151 -0.0190886 -0.0539615 -0.0547369 --0.0324551 --0.0321436 -0.0109328 -0.0646508 --0.0234727 -0.0296272 -0.0416493 -0.002558 -0.0472271 --0.0911381 -0.0246534 --0.0615735 --0.0282171 --0.0378398 -0.0444236 -0.0931327 -0.0162962 -0.0607541 -0.022532 -0.0558083 --0.0478634 --0.0438867 -0.0786054 --0.0393094 --0.0575758 --0.013208 -0.0662357 --0.0495304 -0.0641719 -0.0102741 -0.113821 -0.0439453 -0.0383394 --0.00866606 --0.112521 --0.102254 -0.016433 -0.0134596 -0.0599535 -0.0992846 -0.0250147 -0.0205038 -0.119341 --0.0223787 --0.0298108 -0.0572768 -0.0359011 -0.0266539 -0.0396047 --0.0817537 --0.0082648 -0.0789893 -0.0375544 --0.0134923 -0.0779801 -0.0652817 --0.0371452 -0.0726835 -0.0101606 -0.00222593 -0.0273648 -0.030578 --0.0483436 --0.0078266 -0.0779055 -0.0782942 -0.0471937 --0.0277154 -0.0162272 --0.0203646 -0.0364772 -0.0732111 --0.0470069 --0.0282608 --0.0965394 -0.0891792 -0.0113181 -0.00256347 --0.0745854 --0.0467025 --0.00619453 --0.0872629 -0.0248243 --0.0163632 --0.0345573 --0.0324977 --0.0526784 -0.00229335 --0.0433008 --0.0269764 --0.0746308 --0.0153582 -0.107822 --0.00646459 -0.0465121 -0.0860825 --0.00502522 --0.0412004 --0.030225 --0.0301484 -0.0121935 --0.0800918 -0.0416212 --0.0420884 --0.015847 --0.0579445 --0.00477212 --0.0468756 --0.0142765 --0.0452261 -0.0605173 --0.0154907 --0.00223441 -0.0813024 --0.0336047 -0.0541018 --0.07967 -0.0477883 --0.0284414 -0.0521992 --0.00938165 --0.0610947 -0.012115 -0.00236319 --0.0174929 --0.00826186 -0.00509544 -0.120292 -0.0106433 -0.021323 --0.00841966 --0.108533 -0.0376716 --0.0284867 -0.00964417 -0.0344364 --0.0649202 --0.0241008 --0.0660698 --0.0491878 -0.0387894 -0.000698711 --0.0282283 --0.0116407 -0.0635251 -0.0101153 -0.0569372 -0.0503846 --0.000706029 -0.0205096 --0.0372108 --0.028018 --0.0650073 --0.0807621 --0.0193404 -0.0568832 --0.0433158 --0.0480859 -0.0212373 -0.00327776 --0.0623494 -0.0268531 --0.0675069 --0.0416687 --0.00627798 -0.0415364 --0.00573378 -0.0260823 -0.00810492 --0.064493 --0.000859251 --0.0139938 --0.00667004 -0.030522 -0.0146528 --0.0328252 --0.02033 -0.0636399 --0.105514 --0.0383977 --0.0915236 -0.0253235 -0.0529896 -0.0133679 --0.0535172 --0.0726144 -0.00326094 -0.00657872 --0.0327819 -0.0345731 -0.030899 --0.0792296 --0.0965634 -0.0508711 --0.045866 -0.0446327 -0.080208 -0.0918766 --0.00611114 --0.0322786 --0.0963776 --0.0669563 -0.0249879 -0.0208908 --0.00187419 -0.00647584 -0.000862437 --0.0535365 --0.0291734 -0.0473775 --0.02511 --0.00579198 --0.0524771 -0.0473722 -0.0881337 --0.000622213 --0.0865458 --0.0715552 -0.117164 -0.0539212 -0.0469612 --0.00438501 --0.0919568 -0.00528093 --0.0441296 -0.00896739 -0.0536568 --0.0227262 -0.0429103 -0.0735404 -0.0133783 -0.0933995 -0.0132628 -0.00221517 --0.000551328 -0.020833 --0.0387444 --0.0409497 --0.072416 -0.012668 --0.0134429 --0.00318603 -0.0379497 --0.00730959 -0.0308593 -0.0384284 -0.0140362 --0.00619661 --0.0301492 -0.0405836 -0.0174228 --0.00759912 --0.0368482 -0.00997235 --0.0965112 --0.068836 --0.0396279 -0.0230802 --0.0524287 -0.0381958 --0.0748842 -0.0333827 --0.0744495 -0.0154654 --0.0362671 --0.0060716 -0.103382 -0.118232 -0.0407246 -0.0046457 -0.0150772 -0.0676903 -0.0193337 -0.0108065 -0.0272469 --0.0959959 -0.0782067 -0.0267161 -0.000197357 --0.0545539 -0.0302592 --0.00463123 --0.0700735 -0.0187032 --0.0249342 --0.0364721 --0.0401274 -0.0480616 -0.0519113 --0.0490844 --0.0782626 --0.00899844 -0.032116 -0.0542761 --0.0381208 --0.158585 --0.00605569 --0.0574299 --0.065678 -0.0656285 --0.103417 -0.0726792 --0.0116002 -0.05593 -0.0213553 --0.0519771 --0.00565185 -0.0406213 --0.02367 --0.0124066 -0.0214691 -0.0101402 --0.012671 --0.0169752 --0.0165447 --0.0210253 -0.0118229 -0.0509452 --0.0139951 --0.0914052 --0.076368 -0.0561666 --0.00114554 -0.0552079 -0.0461578 --0.0440788 --0.0392996 --0.037912 --0.048653 --0.0294406 -0.0316818 -0.0507893 --0.0476687 -0.0408424 --4.78691e-05 -0.0460536 -0.00347981 --0.0152752 --0.00375686 -0.105587 -0.0215796 -0.0210374 -0.0476569 -0.004287 -0.046841 --0.0219843 --0.0541846 -0.0671141 --0.0951698 --0.117391 -0.0272557 -0.0056124 --0.00221687 -0.0413456 -0.0542126 -0.0566774 --0.0118591 --0.0160472 -0.0157618 --0.0617971 -0.0583596 -0.0625638 --0.095984 --0.0579423 -0.0985491 --0.00604782 --0.0455066 --0.0178987 -0.00668902 --0.00453501 --0.00799298 --0.00656693 --0.0476788 --0.0690686 -0.0341689 -0.00337811 -0.0362019 -0.00302704 -0.0161532 --0.0268958 --0.0255846 -0.0679434 --0.0365487 --0.0751751 --0.012726 -0.016548 --0.052516 -0.0918529 --0.0179951 -0.0637599 -0.0961632 -0.0641946 -0.0378338 --0.0523452 --0.0354013 -0.114692 -0.0263425 -0.0114177 --0.0495804 --0.102245 --0.0245457 -0.10415 --0.0459707 -0.00675169 --0.0456698 -0.0343857 -0.0819925 --0.0456971 -0.00526975 -0.1363 -0.0111874 --0.00878684 -0.0835539 -0.044333 -0.00509939 -0.0239929 --0.0102103 -0.00796635 -0.0623922 --0.0269074 -0.0158439 -0.0576675 --0.0668418 -0.0521577 --0.0212784 --0.0617806 --0.0626786 -0.0110314 --0.0779917 -0.0595732 --0.0464944 --0.0300909 -0.0926773 -0.0260594 --0.0569852 -0.0391374 --0.0280931 -0.0160137 --0.056652 -0.0303145 -0.0486877 -0.111305 --0.0210666 -0.0426297 -0.0436906 --0.0391397 -0.040831 --0.0052372 -0.0733772 -0.0673202 --0.111386 -0.0620364 -0.0512883 -0.0129448 --0.0309687 --0.0406732 --0.0496005 -0.0945962 --0.0883757 --0.0777441 -0.0458562 --0.0917758 -0.00391007 --0.0693567 --0.0144597 --0.0431591 -0.112083 -0.008694 -0.0415959 --0.059608 --0.0334483 --0.0283493 --0.00285918 -0.0982541 --0.0999219 -0.0177643 --0.0784419 --0.000341402 -0.092148 --0.0489811 -0.045604 -0.0516059 -0.0641447 --0.00592822 --0.0767063 -0.0106889 --0.0750654 -0.0409652 --0.0799074 --0.0463408 --0.0115924 -0.0486979 --0.0164304 --0.0325559 -0.0294435 --0.0455704 --0.0150317 -0.0691804 -0.0713893 --0.0433283 --0.0600241 --0.0875206 -0.0465732 --0.0638668 -0.051076 -0.02461 -0.0702758 -0.0377206 --0.0150684 --0.102215 -0.00232646 -0.0241052 -0.0609181 -0.0486022 -0.0139977 -0.0623648 --0.014067 -0.044135 -0.00335628 -0.0275256 --0.050571 -0.0312784 -0.0320256 --0.0256778 -0.0364676 -0.0652708 -0.0376392 --0.101167 --0.00483163 --0.0218496 --0.0704347 -0.0170073 --0.0322209 --0.0343144 -0.0379645 -0.0409031 --0.112353 --0.00641597 -0.0770677 -0.0863229 --0.0198437 --0.00804106 -0.0373071 --0.0582181 --0.146764 --0.00224459 -0.00563132 -0.0435464 --0.019187 -0.0154528 -0.111838 --0.00765836 --0.0863634 -0.0489477 --0.0388737 --0.0308518 --0.023523 -0.0213221 -0.000983264 -0.00069104 --0.0344886 --0.0487705 -0.0259532 -0.0837646 -0.0417549 --0.0275298 -0.0128654 -0.00664682 -0.0131813 --0.0747047 -0.0633818 -0.0134065 --0.0321982 --0.00782277 --0.0340984 --0.00844775 --0.0097104 -0.027715 --0.0526072 --0.162173 --0.0189604 --0.00360239 --0.000867151 --0.0443725 --0.0480469 -0.0399728 -0.0244634 -0.00268131 -0.0446062 -0.0503014 -0.00132709 --0.026253 -0.0463111 -0.0570155 --0.0420365 --0.0313497 -0.0516994 -0.00976629 --0.0365666 --0.0175983 -0.0464184 -0.0127554 --0.0181277 -0.0315017 --0.0176959 -0.0720117 --0.0328536 -0.0530062 --0.0481976 --0.00153188 -0.0916028 --0.0783964 --0.00345309 --0.00277967 --0.0309901 -0.0328962 --0.0328539 -0.0255018 -0.0173452 --0.00251929 -0.00075375 -0.103467 -0.0465163 --0.0229207 --0.0297292 -0.0408676 --0.00598195 --0.0221281 --0.0481324 -0.0229247 --0.0418779 -0.0551604 -0.0184848 -0.0335721 -0.00611667 --0.027006 -0.0149965 --0.067964 --0.0132713 --0.0362454 --0.0607569 --0.0280756 --0.0376753 -0.0538398 --0.0553894 --0.0732548 --0.0813885 -0.0584172 -0.0346985 -0.00822557 --0.0646397 --0.00499005 --0.0328378 --0.110158 --0.0168593 --0.0512533 -0.0116774 --0.0938805 --0.00311976 -0.0737951 -0.0846277 --0.00987136 -0.00293811 -0.109939 --0.0361685 --0.0310047 -0.0317872 -0.034329 -0.00489813 --0.00164583 --0.0268857 -0.0127711 -0.056463 --0.0762964 --0.0140644 -0.0509878 --0.0140371 --0.0689464 -0.0462582 -0.00867474 -0.00115959 --0.0318996 --0.058578 --0.101138 --0.0147412 --0.040311 --0.00966502 --0.0412678 --0.105235 --0.0230427 --0.108711 -0.0633624 -0.0142867 -0.109966 -0.0293528 -0.00966207 --0.0551522 -0.0403391 -0.0693092 -0.0661958 -0.136072 --0.00988127 --0.0251145 -0.0728174 -0.00853906 -0.0463524 -0.0668552 -0.0102783 -0.043357 --0.000347741 --0.0191239 -0.0300724 -0.0287538 --0.12645 --0.00539117 -0.00744628 --0.0518892 -0.0259634 --0.0364103 -0.00445972 --0.000965686 -0.0160361 -0.0028386 -0.0222735 --0.00768927 --0.0287289 -0.0264207 --0.0291816 --0.0304638 --0.0843201 -0.00663173 --0.048375 -0.0073526 --0.043766 -0.0428796 -0.0586425 --0.0251561 -0.0186213 -0.0184665 -0.0516987 --0.0674535 --0.0753284 --0.0363668 -0.00507295 -0.0549527 -0.00489506 -0.00563017 --0.0647775 --0.0301885 --0.00897813 -0.0105951 --0.0229562 -0.157823 -0.0389275 --0.0274695 -0.0817182 -0.0163248 --0.0513852 --0.0147009 --0.00685439 -0.0236487 --0.0442657 --0.0344385 --0.0124562 --0.018519 -0.0403915 --0.0134104 -0.0474946 -0.0478001 --0.0290682 -0.0105692 --0.0110908 --0.0261368 --0.0139861 --0.0195685 -0.0332323 -0.0324274 -0.103901 --0.0553822 -0.0355469 -0.0512002 --0.00609049 -0.0613312 -0.0862838 -0.00730647 --0.00869 -0.0164528 -0.00828442 -0.0240204 --0.0493125 --0.0897161 -0.00184861 --0.0255746 --0.00385739 --0.0943782 --0.0371438 -0.0545367 --0.0468231 -0.0146368 --0.0263417 -0.0607225 -0.0124293 --0.0851104 -0.00967272 --0.0197181 --0.0832308 -0.098817 -0.000782899 --0.0632329 -0.0521585 --0.0490732 -0.0376545 --0.0672571 --0.0250623 --0.0982853 -0.0533809 --0.0418288 -0.020239 -0.0094488 --0.0416334 --0.0182675 -0.121873 --0.0265725 --0.0282428 --0.0489306 --0.0146943 -0.0402564 --0.0258216 --0.0265987 --0.0475494 -0.0435423 --0.0417754 --0.0808201 --0.0565803 --0.00732098 --0.0724454 --0.0066829 --0.0210138 --0.0217745 -0.0599925 --0.0185844 --0.019194 -0.0349493 -0.0484334 --0.0640271 -0.00842741 -0.025239 -0.0381066 -0.00864099 --0.0144834 --0.0133922 -0.0623048 -0.0683324 -0.0811109 --0.00522747 -0.0927241 -0.0764691 --0.079946 -0.0141977 --0.034526 -0.0119673 --0.00516247 -0.00879321 --0.0465443 -0.0505986 -0.00918284 -0.0112776 --0.0428877 -0.0133504 -0.000323033 -0.00520481 -0.0175688 -0.0110651 --0.0594722 -0.104086 -0.0572885 --0.0365755 -0.0829055 -0.0158309 --0.0496369 --0.02336 --0.0319529 -0.0413821 --0.0567056 -0.111136 -0.0106452 --0.00854918 --0.044472 -0.0340741 -0.128955 -0.0545285 --0.0273135 --0.11513 -0.0527622 --0.00585393 -0.0517804 -0.0718732 -0.00160081 -0.0283297 -0.0333247 --0.0234366 --0.00391726 --0.0267762 --0.0573996 -0.0379732 --0.0244801 --0.0889335 -0.0361649 --0.0726979 --0.109832 --0.12867 --0.000406611 -0.051899 -0.0389014 --0.148252 --0.023751 -0.0551158 -0.0190118 -0.0392787 --0.0916527 -0.0443654 --0.00327718 -0.0370598 -0.0077489 --0.0291894 -0.0466992 --0.0729395 -0.0268784 -0.0111158 -0.056373 --0.0205285 -0.0573889 -0.0273132 -0.0323984 -0.024089 --0.168307 --0.0491538 --0.0329056 -0.0191326 -0.0273051 -0.0201566 -0.00607298 --0.00390423 --0.0543295 --0.00366719 -0.0178103 -0.0601018 --0.048043 --0.00800299 -0.056864 -0.0353783 --0.00496491 --0.01635 --0.00373134 -0.0782001 -0.0142967 --0.0408515 -0.00412106 --0.0138777 --0.00822169 -0.0902474 --0.00729165 --0.0232765 -0.0285619 --0.0348958 --0.0304175 -0.0691137 --0.0796284 -0.0669041 --0.0522604 --0.03212 -0.0152788 --0.0447383 -0.0914175 --0.0156258 -0.0207685 -0.0752571 --0.103602 --0.00873554 --0.0216987 -0.0150049 -0.0401468 --0.0762005 --0.0245382 -0.0427895 -0.0804045 -0.00319774 --0.00363729 -0.0211837 --0.133879 --0.0542365 --0.0446462 -0.0465502 -0.0142007 --0.0571303 --0.0158855 --0.00706968 -0.103489 -0.0131825 --0.0446829 -0.0361173 --0.0856982 -0.0357273 --0.0803452 --0.0709028 -0.0646115 -0.0723419 --0.00151127 --0.0150341 --0.0332903 --0.0202146 -0.0995215 --0.00850432 -0.00518805 --0.0147744 --0.0189854 --0.0187617 --0.00644518 -0.0675991 -0.00409126 --0.124548 --0.0160929 -0.111151 --0.0464795 --0.0679393 -0.0966427 --0.0320992 --0.0902891 --0.0458001 -0.0677939 -0.0258122 --0.0377749 --0.0597529 -0.0461772 --0.0117801 -0.00832034 --0.0145013 --0.0493363 -0.00928506 --0.0449437 -0.00482906 --0.0272814 -0.00725803 --0.0660747 -0.00176825 --0.0887336 --0.014713 --0.0273474 --0.0946249 -0.00117125 -0.087225 -0.0816051 --0.0569148 -0.0079527 --0.0478674 --0.0207166 --0.067954 -0.0479256 -0.00120722 -0.0128398 --0.00314433 -0.0769908 -0.0378205 -0.0463879 --0.0590753 --0.0181958 --0.0141178 --0.0114092 -0.00199626 --0.0991223 --0.0549293 -0.0235344 --0.030494 --0.0705599 -0.0339234 -0.0231782 -0.0199329 -0.0263445 --0.032457 -0.0114873 -0.0376369 --0.0139657 -0.0481951 --0.00167403 -0.0620391 -0.0547648 -0.00989047 -0.0177765 -0.0575884 --0.0317532 -0.0105847 -0.0277152 -0.0799112 --0.00667031 --0.0649491 -0.0413229 -0.0919509 -0.0124699 --0.0137138 -0.0350373 -0.072038 -0.0735102 --0.0198824 --0.0576239 --0.0371083 --0.0326561 --0.0228647 -0.0154397 -0.0134519 -0.0159232 --0.0480444 --0.0176856 -0.0275336 -0.0173781 -0.0058243 -0.0288326 --0.0428825 -0.00817093 -0.0180135 --0.00237605 -0.0195541 --0.038513 --0.0444175 --0.0302867 -0.0169012 -0.00860807 -0.0370906 --0.032454 -0.0688937 --0.0072119 -0.0410775 --0.0421796 --0.024962 --0.0113994 --0.0583173 -0.0465663 -0.0118351 --0.0290032 --0.0234222 -0.0403362 --0.02766 -0.0421203 --0.00522872 -0.051292 --0.0631361 --0.0493953 -0.00611866 --0.163354 -0.013592 --0.0348307 -0.0657276 -0.0694333 --0.0575691 -0.0426869 --0.0284963 -0.0833062 --0.0821086 --0.04116 --0.0364968 -0.0971966 -0.0552442 -0.0404607 --0.00166745 -0.00326584 --0.0374038 -0.0218321 --0.00135432 -0.0824718 --0.0656949 -0.0701123 -0.0237601 -0.0396105 --0.104017 -0.0468608 -0.00587662 -0.0167189 -0.0633991 -0.0339446 -0.0322918 --0.0339893 --0.0303753 --0.0350008 --0.0103379 -0.00236939 --0.0758554 -0.0380387 --0.00332838 -0.0167873 --0.00369374 -0.0416066 -0.0204933 -0.0115927 --0.0526206 -0.02623 --0.091291 --0.0173983 --0.0430423 --0.0072236 -0.0073815 -0.0680226 --0.0812471 -0.0566916 -0.00480269 -0.0807071 --0.00171119 --0.0217067 -0.0416974 --0.00488341 --0.0153339 --0.0356636 -0.0944586 -0.0188206 --0.016105 -0.00676853 --0.0344056 --0.0162519 -0.070648 --0.0279572 --0.0718772 -0.0463437 --0.014866 --0.000564527 -0.0386148 --0.0251883 -0.0566714 -0.0501327 -0.0100381 -0.0432513 -0.0117371 --0.0471586 --0.0613442 --0.00212274 --0.047976 -0.00332143 -0.0141047 --0.0912891 -0.014394 --0.0336014 -0.0202028 -0.0235041 -0.0918814 --0.00969518 -0.0313499 --0.0531895 -0.0230718 --0.100106 --0.0419567 -0.0538791 -0.0399459 --0.0902457 -0.0125546 -0.0443512 --0.0866511 --0.033744 --0.0132777 --0.030271 --0.026596 -0.00731329 --0.0446911 -0.055356 --0.101313 --0.0473539 --0.0585536 --0.0242309 -0.00248099 -0.0680485 -0.0747408 -0.0174283 --0.014776 --0.0222376 -0.081853 -0.0239438 --0.0455622 --0.0291267 --0.066133 --0.019792 -0.068445 -0.0312779 --0.00455675 -0.0495306 -0.0371584 --0.00267109 -0.0206756 --0.00893295 --0.0300166 --0.130099 --0.0773718 --0.0341588 -0.0294664 --0.110336 --0.0151119 -0.072196 -0.0595554 -0.0129242 -0.0295769 -0.0374476 -0.0403355 -0.01971 -0.0376393 -0.00585879 --0.0526237 --0.00663443 -0.0106361 --0.0206589 -0.0784317 --0.0169252 -0.0707195 -0.0123311 -0.0751196 -0.0319351 --0.0303126 --0.00371154 -0.0251676 -0.0104687 --0.0243523 -0.0229598 --0.0178756 --0.0584369 -0.0685087 --0.043025 -0.0599288 --0.104031 -0.0265802 --0.0958555 -0.126238 -0.0385738 --0.066149 --0.0323348 --0.0265627 --0.0249939 -0.00279289 --0.0861818 -0.0159425 -0.0159794 --0.0735323 -0.0087914 --0.058278 --0.000753359 -0.0255896 --0.00219389 -0.0434749 -0.0113809 -0.0223876 -0.0204622 --0.049507 --0.0208871 -0.0331416 -0.0080852 -0.00283368 -0.0360032 -0.133194 -0.0808627 --0.0518218 -0.0207905 -0.020923 --0.015943 --0.00480301 --0.00185976 --0.0592777 --0.0625255 --0.0563025 --0.0494192 -0.0458636 -0.0410657 -0.0360598 -0.0146833 --0.0106709 -0.0246552 --0.0780472 --0.089056 -0.0180012 --0.0449617 --0.0331184 -0.047845 --0.0899758 --0.0731186 --0.0191137 -0.0778708 -0.0423834 --0.00903747 -0.00487523 -0.0158351 -0.0516707 --0.00527477 --0.0890556 -0.00305879 --0.00031814 -0.0368046 -0.0343321 -0.010436 --0.0556598 --0.0241296 -0.0739113 --0.0472647 --0.00874169 --0.0258971 --0.0083405 -0.00537628 -0.0369978 --0.0392594 -0.0268948 -0.0288317 --0.0484941 -0.0587623 --0.0431189 -0.0181499 -0.0165202 --0.043072 --0.0251407 -0.0362462 --0.015395 -0.00923343 -0.0715643 -0.0285282 -0.0404913 -0.0797597 --0.0310217 -0.0259591 -0.0492603 -0.0508355 -0.0371548 --0.0325778 -0.0579104 -0.0315185 -0.0381053 --0.109737 -0.0122034 -0.0216037 --0.00126834 -0.0176079 --0.00725593 --0.0300489 -0.0589459 -0.000183323 --0.00844223 --0.0175087 -0.00976802 --0.0234324 -0.0162237 --0.00506307 -0.0510903 -0.0115329 --0.0298809 -0.0501338 -0.0571912 -0.0664473 --0.0412531 --0.023118 --0.0060148 --0.0175019 --0.00754819 --0.0363588 -0.00892766 -0.0201971 -0.0195127 --0.013573 -0.030556 --0.0620552 --0.0207941 --0.0362124 --0.0468139 --0.134803 -0.0452676 -0.0384286 --0.0490516 --0.00828892 -0.0426902 --0.00848708 --0.00728128 --0.0286793 -0.0227687 -0.0210654 --0.0476562 -0.00583215 --0.0350339 --0.0169079 --0.0754836 -0.0760396 -0.0413358 -0.0152495 -0.0704943 -0.0177303 --0.0383699 --0.0763523 --0.010212 --0.0662994 -0.0516761 -0.00685389 --0.0402061 --0.0614617 --0.0131569 -0.121886 --0.0231862 -0.0271222 --0.0164144 --0.029522 --0.0175316 -0.0220879 --0.0128054 --0.0253083 --0.0748793 --0.0784257 --0.0174795 -0.128163 --0.0288363 --0.0536269 -0.0299803 --0.00449239 --0.019528 --0.0813871 --0.038136 --0.0374 --0.0263117 --0.0167006 --0.0126169 --0.158554 -0.055903 -0.0569229 --0.0679607 -0.0142563 --0.0187117 --0.00886594 --0.0216265 -0.0113354 --0.0436338 --0.0132685 -0.0328532 --0.0582516 -0.0584207 --0.0586398 --0.0593116 -0.0370531 --0.0230189 --0.0138712 --0.0953459 --0.0460803 --0.0388004 -0.00582825 -0.0837954 -0.00911964 --0.05287 -0.000347064 -0.00776872 --0.0374614 -0.0349828 -0.0409906 --0.00912822 --0.127119 -0.03096 -0.0870721 -0.0694286 -0.0294665 --0.0504042 -0.000556406 -0.0440389 -0.0490997 -0.0598692 --0.0396418 --0.0265927 --0.0439348 --0.0253687 --0.0307624 -0.00317157 --0.0717934 -0.0559544 -0.0461131 --0.0489689 -0.034033 -0.0357222 -0.00932571 -0.0636892 -0.0032733 -0.0710427 --0.018519 --0.0111305 -0.0112822 -0.13416 --0.0101955 -0.0693838 -0.0855662 --0.0751931 --0.0690004 -0.0842129 -0.00782438 --0.0369577 -0.126161 -0.096144 --0.0326198 -0.0180933 -0.048181 --0.037703 -0.0105087 -0.0396607 --0.0579439 --0.0570127 --0.01678 -0.0412346 -0.0504194 --0.0809391 --0.0335248 --0.0077326 --0.0385487 -0.0442581 -0.0572656 --0.0131288 -0.0666218 --0.00123701 -0.0587611 -0.00919375 --0.0463226 --0.0838137 --0.0729783 --0.0469496 -0.00379756 -0.0314846 -0.0479737 --0.0638495 -0.0695229 -0.0826239 --0.00526414 -0.083793 --0.0475323 --0.0164915 -0.0178082 -0.105358 --0.142611 --0.0139957 -0.0533165 -0.0899874 -0.0276008 --0.0463704 --0.0288421 -0.0133495 -0.0231564 -0.0176809 --0.0107782 --0.0139279 -0.148437 --0.0565215 --0.0183719 -0.0320194 -0.00766173 --0.0763714 --0.0441055 --0.0202404 -0.0325432 --0.0272944 --0.0542668 -0.0357696 -0.0281077 -0.0439987 -0.0422268 -0.0408074 --0.0241021 -0.000695876 --0.0498073 --0.0843981 -0.0633283 --0.0330623 -0.0232872 -0.0710042 -0.0376832 --0.0391567 -0.0738643 -0.034768 --0.0929944 -0.0259408 -0.00839183 -0.00210744 -0.00825287 -0.0162434 -0.0389507 --0.0576637 --0.0293654 --0.0262351 -0.112879 --0.0546432 -0.0373891 --0.055018 --0.012127 -0.0726564 --0.0350755 -0.00501531 --0.00867167 -0.017958 -0.0308954 --0.0545251 -0.0237398 -0.0320412 --0.0645018 --0.0269857 -0.0573482 --0.00507367 -0.00714356 --0.0650312 --0.0906482 --0.0767039 --0.0351424 -0.0463538 --0.0870107 -0.0326043 -0.0664314 --0.0323769 -0.0505666 --0.0136069 -0.0101644 --0.0662483 --0.0788819 --0.0600113 -0.0684153 -0.0223111 -0.0122377 -0.032864 -0.00575571 -0.00727422 -0.0845089 --0.0749877 --0.0301764 -0.0101044 --0.0111112 -0.00994955 --0.0693517 -0.00929777 --0.00485216 -6.39922e-05 --0.0124351 -0.016627 -0.0191669 --0.0248832 -0.0594712 --0.0920133 --0.0567426 --0.00311468 --0.00883774 --0.00052606 -0.0115947 --0.0524762 --0.0520614 -0.0345694 -0.00411476 --0.00382708 -0.0842322 -0.0535349 -0.104025 -0.00283574 --0.000629444 --0.0207726 --0.149622 --0.0437077 --0.00501587 -0.0309217 -0.0345683 -0.02572 -0.0147368 --0.0243377 -0.042425 --0.0170182 -0.0305972 -0.0402269 -0.0492961 -0.0496312 --0.0652924 -0.0659862 -0.115651 --0.0194568 --0.0478584 --0.0376837 --0.0201111 --0.0587415 --0.0918497 --0.0681564 -0.0233582 --0.0503627 -0.00645154 --0.0099926 -0.00644224 --0.0309149 --0.0270321 -0.00846381 --0.00160259 -0.0249957 --0.0907434 -0.0651528 --0.0364293 --0.0179953 -0.0165812 -0.0964319 -0.0482995 -0.0180452 -0.0197728 --0.0922781 --0.036209 --0.00427783 --0.00130584 --0.0351445 --0.0705156 -0.000434416 --0.0943552 --0.00427106 -0.0221695 --0.0392584 --0.000752494 --0.0759263 --0.00714801 -0.0557759 --0.0755072 --0.0249403 --0.0224797 -0.0851443 -0.0572726 --0.0436275 -0.00637507 --0.0317108 --0.00303267 -0.0565352 -0.0766106 --0.0227427 --0.0743513 --0.00102423 -0.020455 --0.0544987 -0.0864498 --0.00240548 -0.0276626 --0.0355861 -0.024854 -0.0473133 -0.0343303 -0.00352057 --0.0513794 -0.0954536 -0.0143349 --0.0405657 --0.0193119 --0.0081633 -0.0681965 --0.00835262 --0.0497329 --0.00403522 -0.0413736 -0.00853134 --0.0468312 --0.0773249 --0.0712234 -0.00227106 --0.0738057 -0.0819895 -0.052292 -0.0720707 --0.0188001 -0.0248767 -0.0304395 --0.0459316 -0.0421503 --0.0216499 -0.0016854 --0.0785726 --0.0743296 -0.0965192 -0.0693297 --0.0340437 --0.0164861 --0.052284 --0.0621004 --0.0577709 -0.053822 -0.0693359 -0.0812862 --0.0358353 --0.0169381 -0.0231241 --0.0261144 --0.0283106 -0.0559543 -0.025921 -0.0275481 -0.0108431 --0.0366613 -0.092296 --0.0695863 --0.00863577 --0.0563383 -0.0942624 --0.0014912 --0.0170212 --0.0378486 --0.0620943 -0.00620235 -0.0320634 -0.012893 --0.0251985 --0.119844 -0.0375388 --0.0889235 -0.0137337 --0.0404464 --0.0990266 --0.0480138 --0.0999285 -0.000422291 --0.0380308 --0.0423268 --0.0111254 --0.0299586 --0.0267459 --0.0852136 -0.0034194 --0.0577841 -0.0928204 -0.0493145 -0.0338959 --0.11506 -0.0149311 --0.00265499 -0.00494242 -0.061829 -0.0522291 --0.014259 -0.0402556 -0.0535008 -0.0764377 --0.0280549 -0.000348626 -0.00662811 --0.139727 -0.00301662 -0.00447303 --0.0866494 --0.0104565 -0.00286145 -0.0804191 --0.0473231 -0.0453279 --0.00704827 --0.00362945 --0.0585403 --0.0121152 -0.0693781 -0.0206408 -0.0445988 -0.0106828 --0.00799739 --0.00396245 -0.0117872 --0.000597505 --0.0594557 --0.118516 --0.0387663 --0.0440326 --0.0281167 --0.0666657 --0.00383329 -0.0298735 --0.00135153 -0.101145 -0.0173276 -0.0276778 -0.0332162 --0.0645053 -0.0201566 --0.063469 -0.0324544 -0.00179734 -0.00197814 --0.0448433 -0.0310961 --0.0116692 -0.0177875 -0.0590662 --0.0753775 --0.0250246 --0.0087453 -0.0182777 -0.0181439 -0.0664849 -0.00150019 -0.00540574 -0.00682649 --0.0570745 -0.0417288 -0.0410389 --0.0644538 -0.0126641 --0.0756459 -0.0193503 -0.00368099 --0.0290871 --0.000163442 --0.0632428 -0.021518 -0.0437693 --0.0549683 -0.0374232 --0.101454 -0.0767661 -0.0210633 -0.0565707 -0.0380611 --0.0161929 --0.0378249 -0.0287046 -0.00539149 --0.12135 --0.0216642 -0.0319363 --0.0390825 --0.00471245 -0.100168 --0.067305 -0.0237319 --0.0174352 --0.00927322 --0.0323587 --0.00823328 -0.000649893 --0.0486921 -0.0547322 --0.0703786 --0.0189581 --0.0160948 --0.00408046 --0.0326817 --0.0549724 -0.078862 -0.07909 -0.0319521 -0.0437958 -0.0279736 --0.0848572 --0.0155975 -0.0441411 --0.00962104 --0.0219613 -0.000160015 -0.0683049 -0.0374538 --0.0537129 -0.0514318 -0.0290534 -0.0149122 -0.0408518 -0.0901959 -0.0717793 --0.143112 --0.00457636 -0.0234261 --0.00588258 -0.0485199 -0.0718868 -0.0262298 --0.092662 --0.0317961 --0.0413841 --0.102661 --0.0399096 -0.0950383 -0.0262791 -0.00455989 --0.0213867 --0.0570164 -0.0928325 --0.0272678 -0.148654 --0.0055355 -0.0523847 --0.0327904 --0.0747337 -0.0366298 --0.000699471 -0.017645 --0.0123688 --0.0538887 --0.0189722 --0.005354 --0.026753 --0.0325424 -0.00228043 -0.0579372 --0.0261482 --0.0116283 --0.0453268 -0.0348846 --0.0257474 -0.0155587 --0.00106522 --0.0225576 --0.0817122 -0.00946331 -0.0755179 -0.0693564 --0.0245088 -0.0547763 -2.37632e-05 --0.0751734 --0.0184489 -0.037419 --0.0306262 -0.0101492 -0.0302462 -0.0109802 -0.0225648 -0.0320762 -0.0376083 -0.0167325 -0.0159588 -0.0144279 -0.0382342 --0.00951267 --0.0237088 --0.059842 -0.0522068 --0.00643286 -0.00671009 --0.0240785 -0.015456 --0.0186314 --0.00679573 -0.0268972 --0.0357347 -0.0344757 -0.0745067 -0.07602 --0.00146211 --0.0571548 --0.0821783 --0.0287075 --0.00102444 --0.0485298 --0.00562562 --0.0513241 -0.058098 --0.0433191 -0.0440192 --0.0254869 --0.023851 -0.0499755 -0.0256171 -0.0136765 -0.0643079 --0.0340332 -0.0256732 -0.0196624 --0.0293161 -0.0646952 --0.0192425 --0.0644915 --0.0892472 -0.0246752 -0.026155 --0.00610233 --0.0431106 -0.034485 --0.0355268 --0.0092564 -0.04225 -0.0342593 -0.0174258 -0.0450612 -0.0599826 -0.0542199 -0.0800456 --0.0957669 -0.0362522 --0.0261555 -0.044763 -0.0720201 -0.115498 -0.0692745 -0.0387324 -0.0624581 --0.00331597 --0.0253141 -0.086547 --0.015267 -0.0814688 -0.0450604 -0.019827 --0.0464669 -0.0501863 --0.0946616 --0.0212853 --0.015221 -0.0430963 -0.0239976 -0.0747867 --0.0343673 --0.0573197 --0.038911 --0.0798478 --0.00811289 --0.0271107 -0.0605069 --0.0274125 --0.0271383 -0.0190786 --0.023554 -0.0407136 -0.0205454 --0.041225 -0.0603893 -0.0305522 -0.0506648 --0.0773166 --0.100265 --0.085668 -0.0447411 -0.0496542 --0.0867601 -0.0234157 --0.0482313 -0.0468479 -0.105499 --0.0708862 -0.0656651 -0.0269622 --0.0216166 --0.00759642 -0.0508234 -0.0216316 -0.0474766 --0.0589388 --0.091365 --0.0399141 -0.0625255 -0.029316 -0.0596947 -0.0093152 --0.113581 -0.0425006 -0.00165356 -0.0085338 -0.00345263 -0.0194752 -0.00413604 --0.042584 -0.0526443 --0.0271142 --0.050382 --0.120865 --0.0289954 -0.00349307 --0.0544041 -0.0676604 --0.0215212 -0.0314807 -0.0999237 -0.0196227 -0.0110292 --0.0559823 -0.0634836 --0.0260478 -0.053122 -0.102738 -0.0545795 --0.0930389 -0.0724425 -0.0278453 --0.0406516 --0.0284471 -0.0125187 --0.0443893 --0.0389776 -0.00999666 -0.0361672 -0.0264556 -0.0332599 --0.0661157 --0.00870181 -0.0293441 -0.0668283 --0.0203938 --0.00136074 -0.0345051 -0.0615651 --0.0242804 --0.0740616 -0.0106407 --0.0739582 --0.0308255 -0.0353706 -0.0844128 -0.0746055 -0.0492452 --0.0437034 --0.0177692 --0.0465192 -0.0194822 -0.0112761 --0.0673535 -0.0157373 -0.0232139 -0.00134084 --0.0119668 -0.0628363 -0.018767 -0.0224221 --0.0571727 --0.0114673 --0.00101611 -0.0147443 -0.0231245 -0.0488189 --0.0169247 -0.0412061 --0.0291025 -0.075733 -0.0118918 -0.0801057 -0.00867284 -0.0838164 -0.0736911 --0.0121056 -0.0114743 --0.0276467 -0.0141218 -0.00456343 -0.0406751 -0.0364345 -0.00984998 --0.0762846 --0.0463258 --0.0154543 --0.0314677 -0.0346316 -0.0116469 -0.0425812 -0.0199423 --0.0361584 --0.0546448 -0.0857259 -0.0429594 --0.0109548 --0.0456514 --0.0300311 --0.0782541 --0.0358632 -0.0353993 -0.0608608 --0.0125169 --0.0759103 --0.0290772 -0.0364351 -0.0370029 -0.0760277 --0.0585576 -0.0891598 -0.098411 --0.0679063 -0.0464964 -0.0150251 --0.00767025 -0.0362053 --0.0350317 -0.00982945 -0.0425438 -0.0753382 -0.0182191 -0.0293485 --0.00280042 --0.0123063 --0.0069161 --0.00434677 --0.0514087 -0.034394 --0.0607747 --0.0326276 -0.0579703 --0.0655223 --0.0704117 --0.0819245 -0.0175484 -0.0346533 --0.0303869 -0.0762329 -0.0297603 -0.0821215 -0.0199044 -0.0466562 -0.0376565 --0.0302515 -0.0146 --0.0174004 -0.108474 --0.0394586 --0.0146109 --0.0157812 -0.0280573 -0.0139781 -0.0515402 --0.0493541 --0.0426852 -0.0408514 --0.0061393 -0.0675074 -0.0613927 -0.0684414 -0.00467086 --0.0204042 -0.0556394 --0.055719 -0.0800293 -0.0432035 --0.0262123 -0.0704611 -0.0306689 --0.0148723 -0.00105747 -0.105163 -0.0638361 --0.0650077 --0.0944029 --0.00559098 --0.0130385 --0.00230793 --0.0424478 --0.089428 -0.00964392 -0.0266062 -0.0378329 --0.127161 -0.00716231 --0.033156 -0.0431976 --0.0050609 -0.0198039 --0.0290032 -0.0162173 --0.0576907 --0.011556 --0.0605242 -0.00944019 -0.0727094 -0.00287353 -0.0256326 -0.0280015 --0.0345686 --0.0325494 -0.0244278 --0.0336778 -0.0657317 -0.0466527 -0.0953157 -0.0678151 -0.0235983 --0.0298776 -0.0625059 --0.0495214 -0.0327499 --0.0686024 --0.00467017 -0.110168 --0.0216804 --0.0172763 -0.0539589 -0.0211441 -0.0827091 -0.00473546 -0.0167016 -0.00330766 -0.0885096 --0.0259047 -0.0623879 -0.109564 --0.0317993 -0.0124046 -0.000115394 -0.0727448 --0.00557992 -0.00932431 -0.0956474 -0.0820786 -0.0379923 -0.0336819 --0.00753914 -0.0141469 --0.0483178 --0.0146171 --0.0308727 -0.0702955 --0.0753069 --0.0249486 --0.0578025 -0.0835355 -0.0103271 --0.0318281 -0.0120049 -0.0165025 --0.0715112 -0.0123427 -0.00855107 -0.0455486 -0.0317208 -0.0276156 --0.0495593 --0.0350208 --0.039404 --0.0574634 -0.0141098 -0.0426762 --0.0159097 -0.0620893 --0.0384897 --0.00220595 --0.0350253 --0.00295041 --0.0181075 --0.0675704 -0.00145051 --0.0202288 --0.00190138 -0.0587596 -0.000896791 --0.070244 -0.0300989 -0.000395282 --0.123638 --0.0187668 --0.037419 --0.0583568 --0.0169021 -0.00933359 --0.00176398 -0.0623664 --0.0975419 -0.0364677 -0.0701001 --0.0109627 --0.0588437 -0.0202368 -0.0834428 -0.0303156 --0.00483917 -0.00299575 -0.0604262 --0.017567 -0.0229252 -0.0456099 --0.0385709 --0.0119468 --0.0178113 --0.0730607 --0.0504401 -0.00740186 -0.0165564 -0.0546297 --0.0299053 --0.0182642 -0.0330877 -0.0469218 --0.017972 --0.00503792 --0.0151621 -0.0382396 --0.0381546 -0.104819 -0.0297775 --0.00710438 --0.0618481 --0.0352827 --0.00582076 -0.0224094 -0.0500611 -0.0490625 --0.00353264 -0.0191774 -0.0339262 --0.0115805 --0.0517796 -0.0209635 -0.0358027 -0.0520333 -0.00413373 --0.0469392 --0.0829806 -0.0337181 --0.0117128 --0.00893701 --0.0676021 -0.0244986 -0.00625372 --0.0618209 --0.0207269 -0.0553878 --0.000651056 -0.049141 -0.0398375 -0.0487118 --0.0322981 --0.028801 -0.0757986 -0.0471758 --0.0170165 -0.0155244 -0.0433972 -0.0211888 --0.0395329 -0.0804128 --0.0579057 --0.00385222 --0.00540029 -0.0524295 --0.025873 --0.019146 --0.00697598 -0.104756 -0.0617744 -0.052517 -0.0651412 -0.0770543 -0.0454687 --0.0130958 -0.0713437 -0.0519378 --0.0207839 --0.00865458 -0.0710415 -0.0350137 --0.0612061 --0.0657713 -0.0856788 --0.039017 -0.00133927 --0.0436726 -0.0178005 -0.0448578 -0.00130489 -0.0963017 -0.0303359 --0.0185979 --0.00588035 -0.0276626 -0.0471678 --0.0400239 -0.0554488 -0.0295221 --0.022212 -0.092556 -0.0302569 --0.0958086 --0.0156825 --0.0270511 --0.0556496 -0.0174971 --0.0160281 --0.0125193 --0.0754114 -0.0171173 -0.00696146 --0.0615904 -0.0454026 -0.0488743 -0.00812385 --0.0239744 --0.0763857 --0.0131544 -0.0543379 -0.0547138 -0.0876492 --0.0638205 -0.00721488 -0.0198495 -0.0604786 --0.00208059 -0.0304941 --0.028424 --0.0431969 --0.0755949 --0.0220287 --0.015187 -0.0527572 --0.024743 --0.0399942 -0.0799104 -0.0151265 -0.027151 --0.0166426 --0.0221127 --0.107584 -0.0270123 --0.0500377 -0.0605211 -0.0535847 -0.00989347 -0.0278885 --0.0284314 -0.0349281 --0.0398864 --0.0037528 --0.108717 --0.0295315 --0.0143304 -0.00783372 -0.0781627 -0.0817311 --0.00597135 --0.0184263 --0.00847056 -0.0449719 -0.021412 -0.0218369 --0.0341013 -0.0881473 -0.0502156 --0.0437826 -0.0739624 --0.0355278 --0.0403401 --0.0301824 --0.0080154 -0.07929 -0.00884068 -0.0369622 --0.0981305 -0.0612541 --0.0466189 -0.0416341 -0.0333103 -0.0198388 -0.0197609 --0.0121421 -0.0056897 -0.103313 -0.00940289 -0.0179396 -0.0451896 --0.0662369 -0.0450547 -0.0922661 -0.0691686 -0.027872 -0.071732 -0.0106298 -0.097597 -0.105202 -0.0119929 -0.0574432 --0.00926695 --0.0539572 --0.00266385 --0.100802 -0.0367378 -0.0433225 -0.0910543 -0.0119135 --0.0273263 -0.00845073 --0.0390231 -0.0369885 -0.0861314 --0.0680673 -0.0169813 --0.0385461 -0.053427 -0.0542414 --0.0306292 -0.089371 --0.0359236 -0.0638724 -0.0231651 --0.00157159 --0.00448664 --0.0914731 --0.0108039 -0.00516759 -0.0447499 -0.0299681 -0.0203793 --0.0377064 -0.0317076 -0.0344194 --0.0329114 -0.00914364 --0.0205263 -0.00388633 -0.0504467 -0.0138533 -0.0625117 -0.0382348 --0.0793194 --0.0235635 -0.039896 -0.0739085 -0.0363061 -0.0313776 --0.00226427 -0.0450086 -0.032417 -0.0746046 --0.0577013 --0.0057025 -0.0186333 -0.0746317 -0.040374 --0.0471736 --0.00593842 --0.039659 --0.0712425 --0.0325567 -0.0381661 --0.00513688 -0.0755879 -0.033575 --0.0574357 --0.0249248 -0.0377726 -0.0263845 -0.00878695 -0.160843 -0.0893124 --0.0670243 -0.00862139 --0.0154256 -0.0229283 -0.00657696 --0.0205761 --0.0182189 -0.0514003 -0.0746329 -0.0438917 --0.0855229 --0.119802 -0.00562245 --0.0327289 -0.00568626 --0.024015 -0.0263478 -0.0844262 -0.078202 -0.0164124 -0.0372152 --0.0594684 -0.0834015 --0.0206734 --0.0628923 -0.0239432 --0.0122409 -0.0702927 -0.0674729 --0.0426914 -0.0584327 --0.021761 --0.0246756 --0.116655 --0.0074437 -0.0428041 -0.124359 -0.00610321 --0.0169011 -0.0310177 --0.0176237 -0.0345983 --0.0775108 --0.0110097 -0.056325 --0.0209427 -0.0602962 -0.0320175 --0.0775321 --0.0603701 -0.0438745 --0.0566236 -0.01953 --0.0599376 --0.0507878 --0.00911293 --0.0154921 --0.0470451 -0.134365 --0.0317906 --0.0593531 --0.0243041 --0.016565 --0.015222 --0.0170628 --0.00469141 -0.0119288 -0.0412559 --0.0153056 -0.00850334 -0.0188428 --0.0565078 --0.00103422 -0.0616774 --0.0332837 -0.0811008 --0.0520698 --0.0499773 --0.083521 -0.0262595 --0.0854239 -0.0324941 --0.00480001 -0.017003 --0.00792316 --0.149482 --0.0182762 -0.016964 --0.0436823 -0.0517955 --0.0311677 -0.0323199 -0.0342074 --0.0722053 -0.0388676 --0.0162145 -0.00520599 --0.0360783 --0.016313 -0.0450571 --0.0945794 --0.0480138 -0.00136513 --0.0414496 --0.0202441 -0.0935045 -0.00901132 --0.00684389 -0.0884485 -0.0512675 -0.0107025 -0.0672469 --0.0830346 --0.00618072 --0.00248072 -0.0753867 --0.0357173 --0.0135344 -0.0579951 --0.005502 --0.0672814 -0.048425 --0.06793 --0.0316446 -0.05592 -0.140141 -0.0523819 -0.0789675 -0.00949402 --0.0443382 --0.044967 --0.0653453 --0.0131388 -0.0932512 -0.0971695 -0.0520051 -0.059366 --0.0173197 --0.0480062 -0.0155434 -0.0185152 -0.0478218 -0.0368552 -0.0398182 --0.0155793 -0.0153224 --0.0414123 --0.000649949 --0.0818833 --0.0100721 -0.0587302 --0.0528515 -0.0444116 --0.0171302 -0.0442207 -0.00560354 --0.0406643 --0.0638714 -0.0133857 -0.0335626 -0.0302922 -0.0429072 --0.0621322 --0.0708319 -0.0589443 -0.0467495 -0.0261826 --0.0141608 -0.0762935 --0.104969 --0.0350979 --0.0454634 --0.000138718 -0.0800063 -0.0383592 --0.0128255 --0.071301 --0.0235129 -0.0106589 --0.108038 --0.0648745 --0.024676 --0.0144082 -0.0114567 --0.0323494 -0.0545164 -0.0446769 -0.0122925 --0.063892 --0.0241417 -0.0261585 --0.0650092 -0.0637027 -0.0577201 --0.0380283 -0.0341827 --0.0479678 --0.00568346 -0.00390685 -0.0193188 --0.0366839 --0.0493091 -0.0827477 -0.0745073 --0.0442977 --0.0286791 -0.116437 -0.0623139 -0.00230366 -0.0131507 -0.0330633 --0.0309187 --0.0462175 --0.0778768 --0.0101909 --0.0531147 --0.0168296 -0.0247423 -0.000480421 --0.0069368 --0.0648247 --0.0528301 --0.0302461 -0.0862555 -0.0391306 -0.0391725 --0.0363651 --0.018106 --0.0666769 -0.0311709 --0.0077811 --0.0121737 -0.0445848 -0.0131743 --0.0393303 --0.00104277 --0.0669944 --0.0649909 --0.060853 --0.0659659 --0.115815 -0.0601865 -0.0112148 -0.00147838 --0.0393242 --0.0851157 -0.00701031 --0.0495852 -0.0634127 -0.0115983 --0.0881997 --0.042708 -0.0713863 -0.0419063 --0.0693509 -0.00683325 -0.0315218 -0.0205878 --0.0705248 -0.0572424 -0.119061 -0.0320605 -0.0378375 -0.0810461 -0.0553746 -0.0649485 --0.132395 --0.0955217 --0.053976 --0.00931864 -0.0614094 -0.0815519 -0.0285659 -0.0408087 -0.00312267 -0.0984088 -0.059539 --0.0463921 -0.0318645 -0.00573199 --0.0346672 --0.0507279 -0.0298437 -0.0516119 -0.00943411 --0.0140399 --0.00417769 --0.0361784 -0.0253873 -0.0583509 -0.06722 --0.000579411 -0.00147347 -0.144065 -0.0172923 -0.0264871 --0.0366625 -0.0391293 --0.0368379 -0.0496154 --0.14292 --0.0732369 --0.044404 --0.0396886 -0.0623395 -0.00739169 --0.0821077 --0.0616346 --0.0854167 --0.0244228 -0.0093886 --0.0398087 -0.00597467 -0.0286173 --0.083944 -0.0298107 --0.0562047 -0.0176111 -0.0466753 --0.151139 --0.043713 --0.0587202 -0.0311458 -0.00890841 --0.0353008 -0.0834232 --0.0732398 --0.00409053 -0.0794255 -0.0258189 -0.0386662 --0.00344122 --0.00268007 --0.0272299 -0.00483575 -0.0956926 -0.0314601 --0.0111158 -0.104485 --0.0285336 --0.0283815 -0.0618767 -0.038806 -0.0130133 --0.0267115 --0.0176318 -0.080395 -0.0526933 -0.0394725 --0.00548694 -0.0230637 --0.0334031 -0.0160621 -0.0384943 --0.105886 -0.0319144 -0.0418122 --0.0503468 --0.0431454 -0.0556583 --0.0427405 -0.00864464 --0.00839279 --0.078281 -0.0657453 -0.0565184 -0.0109094 --0.0970845 -0.0431311 -0.0120762 --0.0416117 -0.0881149 --0.00589838 --0.0544175 -0.0434729 --0.0632048 -0.104216 -0.00187609 --0.102795 --0.0632743 --0.0447556 --0.0247689 -0.0424317 --0.00261002 -0.00159651 --0.126583 --0.0516036 -0.0520622 --0.0140992 --0.0822563 --0.124262 --0.0338756 -0.0173493 -0.00298695 -0.0310441 -0.0419889 -0.0603713 --0.000406452 --0.0188532 -0.0617579 --0.0205493 -0.0235107 -0.0251998 --0.0222895 --0.0516633 --0.0133958 -0.0160088 --0.0151711 -0.0774039 --0.0161853 --0.0132267 -0.0563949 --0.0324344 --0.0958419 -0.0653156 --0.00461213 -0.0660459 -0.0700161 -0.0299072 -0.0225717 --0.0922848 --0.0331444 --0.0586294 --0.00123857 --0.103763 -0.0554393 -0.0445749 --0.054732 --0.0282974 -0.0400304 -0.00272902 --0.052408 --0.00362486 -0.125129 -0.045572 -0.0329649 --0.0155586 -0.119674 --0.0109335 -0.049569 --0.012965 --0.0237183 --0.0441433 -0.041777 --0.00958832 -0.0128805 -0.108689 --0.0207687 -0.0170278 -0.03182 --0.0446236 -0.0100511 --0.0667093 --0.0402362 -0.0158046 --0.00434831 -0.0176466 --0.0112784 --0.0922743 -0.0276716 --0.00776693 -0.0373473 -0.00862965 -0.016282 --0.0663711 -0.0274863 -0.00831702 --0.00933101 --0.0482634 -0.0516216 -0.0330002 -0.0476078 -0.0831604 --0.0069754 --0.0371496 --0.0278425 -0.0725207 -0.0169987 --0.0429344 --0.0139971 --0.0811161 --0.00774411 --0.0643977 -0.0191876 -0.0192419 --0.0379976 -0.0251985 --0.0285143 -0.0596489 -0.0462029 --0.0403321 -0.0164576 --0.0460117 -0.0220542 --0.0118934 -0.00197174 -0.00494047 -0.0335646 --0.00540305 -0.0256926 --0.0939884 -0.0342999 -0.103354 -0.0422727 --0.05065 --0.0114755 -0.127802 -0.0400094 -0.0902101 -0.0145126 -0.0103043 --0.0389342 -0.00937957 --0.0122917 --0.0487498 -0.0252179 -0.0706251 -0.0278287 -0.0764825 -0.094981 -0.0618933 --0.00387871 --0.0493021 --0.0362711 --0.0381748 --0.0172135 -0.0658751 --0.00743741 -0.115633 --0.0393611 --0.00865693 -0.0136365 --0.00228073 --0.0295109 -0.0308086 --0.10597 -0.0264105 -0.015619 --0.0836329 -0.0260254 --0.0700473 -0.0577948 --0.102657 -0.0826089 --0.0359133 -0.00173081 --0.0727572 --0.0628573 --0.0261049 -0.0386111 --0.0798824 --0.0450661 --0.108777 --0.000830067 -0.0936936 -0.0237212 -0.0647913 --0.00615468 -0.0387491 -0.0566991 --0.0488256 --0.025266 -0.0227839 --0.0228869 -0.00327419 --0.118836 -0.0222242 -0.00843748 --0.0411863 --0.023073 -0.00408694 -0.00557377 --0.099105 -0.0831088 -0.00108342 -0.0646853 -0.017609 -0.0416715 -0.0536999 --0.0205712 --0.00391368 -0.00698577 -0.0193642 --0.00363798 --0.0123936 -0.00906916 --0.0648344 --0.022655 -0.0162051 --0.0105244 -0.0135771 -0.00394064 -0.0177482 --0.0123166 --0.0338319 -0.0757913 -0.0137628 -0.0731558 -0.0453899 -0.0152821 --0.0419565 --0.0111986 --0.0168056 -0.00624634 -0.0247883 --0.0103153 --0.0888884 -0.038254 --0.0111308 --0.0737781 --0.0309503 --0.0274264 -0.0264654 -0.0399306 -0.00168298 -0.050592 -0.0641067 --0.00268421 --0.090096 -0.0429496 --0.00518764 --0.0641769 --0.019791 --0.0359704 -0.0173237 --0.000412925 --0.00577109 -0.0256805 -0.0711861 -0.0319399 --0.0920668 --0.00251949 --0.0202022 -0.0522068 --0.0595796 -0.113647 -0.0277318 --0.022147 -0.00382165 -0.00112638 -0.00179496 --0.0562126 --0.0620582 -0.0401989 -0.086266 -0.0188599 -0.0182862 -0.0803862 -0.0650175 -0.0174517 --0.0381624 --0.0254492 --0.0130467 -0.00693802 --0.0506259 -0.0105153 -0.106646 -0.032323 -0.0312006 --0.00688619 -0.00785302 --0.000146313 -0.00242618 -0.0410085 -0.0524004 -0.0718831 -0.0526988 -0.0709615 --0.0310552 --0.0544331 --0.00465152 --0.00640931 -0.0451795 --0.0198089 --0.0243013 -0.0559088 --0.0317417 --0.0507449 --0.0224098 --0.0729802 -0.0290616 --0.0244746 --0.0441225 --0.0388869 -0.0969727 -0.00588798 --0.0930338 -0.0365125 --0.0929528 diff --git a/test/parameters_v1.0.txt b/test/parameters_v1.0.txt new file mode 100644 index 0000000..1fffdf9 --- /dev/null +++ b/test/parameters_v1.0.txt @@ -0,0 +1,134 @@ +## Parameters for Excimontec v1.0.0 +-------------------------------------------------------------- +## Kinetic Monte Carlo Algorithm Parameters +false //Enable_FRM +true //Enable_selective_recalc +4 //Recalc_cutoff (nm) (must not be less than any of the event cutoffs) +false //Enable_full_recalc +-------------------------------------------------------------- +## Lattice Parameters +true //Enable_periodic_x +true //Enable_periodic_y +true //Enable_periodic_z +50 //Length +50 //Width +50 //Height +1.0 //Unit_size (nm) +300 //Temperature (K) +0.0 //Internal_potential (V) +-------------------------------------------------------------- +## Device Architecture Parameters +true //Enable_neat (uses donor properties) +false //Enable_bilayer (Sum of Thickness_donor and Thickness_acceptor must equal Height) +25 //Thickness_donor +25 //Thickness_acceptor +false //Enable_random_blend +0.5 //Acceptor_conc +false //Enable_import_morphology_single +morphology_0.txt //Morphology_filename +false //Enable_import_morphology_set +morphology_#.txt //Morphology_set_format +4 //N_test_morphologies +4 //N_morphology_set_size +-------------------------------------------------------------- +## Test Parameters +100 //N_tests +true //Enable_exciton_diffusion_test +false //Enable_ToF_test +hole //ToF_polaron_type (electron or hole) +10 //ToF_initial_polarons +true //Enable_ToF_random_placement +false //Enable_ToF_energy_placement +0.0 //ToF_placement_energy +1e-10 //ToF_transient_start (s) +1e-4 //ToF_transient_end (s) +20 //ToF_pnts_per_decade +false //Enable_IQE_test +1e-4 //IQE_time_cutoff (s) (simulation time) +false //Enable_extraction_map_output +false //Enable_dynamics_test +false //Enable_dynamics_extraction +1e16 //Dynamics_initial_exciton_conc (cm^-3) +1e-13 //Dynamics_transient_start (s) +1e-5 //Dynamics_transient_end (s) +10 //Dynamics_pnts_per_decade +false //Enable_steady_transport_test +1e15 //Steady_carrier_density (cm^-3) +10000 //N_equilibration_events +-------------------------------------------------------------- +## Exciton Parameters +1e22 //Exciton_generation_rate_donor (cm^-3 s^-1) +1e22 //Exciton_generation_rate_acceptor (cm^-3 s^-1) +500e-12 //Singlet_lifetime_donor (s) +500e-12 //Singlet_lifetime_acceptor (s) +1e-6 //Triplet_lifetime_donor (s) +1e-6 //Triplet_lifetime_acceptor (s) +1e11 //R_singlet_hopping_donor (nm^6 s^-1) +1e11 //R_singlet_hopping_acceptor (nm^6 s^-1) +2.0 //Singlet_localization_donor (nm^-1) +2.0 //Singlet_localization_acceptor (nm^-1) +1e12 //R_triplet_hopping_donor (s^-1) +1e12 //R_triplet_hopping_acceptor (s^-1) +2.0 //Triplet_localization_donor (nm^-1) +2.0 //Triplet_localization_acceptor (nm^-1) +false //Enable_FRET_triplet_annihilation +1e12 //R_exciton_exciton_annihilation_donor (nm^6 s^-1 or s^-1) +1e12 //R_exciton_exciton_annihilation_acceptor (nm^6 s^-1 or s^-1) +1e12 //R_exciton_polaron_annihilation_donor (nm^6 s^-1 or s^-1) +1e12 //R_exciton_polaron_annihilation_acceptor (nm^6 s^-1 or s^-1) +4 //FRET_cutoff (nm) +0.5 //E_exciton_binding_donor (eV) +0.5 //E_exciton_binding_acceptor (eV) +1e14 //R_exciton_dissociation_donor (s^-1) +1e14 //R_exciton_dissociation_acceptor (s^-1) +3 //Exciton_dissociation_cutoff (nm) +1e7 //R_exciton_isc_donor (s^-1) +1e7 //R_exciton_isc_acceptor (s^-1) +1e7 //R_exciton_risc_donor (s^-1) +1e7 //R_exciton_risc_acceptor (s^-1) +0.7 //E_exciton_ST_donor (eV) +0.7 //E_exciton_ST_acceptor (eV) +-------------------------------------------------------------- +## Polaron Parameters +true //Enable_phase_restriction (holes on donor sites, electrons on acceptor sites) +1e12 //R_polaron_hopping_donor (s^-1) +1e12 //R_polaron_hopping_acceptor (s^-1) +2.0 //Polaron_localization_donor (nm^-1) +2.0 //Polaron_localization_acceptor (nm^-1) +true //Enable_miller_abrahams +false //Enable_marcus +0.2 //Reorganization_donor (eV) +0.2 //Reorganization_acceptor (eV) +1e12 //R_polaron_recombination (s^-1) +3 //Polaron_hopping_cutoff (nm) +false //Enable_gaussian_polaron_delocalization +1.0 //Polaron_delocalization_length (nm) +-------------------------------------------------------------- +## Site Energy Parameters +5.5 //Homo_donor (eV) +3.5 //Lumo_donor (eV) +6.0 //Homo_acceptor (eV) +4.0 //Lumo_acceptor (eV) +false //Enable_gaussian_dos +0.075 //Energy_stdev_donor (eV) +0.075 //Energy_stdev_acceptor (eV) +false //Enable_exponential_dos +0.03 //Energy_urbach_donor (eV) +0.03 //Energy_urbach_acceptor (eV) +false //Enable_correlated_disorder (only works with Gaussian DOS) +1.0 //Disorder_correlation_length (nm) (1.0-2.0, used by all kernels) +false //Enable_gaussian_kernel +false //Enable_power_kernel +-1 //Power_kernel_exponent (integer: -1 or -2) +false //Enable_interfacial_energy_shift +0.0 //Energy_shift_donor (eV) +0.0 //Energy_shift_acceptor (eV) +false //Enable_import_energies +energies.txt //Energies_import_filename +-------------------------------------------------------------- +## Electrostatic Interaction Parameters +3.5 //Dielectric_constant (relative permittivity) +true //Enable_Coulomb_maximum (sets cutoff to 1/2 the smallest lattice dimension) +false //Enable_Coulomb_cutoff +25 //Coulomb_cutoff (nm) +-------------------------------------------------------------- diff --git a/test/test.cpp b/test/test.cpp index 026af43..feb8a0e 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2019 Michael C. Heiber +// Copyright (c) 2017-2020 Michael C. Heiber and contributors // This source file is part of the Excimontec project, which is subject to the MIT License. // For more information, see the LICENSE file that accompanies this software. // The Excimontec project can be found on Github at https://github.com/MikeHeiber/Excimontec @@ -71,6 +71,7 @@ namespace OSC_SimTests { params_default.Enable_steady_transport_test = false; params_default.Steady_carrier_density = 1e15; params_default.N_equilibration_events = 100000; + params_default.STT_state_file_format = "./test/STT_equilibration_state"; // Exciton Parameters params_default.Exciton_generation_rate_donor = 1e18; params_default.Exciton_generation_rate_acceptor = 1e18; @@ -137,7 +138,8 @@ namespace OSC_SimTests { params_default.Energy_shift_donor = 0.0; params_default.Energy_shift_acceptor = 0.0; params_default.Enable_import_energies = false; - params_default.Energies_import_filename = "energies.txt"; + params_default.Energies_import_format = "./test/site_energies_#.txt"; + params_default.Energies_export_format = "./test/site_energies_#.txt"; // Coulomb Calculation Parameters params_default.Dielectric_donor = 3.5; params_default.Dielectric_acceptor = 3.5; @@ -145,22 +147,143 @@ namespace OSC_SimTests { } }; + TEST_F(OSC_SimTest, ParseArgumentsTests) { + cout << "Starting OSC_SimTest.ParseArgumentsTests..." << endl; + sim = OSC_Sim(); + Parameters params; + // test basic args + int argc = 2; + char* argv1[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt" + }; + EXPECT_TRUE(params.parseCommandLineArguments(argc, argv1)); + EXPECT_FALSE(params.Enable_logging); + EXPECT_FALSE(params.Enable_resume_stt); + // test missing parameters arg + argc = 1; + char* argv2[] = { + (char*)"Excimontec.exe", + }; + EXPECT_FALSE(params.parseCommandLineArguments(argc, argv2)); + // test undefined arg + argc = 3; + char* argv3[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-undefined_option" + }; + EXPECT_FALSE(params.parseCommandLineArguments(argc, argv3)); + // test valid seed + argc = 4; + char* argv4[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-seed", + (char*)"100" + }; + EXPECT_TRUE(params.parseCommandLineArguments(argc, argv4)); + EXPECT_EQ(params.Generator_seed, 100); + // test invalid seed + argc = 4; + char* argv5[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-seed", + (char*)"not_an_int" + }; + EXPECT_FALSE(params.parseCommandLineArguments(argc, argv5)); + // test missing seed + argc = 3; + char* argv6[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-seed", + }; + EXPECT_FALSE(params.parseCommandLineArguments(argc, argv6)); + // test seed out of range + argc = 4; + char* argv7[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-seed", + (char*)"123456789012345" + }; + EXPECT_FALSE(params.parseCommandLineArguments(argc, argv7)); + // test valid resume stt + argc = 3; + char* argv8[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-resume_stt", + }; + EXPECT_TRUE(params.parseCommandLineArguments(argc, argv8)); + EXPECT_TRUE(params.Enable_resume_stt); + // test valid all + argc = 5; + char* argv9[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-seed", + (char*)"100", + (char*)"-resume_stt", + }; + EXPECT_TRUE(params.parseCommandLineArguments(argc, argv9)); + EXPECT_EQ(params.Generator_seed, 100); + EXPECT_TRUE(params.Enable_resume_stt); + // test command line arguments order + argc = 5; + char* argv10[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-resume_stt", + (char*)"-seed", + (char*)"100", + }; + EXPECT_TRUE(params.parseCommandLineArguments(argc, argv10)); + EXPECT_EQ(params.Generator_seed, 100); + EXPECT_TRUE(params.Enable_resume_stt); + // test only seed missing + argc = 4; + char* argv11[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-resume_stt", + (char*)"-seed", + }; + EXPECT_FALSE(params.parseCommandLineArguments(argc, argv11)); + // test only seed error + argc = 5; + char* argv12[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-resume_stt", + (char*)"-seed", + (char*)"not_an_int" + }; + EXPECT_FALSE(params.parseCommandLineArguments(argc, argv12)); + // test valid logging + argc = 3; + char* argv13[] = { + (char*)"Excimontec.exe", + (char*)"parameters_default.txt", + (char*)"-enable_logging", + }; + EXPECT_TRUE(params.parseCommandLineArguments(argc, argv13)); + EXPECT_TRUE(params.Enable_logging); + + } + TEST_F(OSC_SimTest, ParameterTests) { cout << "Starting OSC_SimTest.ParameterTests..." << endl; sim = OSC_Sim(); Parameters params; - params.Enable_logging = false; - // Check that importing an uninitialized ifstream throws an exception - ifstream uninitialized_ifstream; - EXPECT_THROW(params.importParameters(uninitialized_ifstream), invalid_argument); - // Check that importing a closed parameter file throws an exception - ifstream closed_file("parameters_default.txt"); - closed_file.close(); - EXPECT_THROW(params.importParameters(closed_file), invalid_argument); // Check that the default parameters file can be loaded and are valid - ifstream params_file("parameters_default.txt"); - EXPECT_TRUE(params.importParameters(params_file)); - params_file.close(); + EXPECT_TRUE(params.importParameters()); + EXPECT_TRUE(params.checkParameters()); + // Check that parameter file from v1.0 can be loaded and is valid + params.Parameters_filename = "./test/parameters_v1.0.txt"; + EXPECT_TRUE(params.importParameters()); EXPECT_TRUE(params.checkParameters()); // Check parameter files with typos in boolean values to check conversion of string to bool ifstream params_file2("parameters_default.txt"); @@ -178,9 +301,8 @@ namespace OSC_SimTests { // Save file data vector to a new parameter file outputVectorToFile(file_data, "./test/parameters_misspell_1.txt"); // Try to open and import new parameter file with misspelled true - ifstream params_file3("./test/parameters_misspell_1.txt"); - EXPECT_FALSE(params.importParameters(params_file3)); - params_file3.close(); + params.Parameters_filename = "./test/parameters_misspell_1.txt"; + EXPECT_FALSE(params.importParameters()); // Reset misspelled tue back to true item.replace(item.find("tue"), 3, "true"); } @@ -191,9 +313,8 @@ namespace OSC_SimTests { // Save file data vector to a new parameter file outputVectorToFile(file_data, "./test/parameters_misspell_2.txt"); // Try to open and import new parameter file with misspelled false - ifstream params_file4("./test/parameters_misspell_2.txt"); - EXPECT_FALSE(params.importParameters(params_file4)); - params_file4.close(); + params.Parameters_filename = "./test/parameters_misspell_2.txt"; + EXPECT_FALSE(params.importParameters()); // Reset misspelled fase back to false item.replace(item.find("fase"), 4, "false"); } @@ -201,30 +322,30 @@ namespace OSC_SimTests { // Check invalid lattice parameters params = params_default; params.Params_lattice.Length = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check invalid Parameters_Simulation parameters params = params_default; params.Temperature = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check that default parameters are valid - EXPECT_TRUE(sim.init(params_default, 0)); + EXPECT_TRUE(sim.init(params_default)); // Check various invalid parameter sets params = params_default; // Check that a device architecture is defined params.Enable_neat = false; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for multiple enabled morphologies params = params_default; params.Enable_neat = true; params.Enable_random_blend = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for valid bilayer thicknesses params = params_default; params.Enable_neat = false; params.Enable_bilayer = true; params.Thickness_donor = 20; params.Thickness_acceptor = 20; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check recalculation radius when using the selective recalc method params.Recalc_cutoff = 1; params.FRET_cutoff = 2; @@ -235,50 +356,50 @@ namespace OSC_SimTests { params.FRET_cutoff = 1; params.Exciton_dissociation_cutoff = 2; params.Polaron_hopping_cutoff = 1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params.Recalc_cutoff = 1; params.FRET_cutoff = 1; params.Exciton_dissociation_cutoff = 1; params.Polaron_hopping_cutoff = 2; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for multiple enabled tests params = params_default; params.Enable_dynamics_test = true; params.Enable_exciton_diffusion_test = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for no tests enabled params.Enable_dynamics_test = false; params.Enable_exciton_diffusion_test = false; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for invalid test duration params.Enable_exciton_diffusion_test = true; params.N_tests = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for valid ToF test options // Check valid parameters params = params_default; params.Enable_exciton_diffusion_test = false; params.Enable_ToF_test = true; params.Params_lattice.Enable_periodic_z = false; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check for invalid z boundary conditions params.Params_lattice.Enable_periodic_z = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for invalid morphology params.Params_lattice.Enable_periodic_z = false; params.Enable_bilayer = true; params.Enable_neat = false; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for valid placement option params.Enable_neat = true; params.Enable_bilayer = false; params.Enable_ToF_random_placement = false; params.Enable_ToF_energy_placement = false; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for invalid polaron type params.Enable_ToF_random_placement = true; params.ToF_polaron_type = false; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for valid IQE test options // Check valid parameters params = params_default; @@ -287,15 +408,15 @@ namespace OSC_SimTests { params.Params_lattice.Enable_periodic_z = false; params.Enable_neat = false; params.Enable_bilayer = true; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check invalid boundary conditions params.Params_lattice.Enable_periodic_z = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check invalid device architecture params.Enable_bilayer = false; params.Params_lattice.Enable_periodic_z = false; params.Enable_neat = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for valid Dynamics test options params = params_default; params.Enable_exciton_diffusion_test = false; @@ -304,163 +425,164 @@ namespace OSC_SimTests { params.Enable_dynamics_extraction = false; params.Params_lattice.Enable_periodic_z = false; params.Internal_potential = -1.0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for dynamics extraction test and z boundary conditions params.Enable_dynamics_extraction = true; params.Params_lattice.Enable_periodic_z = true; params.Internal_potential = -1.0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for steady transport test and z boundary conditions params.Enable_dynamics_test = false; params.Enable_steady_transport_test = true; params.Params_lattice.Enable_periodic_z = false; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for steady transport test and internal potential params.Params_lattice.Enable_periodic_z = true; params.Internal_potential = 0.0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for steady transport test and steady carrier density params.Internal_potential = -1.0; params.Steady_carrier_density = 0.0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params.Steady_carrier_density = 1.0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for steady transport test and N_equilibration_events params.Steady_carrier_density = 1e15; params.N_equilibration_events = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for steady transport test and neat params.N_equilibration_events = 100; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check for steady transport test and bilayer params.Enable_neat = false; params.Enable_bilayer = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check for steady transport test and random blend params.Enable_bilayer = false; params.Enable_random_blend = true; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check exciton parameter values params = params_default; params.Exciton_generation_rate_donor = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Singlet_lifetime_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Triplet_lifetime_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.R_singlet_hopping_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Singlet_localization_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.R_triplet_hopping_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Triplet_localization_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.R_exciton_exciton_annihilation_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.R_exciton_polaron_annihilation_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.FRET_cutoff = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.E_exciton_binding_donor = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.R_exciton_dissociation_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Exciton_dissociation_cutoff = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.R_exciton_isc_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.R_exciton_risc_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.E_exciton_ST_donor = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check polaron parameter values params = params_default; params.R_polaron_hopping_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Polaron_localization_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Enable_miller_abrahams = true; params.Enable_marcus = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Enable_miller_abrahams = false; params.Enable_marcus = false; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Reorganization_donor = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.R_polaron_recombination = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Polaron_hopping_cutoff = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Polaron_delocalization_length = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); + cout << "Checking site energy parameters" << endl; // Check lattice site parameters params = params_default; params.Homo_donor = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Lumo_acceptor = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Enable_gaussian_dos = true; params.Enable_exponential_dos = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Enable_gaussian_dos = true; params.Energy_stdev_donor = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Enable_exponential_dos = true; params.Energy_urbach_donor = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check enabled correlated disorder without specifying a DOS model params = params_default; params.Enable_gaussian_dos = false; params.Enable_correlated_disorder = true; params.Enable_gaussian_kernel = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check enabled correlated disorder with exponential DOS model params = params_default; params.Enable_gaussian_dos = false; params.Enable_exponential_dos = true; params.Enable_correlated_disorder = true; params.Enable_gaussian_kernel = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check correlated disorder correlation length minimum params = params_default; params.Enable_gaussian_dos = true; params.Enable_correlated_disorder = true; params.Disorder_correlation_length = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check correlated disorder correlation length maximum params = params_default; params.Enable_gaussian_dos = true; params.Enable_correlated_disorder = true; params.Enable_gaussian_kernel = true; params.Disorder_correlation_length = 2.5; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check correlated disorder with different disorders params = params_default; params.Enable_neat = false; @@ -471,41 +593,41 @@ namespace OSC_SimTests { params.Disorder_correlation_length = 1.0; params.Energy_stdev_donor = 0.05; params.Energy_stdev_acceptor = 0.025; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check correlated disorder power kernel exponent value params = params_default; params.Enable_gaussian_dos = true; params.Enable_correlated_disorder = true; params.Enable_power_kernel = true; params.Power_kernel_exponent = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params.Power_kernel_exponent = -3; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check invalid interfacial energy shift params params = params_default; params.Enable_interfacial_energy_shift = true; params.Energy_shift_donor = -1; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check invalid energy import conditions - // Check missing filename + // Check missing filename format params = params_default; params.Enable_import_energies = true; - params.Energies_import_filename = ""; - EXPECT_FALSE(sim.init(params, 0)); + params.Energies_import_format = ""; + EXPECT_FALSE(sim.init(params)); // Check conflicting options - params.Energies_import_filename = "energies.txt"; + params.Energies_import_format = "site_energies_#.txt"; params.Enable_gaussian_dos = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params.Enable_gaussian_dos = false; params.Enable_interfacial_energy_shift = true; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Coulomb calculation options params = params_default; params.Dielectric_donor = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params = params_default; params.Coulomb_cutoff = 0; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); } TEST_F(OSC_SimTest, SetupTests) { @@ -513,8 +635,16 @@ namespace OSC_SimTests { // Check default parameters sim = OSC_Sim(); auto params = params_default; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); EXPECT_EQ(params.Params_lattice.Length*params.Params_lattice.Width*params.Params_lattice.Height*1e-21, sim.getVolume()); + // Check random number generator seeding + params.Generator_seed = 100; + EXPECT_TRUE(sim.init(params)); + auto num1 = sim.rand01(); + OSC_Sim sim2 = OSC_Sim(); + EXPECT_TRUE(sim2.init(params)); + auto num2 = sim2.rand01(); + EXPECT_DOUBLE_EQ(num1, num2); } TEST_F(OSC_SimTest, GetSiteTests) { @@ -522,7 +652,7 @@ namespace OSC_SimTests { // Get site energy sim = OSC_Sim(); auto params = params_default; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check valid coords // Default parameters have no disorder, so site energies should all be zero. EXPECT_DOUBLE_EQ(0.0, sim.getSiteEnergy(Coords(0, 0, 0))); @@ -535,7 +665,7 @@ namespace OSC_SimTests { // Reset simulation object sim = OSC_Sim(); params = params_default; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check valid coords // Default parameters use a neat morphology, so all sites should be donor (type=1). EXPECT_EQ(1, sim.getSiteType(Coords(0, 0, 0))); @@ -555,7 +685,7 @@ namespace OSC_SimTests { params.Enable_exciton_diffusion_test = false; params.Enable_IQE_test = true; params.Params_lattice.Enable_periodic_z = false; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Create triplet exciton sim.createExciton(Coords(10, 10, 10), false); // redirect cout to status file @@ -616,35 +746,35 @@ namespace OSC_SimTests { EXPECT_EQ(lines[7], "0: Hole 1 is at 10,10,50."); // Check attempt to create exciton on invalid Coords sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); sim.createExciton(Coords(-1, 0, 0), true); EXPECT_TRUE(sim.getErrorStatus()); EXPECT_TRUE(sim.checkFinished()); EXPECT_EQ("Exciton cannot be generated because the input coordinates are invalid.", sim.getErrorMessage()); // Check attempt to create electron on invalid Coords sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); sim.createElectron(Coords(0, params.Params_lattice.Width + 1, 0)); EXPECT_TRUE(sim.getErrorStatus()); EXPECT_TRUE(sim.checkFinished()); EXPECT_EQ("Electron cannot be generated because the input coordinates are invalid.", sim.getErrorMessage()); // Check attempt to create hole on invalid Coords sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); sim.createHole(Coords(0, 0, params.Params_lattice.Height + 1)); EXPECT_TRUE(sim.getErrorStatus()); EXPECT_TRUE(sim.checkFinished()); EXPECT_EQ("Hole cannot be generated because the input coordinates are invalid.", sim.getErrorMessage()); // Check attempt to create electron on invalid site type sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); sim.createElectron(Coords(10, 10, 50)); EXPECT_TRUE(sim.getErrorStatus()); EXPECT_TRUE(sim.checkFinished()); EXPECT_EQ("Electron cannot be generated on a donor site.", sim.getErrorMessage()); // Check attempt to create hole on invalid Coords sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); sim.createHole(Coords(10, 10, 49)); EXPECT_TRUE(sim.getErrorStatus()); EXPECT_TRUE(sim.checkFinished()); @@ -655,14 +785,14 @@ namespace OSC_SimTests { params.Params_lattice.Width = 1; params.Params_lattice.Height = 1; sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Create first exciton that fills the lattice sim.createExciton(false); // Try to create another exciton sim.createExciton(false); EXPECT_TRUE(sim.getErrorStatus()); sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Create first exciton that fills the lattice sim.createExciton(false); // Try to create another exciton @@ -705,7 +835,7 @@ namespace OSC_SimTests { params.Exciton_generation_rate_donor = 1e26; params.Exciton_generation_rate_acceptor = 1e26; params.Internal_potential = -0.5; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Execute 5000 events and save events executed vector event_types; for (int i = 0; i < 5000; i++) { @@ -734,7 +864,7 @@ namespace OSC_SimTests { } } - TEST_F(OSC_SimTest, EnergiesImportTests) { + TEST_F(OSC_SimTest, EnergiesExportImportTests) { cout << "Starting OSC_SimTest.EnergiesImportTests..." << endl; // Create sample energies file sim = OSC_Sim(); @@ -747,32 +877,69 @@ namespace OSC_SimTests { params.Thickness_donor = 15; params.Thickness_acceptor = 15; params.Enable_gaussian_dos = true; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); double energies_stdev1 = vector_stdev(sim.getSiteEnergies(1)); - sim.exportEnergies("./test/energies.txt"); + // Export relative energies + sim.exportEnergies("./test/site_energies_0.txt"); // Test valid import operation sim = OSC_Sim(); params.Enable_gaussian_dos = false; params.Enable_import_energies = true; - params.Energies_import_filename = "./test/energies.txt"; - EXPECT_TRUE(sim.init(params, 0)); + params.Energies_import_format = "./test/site_energies_#.txt"; + EXPECT_TRUE(sim.init(params)); // Check imported energies auto site_energies = sim.getSiteEnergies(1); EXPECT_NEAR(0, vector_avg(site_energies), 5e-3); EXPECT_NEAR(energies_stdev1, vector_stdev(site_energies), 1e-4); + // Test missing energies file + params.Enable_gaussian_dos = false; + params.Enable_import_energies = true; + params.Energies_import_format = "missing_file_#.txt"; + EXPECT_FALSE(sim.init(params)); + // Load site energy file data + ifstream energies_file("./test/site_energies_0.txt"); + vector file_data_original; + string line; + while (getline(energies_file, line)) { + file_data_original.push_back(line); + } + // Test energies file with missing data + auto file_data = file_data_original; + file_data.pop_back(); + file_data.pop_back(); + file_data.pop_back(); + outputVectorToFile(file_data, "./test/site_energies_missing_data_0.txt"); + params.Energies_import_format = "./test/site_energies_missing_data_#.txt"; + EXPECT_FALSE(sim.init(params)); + // Test energy file with no dimensions + file_data = file_data_original; + file_data.erase(file_data.begin()); + file_data.erase(file_data.begin()); + file_data.erase(file_data.begin()); + outputVectorToFile(file_data, "./test/site_energies_missing_dims_0.txt"); + params.Energies_import_format = "./test/site_energies_missing_dims_#.txt"; + EXPECT_FALSE(sim.init(params)); + // Test energy file with improper dimensions + params.Params_lattice.Length = 50; + params.Params_lattice.Width = 50; + params.Params_lattice.Height = 30; + params.Energies_import_format = "./test/site_energies_#.txt"; + EXPECT_FALSE(sim.init(params)); // Test export of electron energies sim = OSC_Sim(); params.Enable_import_energies = false; params.Enable_gaussian_dos = true; - EXPECT_TRUE(sim.init(params, 0)); - sim.exportEnergies("./test/energies.txt", false); - ifstream infile("./test/energies.txt"); + EXPECT_TRUE(sim.init(params)); + sim.exportEnergies("./test/site_energies_0.txt", false, false); + ifstream infile("./test/site_energies_0.txt"); int i = 0; site_energies.clear(); int num_sites = params.Params_lattice.Length*params.Params_lattice.Width*params.Params_lattice.Height; site_energies.reserve(num_sites); - string line; while (getline(infile, line)) { + if (line[0] == '#') { + continue; + } if (i > 2) { site_energies.push_back(stod(line)); } @@ -782,12 +949,15 @@ namespace OSC_SimTests { EXPECT_EQ(num_sites, (int)site_energies.size()); EXPECT_NEAR((params.Lumo_donor + params.Lumo_acceptor) / 2.0, vector_avg(site_energies), 1e-2*params.Lumo_donor); // Check hole energies - sim.exportEnergies("./test/energies.txt", true); - ifstream infile2("./test/energies.txt"); + sim.exportEnergies("./test/site_energies_0.txt", false, true); + ifstream infile2("./test/site_energies_0.txt"); i = 0; site_energies.clear(); site_energies.reserve(num_sites); while (getline(infile2, line)) { + if (line[0] == '#') { + continue; + } if (i > 2) { site_energies.push_back(stod(line)); } @@ -796,23 +966,6 @@ namespace OSC_SimTests { infile2.close(); EXPECT_EQ(num_sites, (int)site_energies.size()); EXPECT_NEAR((params.Homo_donor + params.Homo_acceptor) / 2.0, vector_avg(site_energies), 1e-2*params.Homo_donor); - // Test missing energies file - params.Enable_gaussian_dos = false; - params.Enable_import_energies = true; - params.Energies_import_filename = "energies.txt"; - EXPECT_FALSE(sim.init(params, 0)); - // Test energies file with missing data - params.Energies_import_filename = "./test/energies_missing_data.txt"; - EXPECT_FALSE(sim.init(params, 0)); - // Test energy file with no dimensions - params.Energies_import_filename = "./test/energies_missing_dims.txt"; - EXPECT_FALSE(sim.init(params, 0)); - // Test energy file with improper dimensions - params.Params_lattice.Length = 50; - params.Params_lattice.Width = 50; - params.Params_lattice.Height = 30; - params.Energies_import_filename = "./test/energies.txt"; - EXPECT_FALSE(sim.init(params, 0)); } TEST_F(OSC_SimTest, MorphologyImportTests) { @@ -827,41 +980,41 @@ namespace OSC_SimTests { params.Params_lattice.Height = 50; // Test incorrect filename params.Morphology_filename = "./test/test_morphology123.txt"; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Test incorrect dimensions sim = OSC_Sim(); params.Morphology_filename = "./test/morphology_v4-0_compressed.txt"; params.Params_lattice.Height = 100; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); params.Params_lattice.Height = 50; // Test correct import of v3.2 compressed sim = OSC_Sim(); params.Morphology_filename = "./test/morphology_v3-2_compressed.txt"; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Test correct import of v3.2 uncompressed sim = OSC_Sim(); params.Morphology_filename = "./test/morphology_v3-2_uncompressed.txt"; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Test correct import of v4.0 compressed sim = OSC_Sim(); params.Morphology_filename = "./test/morphology_v4-0_compressed.txt"; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Test correct import of v4.0 uncompressed sim = OSC_Sim(); params.Morphology_filename = "./test/morphology_v4-0_uncompressed.txt"; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Test behavior when there is missing data sim = OSC_Sim(); params.Morphology_filename = "./test/morphology_v4-0_missing_data.txt"; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Test behavior when there is no header line sim = OSC_Sim(); params.Morphology_filename = "./test/morphology_no_version.txt"; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Test behavior when the version is too old sim = OSC_Sim(); params.Morphology_filename = "./test/morphology_old_version.txt"; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); } TEST_F(OSC_SimTest, ChargeDynamicsTests) { @@ -879,7 +1032,7 @@ namespace OSC_SimTests { params.R_singlet_hopping_donor = 1e12; params.R_singlet_hopping_acceptor = 1e12; params.N_tests = 5000; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -916,7 +1069,7 @@ namespace OSC_SimTests { params.Enable_dynamics_test = true; params.Dynamics_transient_end = 1e-9; params.N_tests = 2000; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -936,7 +1089,7 @@ namespace OSC_SimTests { params.Enable_dynamics_test = true; params.R_exciton_isc_donor = 1e16; params.N_tests = 2000; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -962,7 +1115,7 @@ namespace OSC_SimTests { params.Dynamics_initial_exciton_conc = 2e15; params.Enable_gaussian_dos = true; params.Energy_stdev_donor = 0.05; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -992,7 +1145,7 @@ namespace OSC_SimTests { params.Dynamics_transient_end = 1e-7; params.N_tests = 500; params.Enable_gaussian_dos = true; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -1009,7 +1162,7 @@ namespace OSC_SimTests { params.Dynamics_initial_exciton_conc = 1e17; params.Dynamics_transient_end = 1e-7; params.N_tests = 100; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -1022,7 +1175,7 @@ namespace OSC_SimTests { sim = OSC_Sim(); auto params = params_default; params.N_tests = 5000; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); bool success; while (!sim.checkFinished()) { success = sim.executeNextEvent(); @@ -1055,7 +1208,7 @@ namespace OSC_SimTests { params = params_default; params.R_exciton_isc_donor = 1e16; params.N_tests = 5000; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1082,7 +1235,7 @@ namespace OSC_SimTests { params = params_default; params.N_tests = 2000; params.Enable_gaussian_dos = true; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1098,7 +1251,7 @@ namespace OSC_SimTests { params = params_default; params.N_tests = 2000; params.Enable_exponential_dos = true; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1136,7 +1289,7 @@ namespace OSC_SimTests { bool success; // Baseline bilayer IQE test sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check internal field EXPECT_EQ(params.Internal_potential / (params.Params_lattice.Height*1e-7), sim.getInternalField()); while (!sim.checkFinished()) { @@ -1151,7 +1304,7 @@ namespace OSC_SimTests { // Check for field activated charge separation params.Internal_potential = -2.0; sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1167,7 +1320,7 @@ namespace OSC_SimTests { params.Internal_potential = -1.0; params.Temperature = 350; sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1184,7 +1337,7 @@ namespace OSC_SimTests { params.Enable_gaussian_polaron_delocalization = true; params.Polaron_delocalization_length = 2.0; sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1200,7 +1353,7 @@ namespace OSC_SimTests { params.Enable_gaussian_polaron_delocalization = false; params.R_polaron_recombination = 1e9; sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1218,7 +1371,7 @@ namespace OSC_SimTests { params.Homo_acceptor = params.Homo_donor + 0.1; params.Lumo_acceptor = params.Lumo_acceptor + 0.1; sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1255,7 +1408,7 @@ namespace OSC_SimTests { params.Internal_potential = -1.0; params.N_tests = 1000; sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1270,7 +1423,7 @@ namespace OSC_SimTests { params.Exciton_generation_rate_donor = 1e25; params.Exciton_generation_rate_donor = 1e25; sim = OSC_Sim(); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { success = sim.executeNextEvent(); EXPECT_TRUE(success); @@ -1299,16 +1452,16 @@ namespace OSC_SimTests { params.Enable_steady_transport_test = true; params.Enable_phase_restriction = true; params.Steady_carrier_density = 1e18; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Check that there is no error without phase restriction sim = OSC_Sim(); params.Enable_phase_restriction = false; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check that there is no error with phase restriction when the carrier density is low sim = OSC_Sim(); params.Enable_phase_restriction = true; params.Steady_carrier_density = 1e15; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Steady transport test without disorder sim = OSC_Sim(); params = params_default; @@ -1328,7 +1481,7 @@ namespace OSC_SimTests { EXPECT_TRUE(std::isnan(sim.getSteadyEquilibrationEnergy_Coulomb())); EXPECT_TRUE(std::isnan(sim.getSteadyTransportEnergy_Coulomb())); // Run the simulation - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -1342,7 +1495,9 @@ namespace OSC_SimTests { EXPECT_NEAR(expected_mobility, sim.getSteadyMobility(), 1.5e-1*expected_mobility); double expected_current_density = 1000 * Elementary_charge * expected_mobility*(sim.getN_holes_created() / sim.getVolume())*abs(sim.getInternalField()); EXPECT_NEAR(expected_current_density, sim.getSteadyCurrentDensity(), 1.5e-1*expected_current_density); + // // Steady transport test with Gaussian disorder at very low electric field + // sim = OSC_Sim(); params = params_default; params.Params_lattice.Length = 350; @@ -1359,7 +1514,7 @@ namespace OSC_SimTests { params.Enable_gaussian_dos = true; params.Energy_stdev_donor = 0.05; // Initialize the test - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check that at least 10 holes have been created EXPECT_GT(sim.getN_holes_created(), 10); // Run the simulation @@ -1401,7 +1556,112 @@ namespace OSC_SimTests { EXPECT_NEAR(peak_position, expected_energy, 1e-2*params.Homo_donor); // Check the DOOS integral EXPECT_NEAR(params.Steady_carrier_density, integrateData(DOOS_data), 5e-2*params.Steady_carrier_density); + // + // Check results from a resumed simulation after equilibration + // + sim = OSC_Sim(); + params.Enable_resume_stt = true; + // Initialize the test + EXPECT_TRUE(sim.init(params)); + // Check that equilibration has already been completed + EXPECT_EQ(sim.getN_events_executed(), params.N_equilibration_events); + // Check that at least 10 holes have been created + EXPECT_GT(sim.getN_holes_created(), 10); + // Run the simulation + while (!sim.checkFinished()) { + EXPECT_TRUE(sim.executeNextEvent()); + } + // Check the steady state energies + expected_energy = params.Homo_donor - intpow(params.Energy_stdev_donor, 2) / (K_b * params.Temperature); + // At low carrier density energies calculated with and without Coulomb interactions should be almost equal + // Check equilibration energies w/ and w/o Coulomb potential + EXPECT_NEAR(expected_energy, sim.getSteadyEquilibrationEnergy(), 1e-2* abs(expected_energy)); + EXPECT_NEAR(expected_energy, sim.getSteadyEquilibrationEnergy_Coulomb(), 1e-2* abs(expected_energy)); + // Check the DOS + DOS_data = sim.getSteadyDOS(); + // Check the DOS peak + peak_position = (*max_element(DOS_data.begin(), DOS_data.end(), [](pair & a, pair & b) {return (a.second < b.second); })).first; + EXPECT_NEAR(peak_position, params.Homo_donor, 1e-2* params.Homo_donor); + // Check the DOS integral + expected_DOS = 1.0 / intpow(params.Params_lattice.Unit_size * 1e-7, 3); + EXPECT_NEAR(expected_DOS, integrateData(DOS_data), 1e-2* expected_DOS); + // Check the DOS w/ Coulomb potential + DOS_data = sim.getSteadyDOS_Coulomb(); + // Check the DOS peak + peak_position = (*max_element(DOS_data.begin(), DOS_data.end(), [](pair & a, pair & b) {return (a.second < b.second); })).first; + EXPECT_NEAR(peak_position, params.Homo_donor, 1e-2* params.Homo_donor); + // Check the DOS integral + EXPECT_NEAR(expected_DOS, integrateData(DOS_data), 1e-2* expected_DOS); + // Check the DOOS + DOOS_data = sim.getSteadyDOOS(); + // Check the DOOS peak + peak_position = (*max_element(DOOS_data.begin(), DOOS_data.end(), [](pair & a, pair & b) {return (a.second < b.second); })).first; + EXPECT_NEAR(peak_position, expected_energy, 1e-2* params.Homo_donor); + // Check the DOOS integral + EXPECT_NEAR(params.Steady_carrier_density, integrateData(DOOS_data), 5e-2* params.Steady_carrier_density); + // Check the DOOS w/ Coulomb potential + DOOS_data = sim.getSteadyDOOS_Coulomb(); + // Check the DOOS peak + peak_position = (*max_element(DOOS_data.begin(), DOOS_data.end(), [](pair & a, pair & b) {return (a.second < b.second); })).first; + EXPECT_NEAR(peak_position, expected_energy, 1e-2* params.Homo_donor); + // Check the DOOS integral + EXPECT_NEAR(params.Steady_carrier_density, integrateData(DOOS_data), 5e-2* params.Steady_carrier_density); + // + // Check invald resume cases + // + ifstream state_file(params.STT_state_file_format+"_0_latest.txt"); + vector file_data_original; + string line; + while (getline(state_file, line)) { + file_data_original.push_back(line); + } + state_file.close(); + // Check missing state file + EXPECT_FALSE(sim.checkSTTStateFile("STT_state_file.txt")); + // Check state file with invalid time data + auto file_data = file_data_original; + file_data[0] = "a"; + string state_filename = "./test/STT_invalid_time_state_0_latest.txt"; + outputVectorToFile(file_data, state_filename); + EXPECT_FALSE(sim.checkSTTStateFile(state_filename)); + // Check state file with invalid N_events_executed data + file_data = file_data_original; + file_data[1] = "a"; + state_filename = "./test/STT_invalid_events_state_0_latest.txt"; + outputVectorToFile(file_data, state_filename); + EXPECT_FALSE(sim.checkSTTStateFile(state_filename)); + // Check state file without occupancy data + file_data = file_data_original; + file_data.pop_back(); + state_filename = "./test/STT_missing_data_state_0_latest.txt"; + outputVectorToFile(file_data, state_filename); + EXPECT_FALSE(sim.checkSTTStateFile(state_filename)); + // Check invalid lattice dims + file_data = file_data_original; + file_data[2] = "a"; + state_filename = "./test/STT_invalid_dim_state_0_latest.txt"; + outputVectorToFile(file_data, state_filename); + EXPECT_FALSE(sim.checkSTTStateFile(state_filename)); + // Check negative lattice dim + file_data = file_data_original; + file_data[2] = "-10"; + state_filename = "./test/STT_negative_dim_state_0_latest.txt"; + outputVectorToFile(file_data, state_filename); + EXPECT_FALSE(sim.checkSTTStateFile(state_filename)); + // Check mismatching lattice dims + file_data = file_data_original; + file_data[2] = "250"; + state_filename = "./test/STT_mismatch_dim_state_0_latest.txt"; + outputVectorToFile(file_data, state_filename); + EXPECT_FALSE(sim.checkSTTStateFile(state_filename)); + // Check missing site energies file + sim = OSC_Sim(); + params.Energies_import_format = "sites_#.txt"; + EXPECT_FALSE(sim.init(params)); + params.Energies_import_format = params_default.Energies_import_format; + // // Steady transport test with Gaussian disorder at medium field + // sim = OSC_Sim(); params = params_default; params.Params_lattice.Length = 300; @@ -1418,7 +1678,7 @@ namespace OSC_SimTests { params.Enable_gaussian_dos = true; params.Energy_stdev_donor = 0.075; // Initialize the test - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check that at least 10 holes have been created EXPECT_GT(sim.getN_holes_created(), 10); // Run the simulation @@ -1450,7 +1710,7 @@ namespace OSC_SimTests { params.Homo_acceptor = 5.1; params.Lumo_acceptor = 3.1; // Initialize the test - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); // Check that at least 10 holes have been created EXPECT_GT(sim.getN_holes_created(), 10); // Run the simulation @@ -1474,7 +1734,7 @@ namespace OSC_SimTests { params.Acceptor_conc = 0.9999; params.Internal_potential = -1.0; params.ToF_initial_polarons = 1000; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Hole ToF test sim = OSC_Sim(); params = params_default; @@ -1484,7 +1744,7 @@ namespace OSC_SimTests { params.Enable_ToF_test = true; params.Params_lattice.Height = 200; params.N_tests = 1000; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -1515,7 +1775,7 @@ namespace OSC_SimTests { sim = OSC_Sim(); params.Enable_miller_abrahams = false; params.Enable_marcus = true; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -1536,7 +1796,7 @@ namespace OSC_SimTests { params.Enable_gaussian_dos = true; params.Params_lattice.Height = 400; params.N_tests = 1000; - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -1563,7 +1823,7 @@ namespace OSC_SimTests { params.Enable_ToF_random_placement = false; params.Enable_ToF_energy_placement = true; params.ToF_placement_energy = -intpow(params.Energy_stdev_donor, 2) / (K_b*params.Temperature); - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -1588,13 +1848,13 @@ namespace OSC_SimTests { params.ToF_polaron_type = false; params.Params_lattice.Height = 200; params.N_tests = 1000; - EXPECT_FALSE(sim.init(params, 0)); + EXPECT_FALSE(sim.init(params)); // Electron ToF test on random blend should work sim = OSC_Sim(); params.Enable_neat = false; params.Enable_random_blend = true; params.Acceptor_conc = 0.99; // Dilute blend should behave like a neat electron transport material - EXPECT_TRUE(sim.init(params, 0)); + EXPECT_TRUE(sim.init(params)); while (!sim.checkFinished()) { EXPECT_TRUE(sim.executeNextEvent()); } @@ -1637,7 +1897,7 @@ namespace OSC_SimTests { params.Enable_interfacial_energy_shift = true; params.Energy_shift_donor = 0.01; params.Energy_shift_acceptor = 0.01; - sim.init(params, 0); + sim.init(params); float expected_energy = (float)params.Energy_shift_donor + ((float)params.Energy_shift_donor * 4.0f / sqrt(2.0f)) + ((float)params.Energy_shift_donor * 4.0f / sqrt(3.0f)); EXPECT_FLOAT_EQ(expected_energy, sim.getSiteEnergy(Coords(params.Params_lattice.Length / 2, params.Params_lattice.Width / 2, params.Params_lattice.Height / 2))); // Test energy shift on bilayer with energetic disorder @@ -1645,7 +1905,7 @@ namespace OSC_SimTests { params.Enable_gaussian_dos = true; params.Energy_stdev_donor = 0.05; params.Energy_stdev_acceptor = 0.05; - sim.init(params, 0); + sim.init(params); vector energies; for (int x = 0; x < params.Params_lattice.Length; x++) { for (int y = 0; y < params.Params_lattice.Width; y++) { @@ -1671,7 +1931,7 @@ namespace OSC_SimTests { params.Params_lattice.Width = 40; params.Params_lattice.Height = 40; params.Disorder_correlation_length = 1.1; - sim.init(params, 0); + sim.init(params); auto energies = sim.getSiteEnergies(1); EXPECT_NEAR(0.0, vector_avg(energies), 5e-3); EXPECT_NEAR(0.05, vector_stdev(energies), 1e-3); @@ -1684,7 +1944,7 @@ namespace OSC_SimTests { params.Params_lattice.Width = 40; params.Params_lattice.Height = 40; params.Disorder_correlation_length = 1.3; - sim.init(params, 0); + sim.init(params); energies = sim.getSiteEnergies(1); EXPECT_NEAR(0.0, vector_avg(energies), 5e-3); EXPECT_NEAR(0.05, vector_stdev(energies), 1e-3);