Page MenuHomePhorge

No OneTemporary

Size
1 MB
Referenced Files
None
Subscribers
None
This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/apps/ccam/ccam.cpp b/apps/ccam/ccam.cpp
index 8d157a2..0109f85 100644
--- a/apps/ccam/ccam.cpp
+++ b/apps/ccam/ccam.cpp
@@ -1,565 +1,572 @@
//===-- apps/ccam/ccam.cpp --------------------------------------*- C++ -*-===//
//
// The RoSA Framework -- Application CCAM
//
// Distributed under the terms and conditions of the Boost Software
/// License 1.0.
// See accompanying file LICENSE.
//
// If you did not receive a copy of the license file, see
// http://www.boost.org/LICENSE_1_0.txt.
//
//===----------------------------------------------------------------------===//
///
/// \file apps/ccam/ccam.cpp
///
/// \author Maximilian Goetzinger (maximilian.goetzinger@tuwien.ac.at)
/// \author Benedikt Tutzer (benedikt.tutzer@tuwien.ac.at)
///
/// \date 2019
///
/// \brief The application CCAM implements the case study from the paper:
/// M. Goetzinger, N. TaheriNejad, H. A. Kholerdi, A. Jantsch, E. Willegger,
/// T. Glatzl, A.M. Rahmani, T.Sauter, P. Liljeberg: Model - Free Condition
/// Monitoring with Confidence
///
/// \todo Clean up source files of this app: add standard RoSA header comment
/// for own files and do something with 3rd party files...
//===----------------------------------------------------------------------===//
#include "rosa/agent/Abstraction.hpp"
#include "rosa/agent/Confidence.hpp"
#include "rosa/agent/FunctionAbstractions.hpp"
#include <iostream>
#include "rosa/config/version.h"
#include "rosa/agent/SignalStateDetector.hpp"
#include "rosa/agent/SystemStateDetector.hpp"
#include "rosa/app/Application.hpp"
#include "rosa/support/csv/CSVReader.hpp"
#include "rosa/support/csv/CSVWriter.hpp"
#include "rosa/support/mqtt/MQTTReader.hpp"
#include "rosa/app/AppTuple.hpp"
#include <fstream>
#include <limits>
#include <memory>
#include <streambuf>
#include "configuration.h"
#include "statehandlerutils.h"
using namespace rosa;
using namespace rosa::agent;
using namespace rosa::app;
using namespace rosa::terminal;
using namespace rosa::mqtt;
const std::string AppName = "CCAM";
int main(int argc, char **argv) {
LOG_INFO_STREAM << '\n'
<< library_string() << " -- " << Color::Red << AppName
<< "app" << Color::Default << '\n';
//
// Read the filepath of the config file of the observed system. The filepath
// is in the first argument passed to the application. Fuzzy functions etc.
// are described in this file.
//
if (argc < 2) {
LOG_ERROR("Specify config File!\nUsage:\n\tccam config.json");
return 1;
}
std::string ConfigPath = argv[1];
//
// Load config file and read in all parameters. Fuzzy functions etc. are
// described in this file.
//
if (!readConfigFile(ConfigPath)) {
LOG_ERROR_STREAM << "Could not read config from \"" << ConfigPath << "\"\n";
return 2;
}
//
// Create a CCAM context.
//
LOG_INFO("Creating Context");
std::unique_ptr<Application> AppCCAM = Application::create(AppName);
//
// Create following function which shall give information if the time gap
// between changed input(s) and changed output(s) shows already a malfunction
// of the system.
//
// ____________
// /
// /
// __________/
//
std::shared_ptr<PartialFunction<uint32_t, float>> BrokenDelayFunction(
new PartialFunction<uint32_t, float>(
{{{0, AppConfig.BrokenCounter},
std::make_shared<LinearFunction<uint32_t, float>>(
0, 0.f, AppConfig.BrokenCounter, 1.f)},
{{AppConfig.BrokenCounter, std::numeric_limits<uint32_t>::max()},
std::make_shared<LinearFunction<uint32_t, float>>(1.f, 0.f)}},
0.f));
//
// Create following function which shall give information if the time gap
// between changed input(s) and changed output(s) still shows a
// well-functioning system.
//
// ____________
// \
// \
// \__________
//
std::shared_ptr<PartialFunction<uint32_t, float>> OkDelayFunction(
new PartialFunction<uint32_t, float>(
{{{0, AppConfig.BrokenCounter},
std::make_shared<LinearFunction<uint32_t, float>>(
0, 1.f, AppConfig.BrokenCounter, 0.f)},
{{AppConfig.BrokenCounter, std::numeric_limits<uint32_t>::max()},
std::make_shared<LinearFunction<uint32_t, float>>(0.f, 0.f)}},
1.f));
//
// Create a AppAgent with SystemStateDetector functionality.
//
LOG_INFO("Create SystemStateDetector agent.");
AgentHandle SystemStateDetectorAgent = createSystemStateDetectorAgent(
AppCCAM, "SystemStateDetector", AppConfig.SignalConfigurations.size(),
BrokenDelayFunction, OkDelayFunction);
//
// Set policy of SystemStateDetectorAgent that it wait for all
// SignalStateDetectorAgents
//
std::set<size_t> pos;
for (size_t i = 0; i < AppConfig.SignalConfigurations.size(); ++i)
pos.insert(pos.end(), i);
AppCCAM->setExecutionPolicy(SystemStateDetectorAgent,
AppExecutionPolicy::awaitAll(pos));
//
// Create Vectors for all sensors, all signal related fuzzy functions, all
// signal state detectors, all signal state agents, and all input data files.
//
LOG_INFO("Creating sensors, SignalStateDetector functionalities and their "
"Abstractions.");
std::vector<AgentHandle> Sensors;
std::vector<std::shared_ptr<PartialFunction<float, float>>>
SampleMatchesFunctions;
std::vector<std::shared_ptr<PartialFunction<float, float>>>
SampleMismatchesFunctions;
std::vector<std::shared_ptr<PartialFunction<float, float>>>
SignalIsStableFunctions;
std::vector<std::shared_ptr<PartialFunction<float, float>>>
SignalIsDriftingFunctions;
std::vector<std::shared_ptr<StepFunction<float, float>>>
NumOfSamplesMatchFunctions;
std::vector<std::shared_ptr<StepFunction<float, float>>>
NumOfSamplesMismatchFunctions;
std::vector<std::shared_ptr<PartialFunction<float, float>>>
SampleValidFunctions;
std::vector<std::shared_ptr<PartialFunction<float, float>>>
SampleInvalidFunctions;
std::vector<std::shared_ptr<StepFunction<float, float>>>
NumOfSamplesValidFunctions;
std::vector<std::shared_ptr<StepFunction<float, float>>>
NumOfSamplesInvalidFunctions;
std::vector<std::shared_ptr<
SignalStateDetector<float, float, float, HistoryPolicy::FIFO>>>
SignalStateDetectors;
std::vector<AgentHandle> SignalStateDetectorAgents;
std::vector<std::ifstream> DataFiles;
//
// Go through all signal state configurations (number of signals), and create
// functionalities for SignalStateDetector.
//
for (auto SignalConfiguration : AppConfig.SignalConfigurations) {
//
// Create application sensors.
//
Sensors.emplace_back(
AppCCAM->createSensor<float>(SignalConfiguration.Name + "_Sensor"));
//
// Create following function(s) which shall give information whether one
// sample matches another one (based on the relative distance between them).
//
// ____________
// / \
// / \
// __________/ \__________
//
//
SampleMatchesFunctions.emplace_back(new PartialFunction<float, float>(
{
{{-SignalConfiguration.OuterBound, -SignalConfiguration.InnerBound},
std::make_shared<LinearFunction<float, float>>(
-SignalConfiguration.OuterBound, 0.f,
-SignalConfiguration.InnerBound, 1.f)},
{{-SignalConfiguration.InnerBound, SignalConfiguration.InnerBound},
std::make_shared<LinearFunction<float, float>>(1.f, 0.f)},
{{SignalConfiguration.InnerBound, SignalConfiguration.OuterBound},
std::make_shared<LinearFunction<float, float>>(
SignalConfiguration.InnerBound, 1.f,
SignalConfiguration.OuterBound, 0.f)},
},
0));
//
// Create following function(s) which shall give information whether one
// sample mismatches another one (based on the relative distance between
// them).
//
// ____________ ____________
// \ /
// \ /
// \__________/
//
//
SampleMismatchesFunctions.emplace_back(new PartialFunction<float, float>(
{
{{-SignalConfiguration.OuterBound, -SignalConfiguration.InnerBound},
std::make_shared<LinearFunction<float, float>>(
-SignalConfiguration.OuterBound, 1.f,
-SignalConfiguration.InnerBound, 0.f)},
{{-SignalConfiguration.InnerBound, SignalConfiguration.InnerBound},
std::make_shared<LinearFunction<float, float>>(0.f, 0.f)},
{{SignalConfiguration.InnerBound, SignalConfiguration.OuterBound},
std::make_shared<LinearFunction<float, float>>(
SignalConfiguration.InnerBound, 0.f,
SignalConfiguration.OuterBound, 1.f)},
},
1));
//
// Create following function(s) which shall give information whether a
// signal is stable.
//
// ____________
// / \
// / \
// __________/ \__________
//
//
SignalIsStableFunctions.emplace_back(new PartialFunction<float, float>(
{
{{-SignalConfiguration.OuterBoundDrift,
-SignalConfiguration.InnerBoundDrift},
std::make_shared<LinearFunction<float, float>>(
-SignalConfiguration.OuterBoundDrift, 0.f,
-SignalConfiguration.InnerBoundDrift, 1.f)},
{{-SignalConfiguration.InnerBoundDrift,
SignalConfiguration.InnerBoundDrift},
std::make_shared<LinearFunction<float, float>>(1.f, 0.f)},
{{SignalConfiguration.InnerBoundDrift,
SignalConfiguration.OuterBoundDrift},
std::make_shared<LinearFunction<float, float>>(
SignalConfiguration.InnerBoundDrift, 1.f,
SignalConfiguration.OuterBoundDrift, 0.f)},
},
0));
//
// Create following function(s) which shall give information whether a
// signal is drifting.
//
// ____________ ____________
// \ /
// \ /
// \__________/
//
//
SignalIsDriftingFunctions.emplace_back(new PartialFunction<float, float>(
{
{{-SignalConfiguration.OuterBoundDrift,
-SignalConfiguration.InnerBoundDrift},
std::make_shared<LinearFunction<float, float>>(
-SignalConfiguration.OuterBoundDrift, 1.f,
-SignalConfiguration.InnerBoundDrift, 0.f)},
{{-SignalConfiguration.InnerBoundDrift,
SignalConfiguration.InnerBoundDrift},
std::make_shared<LinearFunction<float, float>>(0.f, 0.f)},
{{SignalConfiguration.InnerBoundDrift,
SignalConfiguration.OuterBoundDrift},
std::make_shared<LinearFunction<float, float>>(
SignalConfiguration.InnerBoundDrift, 0.f,
SignalConfiguration.OuterBoundDrift, 1.f)},
},
1));
//
// Create following function(s) which shall give information how many
// history samples match another sample.
//
// ____________
// /
// /
// __________/
//
NumOfSamplesMatchFunctions.emplace_back(new StepFunction<float, float>(
1.0f / SignalConfiguration.SampleHistorySize, StepDirection::StepUp));
//
// Create following function(s) which shall give information how many
// history samples mismatch another sample.
//
// ____________
// \
// \
// \__________
//
NumOfSamplesMismatchFunctions.emplace_back(new StepFunction<float, float>(
1.0f / SignalConfiguration.SampleHistorySize, StepDirection::StepDown));
//
// Create following function(s) which shall give information how good all
// samples in a state match each other.
//
// ____________
// / \
// / \
// __________/ \__________
//
//
SampleValidFunctions.emplace_back(new PartialFunction<float, float>(
{
{{-SignalConfiguration.OuterBound, -SignalConfiguration.InnerBound},
std::make_shared<LinearFunction<float, float>>(
-SignalConfiguration.OuterBound, 0.f,
-SignalConfiguration.InnerBound, 1.f)},
{{-SignalConfiguration.InnerBound, SignalConfiguration.InnerBound},
std::make_shared<LinearFunction<float, float>>(1.f, 0.f)},
{{SignalConfiguration.InnerBound, SignalConfiguration.OuterBound},
std::make_shared<LinearFunction<float, float>>(
SignalConfiguration.InnerBound, 1.f,
SignalConfiguration.OuterBound, 0.f)},
},
0));
//
// Create following function(s) which shall give information how good all
// samples in a state mismatch each other.
//
// ____________ ____________
// \ /
// \ /
// \__________/
//
//
SampleInvalidFunctions.emplace_back(new PartialFunction<float, float>(
{
{{-SignalConfiguration.OuterBound, -SignalConfiguration.InnerBound},
std::make_shared<LinearFunction<float, float>>(
-SignalConfiguration.OuterBound, 1.f,
-SignalConfiguration.InnerBound, 0.f)},
{{-SignalConfiguration.InnerBound, SignalConfiguration.InnerBound},
std::make_shared<LinearFunction<float, float>>(0.f, 0.f)},
{{SignalConfiguration.InnerBound, SignalConfiguration.OuterBound},
std::make_shared<LinearFunction<float, float>>(
SignalConfiguration.InnerBound, 0.f,
SignalConfiguration.OuterBound, 1.f)},
},
1));
//
// Create following function(s) which shall give information how many
// history samples match each other.
//
// ____________
// /
// /
// __________/
//
NumOfSamplesValidFunctions.emplace_back(new StepFunction<float, float>(
1.0f / SignalConfiguration.SampleHistorySize, StepDirection::StepUp));
//
// Create following function(s) which shall give information how many
// history samples mismatch each other.
//
// ____________
// \
// \
// \__________
//
NumOfSamplesInvalidFunctions.emplace_back(new StepFunction<float, float>(
1.0f / SignalConfiguration.SampleHistorySize, StepDirection::StepDown));
//
// Create SignalStateDetector functionality
//
SignalStateDetectors.emplace_back(
new SignalStateDetector<float, float, float, HistoryPolicy::FIFO>(
SignalConfiguration.Output ? SignalProperties::OUTPUT
: SignalProperties::INPUT,
std::numeric_limits<int>::max(), SampleMatchesFunctions.back(),
SampleMismatchesFunctions.back(), NumOfSamplesMatchFunctions.back(),
NumOfSamplesMismatchFunctions.back(), SampleValidFunctions.back(),
SampleInvalidFunctions.back(), NumOfSamplesValidFunctions.back(),
NumOfSamplesInvalidFunctions.back(),
SignalIsDriftingFunctions.back(), SignalIsStableFunctions.back(),
SignalConfiguration.SampleHistorySize, SignalConfiguration.DABSize,
SignalConfiguration.DABHistorySize));
//
// Create low-level application agents
//
SignalStateDetectorAgents.push_back(createSignalStateDetectorAgent(
AppCCAM, SignalConfiguration.Name, SignalStateDetectors.back()));
AppCCAM->setExecutionPolicy(
SignalStateDetectorAgents.back(),
AppExecutionPolicy::decimation(AppConfig.DownsamplingRate));
//
// Connect sensors to low-level agents.
//
LOG_INFO("Connect sensors to their corresponding low-level agents.");
AppCCAM->connectSensor(SignalStateDetectorAgents.back(), 0, Sensors.back(),
SignalConfiguration.Name + "_Sensor ->" +
SignalConfiguration.Name +
"_SignalStateDetector_Agent-Channel");
AppCCAM->connectAgents(
SystemStateDetectorAgent, SignalStateDetectors.size() - 1,
SignalStateDetectorAgents.back(),
SignalConfiguration.Name +
"_SignalStateDetector_Agent->SystemStateDetector_Agent_Channel");
}
//
// For simulation output, create a logger agent writing the output of the
// high-level agent into a CSV file.
//
LOG_INFO("Create a logger agent.");
// Create CSV writer.
std::ofstream OutputCSV(AppConfig.OutputFilePath);
for (auto SignalConfiguration : AppConfig.SignalConfigurations) {
OutputCSV << SignalConfiguration.Name + ",";
}
OutputCSV << "StateID,";
OutputCSV << "Confidence State Valid,";
OutputCSV << "Confidence State Invalid,";
OutputCSV << "Confidence Inputs Matching,";
OutputCSV << "Confidence Outputs Matching,";
OutputCSV << "Confidence Inputs Mismatching,";
OutputCSV << "Confidence Outputs Mismatching,";
OutputCSV << "State Condition,";
OutputCSV << "Confidence System Functioning,";
OutputCSV << "Confidence System Malfunctioning,";
OutputCSV << "Overall Confidence,";
OutputCSV << "\n";
// The agent writes each new input value into a CSV file and produces
// nothing.
using Input = std::pair<SystemStateTuple, bool>;
using Result = Optional<AppTuple<unit_t>>;
using Handler = std::function<Result(Input)>;
std::string Name = "Logger Agent";
AgentHandle LoggerAgent = AppCCAM->createAgent(
"Logger Agent", Handler([&OutputCSV](Input I) -> Result {
const SystemStateTuple &T = I.first;
OutputCSV << std::get<0>(
static_cast<const std::tuple<std::string> &>(T))
<< std::endl;
return Result();
}));
//
// Connect the high-level agent to the logger agent.
//
LOG_INFO("Connect the high-level agent to the logger agent.");
AppCCAM->connectAgents(LoggerAgent, 0, SystemStateDetectorAgent,
"SystemStateDetector Channel");
//
// Only log if the SystemStateDetector actually ran
//
AppCCAM->setExecutionPolicy(LoggerAgent, AppExecutionPolicy::awaitAll({0}));
//
// Do simulation.
//
LOG_INFO("Setting up and performing simulation.");
//
// Initialize application for simulation.
//
AppCCAM->initializeSimulation();
//
// Open CSV files and register them for their corresponding sensors.
//
// Make sure DataFiles will not change capacity while adding elements to it.
// Changing capacity moves elements away, which invalidates references
// captured by CSVIterator.
DataFiles.reserve(AppConfig.SignalConfigurations.size());
uint32_t i = 0;
bool hasMQTT = false;
for (auto SignalConfiguration : AppConfig.SignalConfigurations) {
switch (SignalConfiguration.DataInterfaceType) {
case DataInterfaceTypes::CSV:
DataFiles.emplace_back(SignalConfiguration.InputPath);
if (!DataFiles.at(i)) {
LOG_ERROR_STREAM << "Cannot open Input File \""
<< SignalConfiguration.InputPath << "\" for Signal \""
<< SignalConfiguration.Name << "\"" << std::endl;
return 3;
}
+ /*
AppCCAM->registerSensorValues(Sensors.at(i),
csv::CSVIterator<float>(DataFiles.at(i)),
csv::CSVIterator<float>());
+ */
+ AppCCAM->registerSensorValues(
+ Sensors.at(i),
+ csv::CSVIterator<float>(DataFiles.at(i), 0,
+ csv::HeaderInformation::HasNoHeader),
+ csv::CSVIterator<float>());
LOG_INFO_STREAM << "Sensor " << SignalConfiguration.Name
<< " is fed by csv file " << SignalConfiguration.InputPath
<< std::endl;
break;
case DataInterfaceTypes::MQTT: {
hasMQTT = true;
auto it = MQTTIterator<float>(SignalConfiguration.MQTTTopic);
AppCCAM->registerSensorValues(Sensors.at(i), std::move(it),
MQTTIterator<float>());
LOG_INFO_STREAM << "Sensor " << SignalConfiguration.Name
<< " is fed by MQTT topic "
<< SignalConfiguration.MQTTTopic << std::endl;
break;
}
default:
LOG_ERROR_STREAM << "No data source for " << SignalConfiguration.Name
<< std::endl;
break;
}
i++;
}
//
// Start simulation.
//
auto &log = LOG_WARNING_STREAM;
log << "Simulation starting.";
if (hasMQTT) {
log << " Publishing MQTT messages may start.";
}
log << std::endl;
AppCCAM->simulate(AppConfig.NumberOfSimulationCycles);
return 0;
}
diff --git a/apps/ccam/sample_data/20200716 MqttTests/config_csv_onlyOneSignal.json b/apps/ccam/sample_data/20200716 MqttTests/config_csv_onlyOneSignal.json
index d5e94e1..4a7668b 100644
--- a/apps/ccam/sample_data/20200716 MqttTests/config_csv_onlyOneSignal.json
+++ b/apps/ccam/sample_data/20200716 MqttTests/config_csv_onlyOneSignal.json
@@ -1,21 +1,21 @@
{
"OutputFilePath" : "out.csv",
"BrokenCounter" : 20,
"NumberOfSimulationCycles" : 20000,
- "DownsamplingRate" : 1,
+ "DownsamplingRate" : 50,
"SignalConfigurations" :
[
{
"Name" : "Dyna",
"InputPath" : "Dyna.csv",
"Output" : true,
"InnerBound" : 0.01,
"OuterBound" : 0.14,
"InnerBoundDrift" : 0.10,
"OuterBoundDrift" : 0.30,
"SampleHistorySize" : 10,
"DABSize" : 10,
"DABHistorySize" : 5
}
]
}
diff --git a/apps/ccam/sample_data/20200716 MqttTests/config_mqtt_onlyOneSignal.json b/apps/ccam/sample_data/20200716 MqttTests/config_mqtt_onlyOneSignal.json
index e0d9066..a68bc7d 100644
--- a/apps/ccam/sample_data/20200716 MqttTests/config_mqtt_onlyOneSignal.json
+++ b/apps/ccam/sample_data/20200716 MqttTests/config_mqtt_onlyOneSignal.json
@@ -1,21 +1,21 @@
{
"OutputFilePath" : "out.csv",
"BrokenCounter" : 20,
"NumberOfSimulationCycles" : 19999,
- "DownsamplingRate" : 1,
+ "DownsamplingRate" : 50,
"SignalConfigurations" :
[
{
"Name" : "Dyna",
"MQTTTopic" : "Dyna",
"Output" : true,
"InnerBound" : 0.01,
"OuterBound" : 0.14,
"InnerBoundDrift" : 0.10,
"OuterBoundDrift" : 0.30,
"SampleHistorySize" : 10,
"DABSize" : 10,
"DABHistorySize" : 5
}
]
}
diff --git a/apps/ccam/sample_data/20200716 MqttTests/out_csv_ds=50.csv b/apps/ccam/sample_data/20200716 MqttTests/out_csv_ds=50.csv
index bee4d3b..dd966eb 100644
--- a/apps/ccam/sample_data/20200716 MqttTests/out_csv_ds=50.csv
+++ b/apps/ccam/sample_data/20200716 MqttTests/out_csv_ds=50.csv
@@ -1,400 +1,401 @@
-Dyna,StateID,Confidence State Valid,Confidence State Invalid,Confidence Inputs Matching,Confidence Outputs Matching,Confidence Inputs Mismatching,Confidence Outputs Mismatching,State Condition,Confidence System Functioning,Confidence System Malfunctioning,Overall Confidence,
--0.009756,1,0.1,0.9,1,0,0,0,0,1,0,0,
--0.0087528,1,0.1,0.9,1,0,0,0,0,1,0,0,
--0.0109176,1,0.1,0.9,1,0,0,0,0,1,0,0,
--0.0106344,1,0.2,0.8,1,0,0.872072,0.127928,0,1,0,0,
-12.8075,1,0.1,0.9,1,0,0,0,0,1,0,0,
-18.6509,1,0.1,0.9,1,0,0,0,0,1,0,0,
-19.5773,1,0.2,0.8,1,0,0.712933,0.287067,0,1,0,0,
-20.2513,1,0.1,0.9,1,0,0,0,0,1,0,0,
-20.6316,1,0.2,0.8,1,0,0.935115,0.0648848,0,1,0,0,
-21.0616,1,0.3,0.7,1,0,0.780963,0.219037,0,1,0,0,
-21.526,1,0.4,0.6,1,0,0.666667,0.378602,0,1,0,0,
-21.7181,1,0.5,0.5,1,0,0.692115,0.442599,0,1,0,0,
-21.9097,1,0.494682,0.505318,1,0,0.628218,0.505318,0,1,0,0,
-21.9882,1,0.469274,0.530727,1,0,0.666667,0.530727,0,1,0,0,
-22.0666,1,0.444123,0.555877,1,0,0.714286,0.555877,0,1,0,0,
-22.0644,1,0.444123,0.555877,1,0,0.727324,0.555185,0,1,0,0,
-22.1628,1,0.413476,0.586524,1,0,0.694731,0.586524,0,1,0,0,
-22.1448,1,0.413476,0.586524,1,0,0.700682,0.580802,0,1,0,0,
-22.1773,1,0.413476,0.586524,1,0,0.8,0.45921,0,1,0,0,
-22.1938,1,0.413476,0.586524,1,0,0.845478,0.315479,0,1,0,0,
-22.2253,1,0.413476,0.586524,1,0,0.9,0.165112,0,1,0,0,
-22.2569,1,0.413476,0.586524,1,0,0.9,0.1093,0,1,0,0,
-22.2552,1,0.413476,0.586524,1,0,0.9575,0.0424997,0,1,0,0,
-22.3176,1,0.413476,0.586524,1,0,0.963382,0.0366181,0,1,0,0,
-22.3166,1,0.413476,0.586524,1,0,0.990006,0.00999444,0,1,0,0,
-22.3017,1,0.413476,0.586524,1,0,0.995079,0.00492093,0,1,0,0,
-22.3181,1,0.419198,0.580802,1,0,1,0,1,1,0,0.419198,
-22.286,1,0.540791,0.45921,1,0,1,0,1,1,0,0.540791,
-22.2398,1,0.684521,0.315479,1,0,1,0,1,1,0,0.684521,
-22.2394,1,0.834888,0.165112,1,0,1,0,1,1,0,0.834888,
-22.24,1,0.8907,0.1093,1,0,1,0,1,1,0,0.8907,
-22.2228,1,0.9575,0.0424997,1,0,1,0,1,1,0,0.9575,
-22.2402,1,0.963382,0.0366181,1,0,1,0,1,1,0,0.963382,
-22.2103,1,0.990006,0.00999444,1,0,1,0,1,1,0,0.990006,
-22.2237,1,0.995079,0.00492093,1,0,1,0,1,1,0,0.995079,
-22.2382,1,1,0,1,0,1,0,1,1,0,1,
-22.2397,1,1,0,1,0,1,0,1,1,0,1,
-22.1788,1,1,0,1,0,1,0,1,1,0,1,
-22.1703,1,1,0,1,0,1,0,1,1,0,1,
-22.1785,1,1,0,1,0,1,0,1,1,0,1,
-22.195,1,1,0,1,0,1,0,1,1,0,1,
-22.1946,1,1,0,1,0,1,0,1,1,0,1,
-22.1921,1,1,0,1,0,1,0,1,1,0,1,
-22.1939,1,1,0,1,0,1,0,1,1,0,1,
-22.193,1,1,0,1,0,1,0,1,1,0,1,
-22.1933,1,1,0,1,0,1,0,1,1,0,1,
-22.2087,1,1,0,1,0,1,0,1,1,0,1,
-22.224,1,1,0,1,0,1,0,1,1,0,1,
-22.2252,1,1,0,1,0,1,0,1,1,0,1,
-22.2248,1,1,0,1,0,1,0,1,1,0,1,
-22.2106,1,1,0,1,0,1,0,1,1,0,1,
-22.1774,1,1,0,1,0,1,0,1,1,0,1,
-22.1606,1,1,0,1,0,1,0,1,1,0,1,
-22.1752,1,1,0,1,0,1,0,1,1,0,1,
-22.1919,1,1,0,1,0,1,0,1,1,0,1,
-22.1617,1,1,0,1,0,1,0,1,1,0,1,
-22.1601,1,1,0,1,0,1,0,1,1,0,1,
-22.1774,1,1,0,1,0,1,0,1,1,0,1,
-22.1757,1,1,0,1,0,1,0,1,1,0,1,
-22.2088,1,1,0,1,0,1,0,1,1,0,1,
-22.2231,1,1,0,1,0,1,0,1,1,0,1,
-22.208,1,1,0,1,0,1,0,1,1,0,1,
-22.1934,1,1,0,1,0,1,0,1,1,0,1,
-22.1937,1,1,0,1,0,1,0,1,1,0,1,
-22.1785,1,1,0,1,0,1,0,1,1,0,1,
-22.1749,1,1,0,1,0,1,0,1,1,0,1,
-22.1765,1,1,0,1,0,1,0,1,1,0,1,
-22.1775,1,1,0,1,0,1,0,1,1,0,1,
-22.1769,1,1,0,1,0,1,0,1,1,0,1,
-22.1908,1,1,0,1,0,1,0,1,1,0,1,
-22.1776,1,1,0,1,0,1,0,1,1,0,1,
-22.1783,1,1,0,1,0,1,0,1,1,0,1,
-22.1769,1,1,0,1,0,1,0,1,1,0,1,
-22.1603,1,1,0,1,0,1,0,1,1,0,1,
-22.1609,1,1,0,1,0,1,0,1,1,0,1,
-22.1607,1,1,0,1,0,1,0,1,1,0,1,
-22.1605,1,1,0,1,0,1,0,1,1,0,1,
-22.1595,1,1,0,1,0,1,0,1,1,0,1,
-22.1602,1,1,0,1,0,1,0,1,1,0,1,
-22.1591,1,1,0,1,0,1,0,1,1,0,1,
-22.1916,1,1,0,1,0,1,0,1,1,0,1,
-22.1747,1,1,0,1,0,1,0,1,1,0,1,
-22.1747,1,1,0,1,0,1,0,1,1,0,1,
-22.1915,1,1,0,1,0,1,0,1,1,0,1,
-22.1929,1,1,0,1,0,1,0,1,1,0,1,
-22.1766,1,1,0,1,0,1,0,1,1,0,1,
-22.1747,1,1,0,1,0,1,0,1,1,0,1,
-22.1903,1,1,0,1,0,1,0,1,1,0,1,
-22.1907,1,1,0,1,0,1,0,1,1,0,1,
-22.2074,1,1,0,1,0,1,0,1,1,0,1,
-22.2075,1,1,0,1,0,1,0,1,1,0,1,
-22.2085,1,1,0,1,0,1,0,1,1,0,1,
-22.2086,1,1,0,1,0,1,0,1,1,0,1,
-22.2083,1,1,0,1,0,1,0,1,1,0,1,
-22.2232,1,1,0,1,0,1,0,1,1,0,1,
-22.2234,1,1,0,1,0,1,0,1,1,0,1,
-22.2242,1,1,0,1,0,1,0,1,1,0,1,
-22.2076,1,1,0,1,0,1,0,1,1,0,1,
-22.1922,1,1,0,1,0,1,0,1,1,0,1,
-22.1912,1,1,0,1,0,1,0,1,1,0,1,
-22.1765,1,1,0,1,0,1,0,1,1,0,1,
-22.1771,1,1,0,1,0,1,0,1,1,0,1,
-22.177,1,1,0,1,0,1,0,1,1,0,1,
-22.1925,1,1,0,1,0,1,0,1,1,0,1,
-22.1921,1,1,0,1,0,1,0,1,1,0,1,
-22.2066,1,1,0,1,0,1,0,1,1,0,1,
-22.1918,1,1,0,1,0,1,0,1,1,0,1,
-22.1923,1,1,0,1,0,1,0,1,1,0,1,
-22.1899,1,1,0,1,0,1,0,1,1,0,1,
-22.1752,1,1,0,1,0,1,0,1,1,0,1,
-22.1763,1,1,0,1,0,1,0,1,1,0,1,
-22.1746,1,1,0,1,0,1,0,1,1,0,1,
-22.1593,1,1,0,1,0,1,0,1,1,0,1,
-22.1617,1,1,0,1,0,1,0,1,1,0,1,
-22.1597,1,1,0,1,0,1,0,1,1,0,1,
-22.1274,1,1,0,1,0,1,0,1,1,0,1,
-22.1438,1,1,0,1,0,1,0,1,1,0,1,
-22.1271,1,1,0,1,0,1,0,1,1,0,1,
-22.1433,1,1,0,1,0,1,0,1,1,0,1,
-22.1448,1,1,0,1,0,1,0,1,1,0,1,
-22.1598,1,1,0,1,0,1,0,1,1,0,1,
-22.1613,1,1,0,1,0,1,0,1,1,0,1,
-22.1765,1,1,0,1,0,1,0,1,1,0,1,
-22.1753,1,1,0,1,0,1,0,1,1,0,1,
-22.1921,1,1,0,1,0,1,0,1,1,0,1,
-22.1751,1,1,0,1,0,1,0,1,1,0,1,
-22.1578,1,1,0,1,0,1,0,1,1,0,1,
-22.16,1,1,0,1,0,1,0,1,1,0,1,
-22.1414,1,1,0,1,0,1,0,1,1,0,1,
-22.1594,1,1,0,1,0,1,0,1,1,0,1,
-22.1598,1,1,0,1,0,1,0,1,1,0,1,
-22.1764,1,1,0,1,0,1,0,1,1,0,1,
-22.1752,1,1,0,1,0,1,0,1,1,0,1,
-22.1902,1,1,0,1,0,1,0,1,1,0,1,
-22.2071,1,1,0,1,0,1,0,1,1,0,1,
-22.2066,1,1,0,1,0,1,0,1,1,0,1,
-22.2069,1,1,0,1,0,1,0,1,1,0,1,
-22.1917,1,1,0,1,0,1,0,1,1,0,1,
-22.1914,1,1,0,1,0,1,0,1,1,0,1,
-22.1922,1,1,0,1,0,1,0,1,1,0,1,
-22.1905,1,1,0,1,0,1,0,1,1,0,1,
-22.208,1,1,0,1,0,1,0,1,1,0,1,
-22.1914,1,1,0,1,0,1,0,1,1,0,1,
-22.1925,1,1,0,1,0,1,0,1,1,0,1,
-22.1756,1,1,0,1,0,1,0,1,1,0,1,
-22.1921,1,1,0,1,0,1,0,1,1,0,1,
-22.1762,1,1,0,1,0,1,0,1,1,0,1,
-22.1752,1,1,0,1,0,1,0,1,1,0,1,
-22.1913,1,1,0,1,0,1,0,1,1,0,1,
-22.1581,1,1,0,1,0,1,0,1,1,0,1,
-22.1743,1,1,0,1,0,1,0,1,1,0,1,
-22.1747,1,1,0,1,0,1,0,1,1,0,1,
-22.1747,1,1,0,1,0,1,0,1,1,0,1,
-22.1919,1,1,0,1,0,1,0,1,1,0,1,
-22.1754,1,1,0,1,0,1,0,1,1,0,1,
-22.1767,1,1,0,1,0,1,0,1,1,0,1,
-22.1586,1,1,0,1,0,1,0,1,1,0,1,
-22.1445,1,1,0,1,0,1,0,1,1,0,1,
-22.1426,1,1,0,1,0,1,0,1,1,0,1,
-22.143,1,1,0,1,0,1,0,1,1,0,1,
-22.143,1,1,0,1,0,1,0,1,1,0,1,
-22.1579,1,1,0,1,0,1,0,1,1,0,1,
-22.159,1,1,0,1,0,1,0,1,1,0,1,
-22.1597,1,1,0,1,0,1,0,1,1,0,1,
-22.1597,1,1,0,1,0,1,0,1,1,0,1,
-22.175,1,1,0,1,0,1,0,1,1,0,1,
-22.177,1,1,0,1,0,1,0,1,1,0,1,
-22.1915,1,1,0,1,0,1,0,1,1,0,1,
-22.1902,1,1,0,1,0,1,0,1,1,0,1,
-22.1918,1,1,0,1,0,1,0,1,1,0,1,
-22.1766,1,1,0,1,0,1,0,1,1,0,1,
-22.1774,1,1,0,1,0,1,0,1,1,0,1,
-22.1752,1,1,0,1,0,1,0,1,1,0,1,
-22.1599,1,1,0,1,0,1,0,1,1,0,1,
-22.16,1,1,0,1,0,1,0,1,1,0,1,
-22.1772,1,1,0,1,0,1,0,1,1,0,1,
-22.1764,1,1,0,1,0,1,0,1,1,0,1,
-22.1613,1,1,0,1,0,1,0,1,1,0,1,
-22.1603,1,1,0,1,0,1,0,1,1,0,1,
-22.1608,1,1,0,1,0,1,0,1,1,0,1,
-22.1762,1,1,0,1,0,1,0,1,1,0,1,
-22.1756,1,1,0,1,0,1,0,1,1,0,1,
-22.1913,1,1,0,1,0,1,0,1,1,0,1,
-22.1757,1,1,0,1,0,1,0,1,1,0,1,
-22.1923,1,1,0,1,0,1,0,1,1,0,1,
-22.191,1,1,0,1,0,1,0,1,1,0,1,
-22.1753,1,1,0,1,0,1,0,1,1,0,1,
-22.1753,1,1,0,1,0,1,0,1,1,0,1,
-22.1796,1,1,0,1,0,1,0,1,1,0,1,
-22.1913,1,1,0,1,0,1,0,1,1,0,1,
-22.1909,1,1,0,1,0,1,0,1,1,0,1,
-22.1775,1,1,0,1,0,1,0,1,1,0,1,
-22.1766,1,1,0,1,0,1,0,1,1,0,1,
-22.177,1,1,0,1,0,1,0,1,1,0,1,
-22.1931,1,1,0,1,0,1,0,1,1,0,1,
-22.1766,1,1,0,1,0,1,0,1,1,0,1,
-22.1776,1,1,0,1,0,1,0,1,1,0,1,
-22.1768,1,1,0,1,0,1,0,1,1,0,1,
-22.1293,1,1,0,1,0,1,0,1,1,0,1,
-22.0015,1,1,0,1,0,1,0,1,1,0,1,
-21.0088,1,0.643305,0.356695,1,0,0.649016,0.356695,1,1,0,0.643305,
-14.5807,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.95,0.05,0.643305,
-11.7194,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.9,0.1,0.643305,
-11.642,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.85,0.15,0.643305,
-11.5935,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.8,0.2,0.643305,
-11.4467,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.75,0.25,0.643305,
-11.5119,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.7,0.3,0.643305,
-11.4653,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.65,0.35,0.643305,
-11.5439,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.6,0.4,0.6,
-11.6571,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.55,0.45,0.55,
-11.6257,1,0.643305,0.356695,1,0,0.649016,0.356695,1,0.5,0.5,0.5,
-11.6088,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0.45,0.55,0,
-11.6114,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0.4,0.6,0,
-11.6102,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0.35,0.65,0,
-11.6737,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0.3,0.7,0,
-11.6902,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0.25,0.75,0,
-11.6895,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0.2,0.8,0,
-11.6734,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0.15,0.85,0,
-11.6733,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0.1,0.9,0,
-11.6733,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0.05,0.95,0,
-11.691,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6908,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.69,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.671,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6582,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6563,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6235,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6411,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6105,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5787,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5772,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.559,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6079,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6093,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5946,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5949,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6111,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6091,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.608,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5914,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5925,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5768,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5786,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5774,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5943,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.592,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6231,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6106,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6086,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6108,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6261,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6101,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6102,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6106,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6115,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6097,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5944,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5945,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5941,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.594,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5941,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5776,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.578,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5937,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5949,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5789,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5953,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5939,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5946,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5952,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5942,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5949,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5972,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6117,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6099,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6094,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5924,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5949,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6101,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6264,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6256,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6262,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6281,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6265,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6285,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6276,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6279,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6273,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.609,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6096,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.61,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6108,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6101,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6104,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5933,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5944,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5944,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6091,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5926,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6109,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6113,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.611,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6104,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6118,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.595,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6108,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6111,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5931,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6106,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6107,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6106,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.612,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6103,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6105,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6091,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6117,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6092,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6102,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6098,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6098,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6104,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6109,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6099,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6111,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6117,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6105,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.61,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6113,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6115,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6102,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6112,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6102,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6124,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6113,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.611,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5944,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5969,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5954,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5953,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6107,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6104,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6113,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6102,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6112,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6099,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6108,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6107,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6098,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6127,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6097,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.61,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6109,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5958,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6112,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6134,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.611,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6111,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6275,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6246,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.624,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.626,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.61,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6096,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6101,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6105,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6115,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6099,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6273,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6115,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6107,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.61,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6104,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6107,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6102,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6097,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6108,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6112,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6092,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6098,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6105,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6108,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5952,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.611,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6108,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6118,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6117,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6107,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6115,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6118,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.61,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6107,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.6114,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.595,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5926,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5954,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5955,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.597,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5798,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
-11.5954,1,0.643305,0.356695,1,0,0.649016,0.356695,3,0,1,0,
+Voltage,Temp1,Temp2,SharkyS,SharkyB,Dyna,Riels,StateID,Confidence State Valid,Confidence State Invalid,Confidence Inputs Matching,Confidence Outputs Matching,Confidence Inputs Mismatching,Confidence Outputs Mismatching,State Condition,Confidence System Functioning,Confidence System Malfunctioning,Overall Confidence,
+0.51,24.19,25.62,0,0,-0.0091224,0,1,0.1,0.9,0,0,0,0,0,1,0,0,
+0.51,24.16,25.62,0,0,-0.009756,0,1,0.2,0.8,1,0,0.577349,0.422651,0,1,0,0,
+0.51,24.16,25.66,0,0,-0.0087528,0,1,0.1,0.9,1,0,0,0,0,1,0,0,
+0.51,24.22,25.66,0,12.3334,-0.0109176,0,1,0.1,0.9,1,0,0,0,0,1,0,0,
+0.51,24.28,25.62,0,15.3334,-0.0106344,0,1,0.1,0.9,1,0,0,0.127928,0,1,0,0,
+0.51,24.37,25.62,0,17.3334,12.8075,0,1,0.1,0.9,1,0,0,0,0,1,0,0,
+0.51,24.41,25.59,0,18.6667,18.6509,0,1,0.1,0.9,1,0,0,0.472527,0,1,0,0,
+0.51,24.47,25.53,0,19.5,19.5773,0,1,0.1,0.9,1,0,0,0.287067,0,1,0,0,
+0.51,24.47,25.44,0,20.1667,20.2513,0,1,0.1,0.9,1,0,0,0.177368,0,1,0,0,
+0.51,24.5,25.37,0,20.6667,20.6316,0,1,0.2,0.8,1,0,0.64268,0.35732,0,1,0,0,
+0.51,24.47,25.34,0,20.8334,21.0616,0,1,0.3,0.7,1,0,0.666667,0.415385,0,1,0,0,
+0.51,24.41,25.31,0,21.6667,21.526,0,1,0.1,0.9,1,0,0,0.378602,0,1,0,0,
+0.51,24.41,25.28,0,21.8334,21.7181,0,1,0.2,0.8,1,0,0.692115,0.442599,0,1,0,0,
+0.51,24.34,25.25,0,22,21.9097,0,1,0.3,0.7,1,0,0.628218,0.505318,0,1,0,0,
+0.51,24.31,25.28,0,22.1667,21.9882,0,1,0.4,0.6,1,0,0.666667,0.530727,0,1,0,0,
+0.51,24.31,25.28,0,21.8334,22.0666,0,1,0.444123,0.555877,1,0,0.714286,0.555877,0,1,0,0,
+0.51,24.31,25.31,0,22,22.0644,0,1,0.444123,0.555877,1,0,0.727324,0.555185,0,1,0,0,
+0.51,24.31,25.31,0,21.8334,22.1628,0,1,0.413476,0.586524,1,0,0.694731,0.586524,0,1,0,0,
+0.51,24.34,25.34,0,22,22.1448,0,1,0.413476,0.586524,1,0,0.700682,0.580802,0,1,0,0,
+0.51,24.31,25.37,0,22,22.1773,0,1,0.413476,0.586524,1,0,0.8,0.45921,0,1,0,0,
+0.51,24.41,25.37,0,21.8334,22.1938,0,1,0.413476,0.586524,1,0,0.845478,0.315479,0,1,0,0,
+0.51,24.41,25.37,0,21.8334,22.2253,0,1,0.413476,0.586524,1,0,0.9,0.165112,0,1,0,0,
+0.51,24.37,25.34,0,22,22.2569,0,1,0.413476,0.586524,1,0,0.9,0.1093,0,1,0,0,
+0.51,24.41,25.34,0,22,22.2552,0,1,0.413476,0.586524,1,0,0.9575,0.0424997,0,1,0,0,
+0.51,24.41,25.34,0,21.8334,22.3176,0,1,0.413476,0.586524,1,0,0.959483,0.0405167,0,1,0,0,
+0.51,24.41,25.31,0,22,22.3166,0,1,0.413476,0.586524,1,0,0.990006,0.00999444,0,1,0,0,
+0.51,24.37,25.31,0,22,22.3017,0,1,0.413476,0.586524,1,0,0.995079,0.00492093,0,1,0,0,
+0.51,24.41,25.31,0,22,22.3181,0,1,0.419198,0.580802,1,0,1,0,0,1,0,0,
+0.51,24.37,25.31,0,21.8334,22.286,0,1,0.540791,0.45921,1,0,1,0,0,1,0,0,
+0.51,24.37,25.31,0,21.8334,22.2398,0,1,0.684521,0.315479,1,0,1,0,0,1,0,0,
+0.51,24.37,25.31,0,22,22.2394,0,1,0.834888,0.165112,1,0,1,0,1,1,0,0.834888,
+0.51,24.34,25.31,0,22,22.24,0,1,0.8907,0.1093,1,0,1,0,1,1,0,0.8907,
+0.51,24.37,25.31,0,22,22.2228,0,1,0.9575,0.0424997,1,0,1,0,1,1,0,0.9575,
+0.51,24.34,25.34,0,22,22.2402,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.2103,0,1,0.990006,0.00999444,1,0,1,0,1,1,0,0.990006,
+0.51,24.37,25.37,0,21.8334,22.2237,0,1,0.995079,0.00492093,1,0,1,0,1,1,0,0.995079,
+0.51,24.41,25.34,0,22.1667,22.2382,0,1,0.961249,0.0387507,1,0,0.961249,0.0387507,1,1,0,0.961249,
+0.51,24.41,25.31,0,22,22.2397,0,1,0.961249,0.0387507,1,0,1,0,1,1,0,0.961249,
+0.51,24.41,25.34,0,21.8334,22.1788,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.37,25.31,0,22,22.1703,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,22,22.1785,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.31,0,21.8334,22.195,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.41,25.34,0,21.8334,22.1946,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.37,25.34,0,22,22.1921,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,22,22.1939,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.31,0,22,22.193,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.34,0,21.8334,22.1933,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.2087,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.224,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.2252,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.37,0,22,22.2248,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.2106,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.31,0,22,22.1774,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.34,0,21.8334,22.1606,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.34,0,22,22.1752,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.31,0,21.8334,22.1919,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.34,0,22,22.1617,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,21.8334,22.1601,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,22,22.1774,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1757,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.31,0,22,22.2088,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.31,0,22,22.2231,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.208,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1934,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1937,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1785,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,21.8334,22.1749,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1765,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1775,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,22,22.1769,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,22,22.1908,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1776,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.31,0,21.8334,22.1783,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1769,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,22,22.1603,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1609,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,21.8334,22.1607,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1605,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1595,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1602,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,21.8334,22.1591,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1916,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.1747,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1747,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.37,0,21.8334,22.1915,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1929,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.1766,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1747,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.1903,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,21.8334,22.1907,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.2074,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.2075,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.2085,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,22,22.2086,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.2083,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.2232,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.2234,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,21.8334,22.2242,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.2076,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1922,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,21.6667,22.1912,0,1,0.95858,0.0414201,1,0,0.95858,0.0414201,1,1,0,0.95858,
+0.51,24.41,25.37,0,22,22.1765,0,1,0.95858,0.0414201,1,0,0.960373,0.039627,1,1,0,0.95858,
+0.51,24.44,25.34,0,21.8334,22.1771,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.41,25.37,0,21.8334,22.177,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.44,25.34,0,21.8334,22.1925,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.41,25.34,0,21.8334,22.1921,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.44,25.37,0,21.8334,22.2066,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.44,25.34,0,22,22.1918,0,1,0.95858,0.0414201,1,0,0.960373,0.039627,1,1,0,0.95858,
+0.51,24.44,25.34,0,21.8334,22.1923,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.41,25.37,0,21.8334,22.1899,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.44,25.34,0,22,22.1752,0,1,0.960373,0.039627,1,0,0.960373,0.039627,1,1,0,0.960373,
+0.51,24.41,25.37,0,21.8334,22.1763,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.34,0,21.8334,22.1746,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.41,25.37,0,22,22.1593,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.34,0,21.8334,22.1617,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.41,25.34,0,21.8334,22.1597,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,22,22.1274,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.34,0,21.8334,22.1438,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,21.8334,22.1271,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.34,0,21.8334,22.1433,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.41,25.34,0,21.8334,22.1448,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,21.8334,22.1598,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.41,0,21.8334,22.1613,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1765,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1753,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.1921,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.1751,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1578,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.16,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,22.1667,22.1414,0,1,0.961249,0.0387507,1,0,0.961249,0.0387507,1,1,0,0.961249,
+0.51,24.44,25.37,0,21.8334,22.1594,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.44,25.37,0,21.8334,22.1598,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.44,25.37,0,21.8334,22.1764,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.44,25.37,0,21.8334,22.1752,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.41,25.37,0,22,22.1902,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.44,25.37,0,21.6667,22.2071,0,1,0.899408,0.100592,1,0,0.9,0.100592,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.2066,0,1,0.899408,0.100592,1,0,0.959483,0.0405167,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.2069,0,1,0.899408,0.100592,1,0,0.959483,0.0405167,1,1,0,0.899408,
+0.51,24.44,25.34,0,21.8334,22.1917,0,1,0.899408,0.100592,1,0,0.959483,0.0405167,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.6667,22.1914,0,1,0.899408,0.100592,1,0,0.9,0.100592,1,1,0,0.899408,
+0.51,24.44,25.34,0,21.8334,22.1922,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.44,25.34,0,22,22.1905,0,1,0.899408,0.100592,1,0,0.960373,0.039627,1,1,0,0.899408,
+0.51,24.44,25.37,0,22,22.208,0,1,0.899408,0.100592,1,0,0.960373,0.039627,1,1,0,0.899408,
+0.51,24.44,25.37,0,22,22.1914,0,1,0.899408,0.100592,1,0,0.960373,0.039627,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.1925,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.47,25.37,0,22,22.1756,0,1,0.899408,0.100592,1,0,0.960373,0.039627,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.1921,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.1762,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.1752,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.41,25.37,0,22,22.1913,0,1,0.960373,0.039627,1,0,0.960373,0.039627,1,1,0,0.960373,
+0.51,24.44,25.37,0,22,22.1581,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,21.8334,22.1743,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.41,0,21.8334,22.1747,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,21.8334,22.1747,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,22,22.1919,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,21.8334,22.1754,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.41,25.37,0,21.8334,22.1767,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,22,22.1586,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.47,25.37,0,22,22.1445,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.41,0,22,22.1426,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,22,22.143,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.143,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1579,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,22,22.159,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.1597,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1597,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.175,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.177,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.1915,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1902,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.1918,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1766,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1774,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,21.8334,22.1752,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,22,22.1599,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.16,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,22,22.1772,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1764,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,21.8334,22.1613,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,21.8334,22.1603,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.1608,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1762,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1756,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1913,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,22,22.1757,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,22,22.1923,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,21.8334,22.191,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.1753,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.1753,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.1796,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.44,0,22,22.1913,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1909,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,21.8334,22.1775,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.5,25.37,0,21.8334,22.1766,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.177,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1931,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1766,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1776,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,22,22.1768,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,19.1667,22.1293,0,1,1,0,1,0,1,0,1,0.95,0.05,0.95,
+0.51,24.44,25.37,10.6667,19,22.0015,0,1,1,0,1,0,1,0,1,0.9,0.1,0.9,
+0.51,24.44,25.41,10.6667,19,21.0088,0,1,1,0,1,0,1,0,1,0.85,0.15,0.85,
+0.51,24.47,25.41,10.5,19,14.5807,0,1,1,0,1,0,1,0,1,0.8,0.2,0.8,
+0.51,24.47,25.37,10.1667,19,11.7194,0,1,1,0,1,0,1,0,1,0.75,0.25,0.75,
+0.51,24.44,25.37,10,0,11.642,0,1,1,0,1,0,1,0,1,0.7,0.3,0.7,
+0.51,24.47,25.41,10,0,11.5935,0,1,1,0,1,0,1,0,1,0.65,0.35,0.65,
+0.51,24.47,25.41,10.1667,0,11.4467,0,1,1,0,1,0,1,0,1,0.6,0.4,0.6,
+0.51,24.47,25.41,10.1667,0,11.5119,0,1,1,0,1,0,1,0,1,0.55,0.45,0.55,
+0.51,24.47,25.41,10.1667,0,11.4653,0,1,1,0,1,0,1,0,1,0.5,0.5,0.5,
+0.51,24.47,25.37,10.1667,0,11.5439,0,1,1,0,1,0,1,0,3,0.45,0.55,0,
+0.51,24.47,25.37,10.1667,0,11.6571,0,1,1,0,1,0,1,0,3,0.4,0.6,0,
+0.51,24.47,25.41,10.1667,0,11.6257,0,1,1,0,1,0,1,0,3,0.35,0.65,0,
+0.51,24.47,25.37,10.1667,0,11.6088,0,1,1,0,1,0,1,0,3,0.3,0.7,0,
+0.51,24.44,25.37,10.1667,0,11.6114,0,1,1,0,1,0,1,0,3,0.25,0.75,0,
+0.51,24.47,25.41,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0.2,0.8,0,
+0.51,24.44,25.37,10.1667,0,11.6737,0,1,1,0,1,0,1,0,3,0.15,0.85,0,
+0.51,24.47,25.37,10.1667,0,11.6902,0,1,1,0,1,0,1,0,3,0.1,0.9,0,
+0.51,24.47,25.37,10.1667,0,11.6895,0,1,1,0,1,0,1,0,3,0.05,0.95,0,
+0.51,24.44,25.34,10.1667,0,11.6734,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6733,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.34,10.1667,0,11.6733,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.691,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6908,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.69,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.41,25.41,10.6667,0,11.671,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6582,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6563,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6235,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6411,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5787,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5772,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.559,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6079,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6093,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5946,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.41,25.37,10.1667,0,11.5949,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6111,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6091,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.608,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.5914,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5925,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.5768,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5786,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5774,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5943,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.5,0,11.592,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6231,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.6667,0,11.6106,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6086,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6261,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6101,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6106,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6097,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.5944,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5945,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5941,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.594,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5941,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5776,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.5,0,11.578,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5937,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5949,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.5789,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5953,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5939,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5946,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5952,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.5942,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.5,0,11.5949,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.6667,0,11.5972,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6117,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.5,0,11.6099,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6094,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5924,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5949,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6101,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6264,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6256,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.6262,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6281,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6265,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6285,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6276,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6279,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.6273,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.609,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.6096,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6101,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5933,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5944,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5944,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.6091,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5926,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6109,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6113,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.611,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6118,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.595,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.6111,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.5931,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6106,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.5,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6106,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.612,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6103,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.6091,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.6117,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6092,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6098,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6098,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6109,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6099,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6111,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6117,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6113,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.47,10.1667,0,11.6112,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6124,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6113,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.611,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.5944,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.5969,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5954,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.5953,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6113,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,9.33335,0,11.6112,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6099,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.5,0,11.6098,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.53,25.44,10.5,0,11.6127,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.6097,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6109,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5958,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6112,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6134,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.5,0,11.611,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6111,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6275,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6246,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.5,0,11.624,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.626,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6096,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6101,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6099,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.6273,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.5,0,11.6097,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6112,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6092,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6098,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.47,10.1667,0,11.5952,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.611,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.6118,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6117,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6118,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.5,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6114,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.595,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.53,25.44,10.1667,0,11.5926,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.5954,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.5955,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.597,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.5798,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.5954,0,1,1,0,1,0,1,0,3,0,1,0,
diff --git a/apps/ccam/sample_data/20200716 MqttTests/out_csv_ds=1.csv b/apps/ccam/sample_data/20200716 MqttTests/out_csv_onlyDyna_ds=1.csv
similarity index 99%
rename from apps/ccam/sample_data/20200716 MqttTests/out_csv_ds=1.csv
rename to apps/ccam/sample_data/20200716 MqttTests/out_csv_onlyDyna_ds=1.csv
index 14a0c2e..6a38eca 100644
--- a/apps/ccam/sample_data/20200716 MqttTests/out_csv_ds=1.csv
+++ b/apps/ccam/sample_data/20200716 MqttTests/out_csv_onlyDyna_ds=1.csv
@@ -1,19999 +1,19999 @@
Dyna,StateID,Confidence State Valid,Confidence State Invalid,Confidence Inputs Matching,Confidence Outputs Matching,Confidence Inputs Mismatching,Confidence Outputs Mismatching,State Condition,Confidence System Functioning,Confidence System Malfunctioning,Overall Confidence,
--0.0087276,1,0.1,0.9,1,0,0,0,0,1,0,0,
+-0.0091224,1,0.1,0.9,1,0,0,0,0,1,0,0,
+-0.0087276,1,0.2,0.8,1,0,0.728956,0.271044,0,1,0,0,
-0.010038,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0098064,1,0.2,0.8,1,0,0.895253,0.104747,0,1,0,0,
-0.0106464,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0101424,1,0.2,0.8,1,0,0.694674,0.305326,0,1,0,0,
-0.0097488,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.01044,1,0.2,0.8,1,0,0.567639,0.432361,0,1,0,0,
-0.0103236,1,0.3,0.7,1,0,0.648629,0.351371,0,1,0,0,
-0.0099528,1,0.4,0.6,1,0,0.700377,0.299623,0,1,0,0,
-0.0108516,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0104868,1,0.2,0.8,1,0,0.809334,0.190666,0,1,0,0,
-0.0111612,1,0.3,0.7,1,0,0.612126,0.387874,0,1,0,0,
-0.01041,1,0.4,0.6,1,0,0.666667,0.478165,0,1,0,0,
-0.01041,1,0.5,0.5,1,0,0.75,0.478165,0,1,0,0,
-0.0100884,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0108996,1,0.2,0.8,1,0,0.504425,0.495575,0,1,0,0,
-0.0094332,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0100176,1,0.2,0.8,1,0,0.628174,0.371826,0,1,0,0,
-0.0098004,1,0.3,0.7,1,0,0.788709,0.211291,0,1,0,0,
-0.0093156,1,0.4,0.6,1,0,0.666667,0.50275,0,1,0,0,
-0.0098148,1,0.49725,0.50275,1,0,0.75,0.314323,0,1,0,0,
-0.0101532,1,0.442337,0.557663,1,0,0.6,0.557663,0,1,0,0,
-0.010056,1,0.442337,0.557663,1,0,0.666667,0.489444,0,1,0,0,
-0.0100512,1,0.442337,0.557663,1,0,0.714286,0.486041,0,1,0,0,
-0.008916,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0084144,1,0.2,0.8,1,0,0.618368,0.381632,0,1,0,0,
-0.0105588,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0094368,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.00939,1,0.2,0.8,1,0,1,0,0,1,0,0,
-0.0087012,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0094872,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0099648,1,0.2,0.8,1,0,0.70824,0.29176,0,1,0,0,
-0.0100812,1,0.3,0.7,1,0,0.62368,0.37632,0,1,0,0,
-0.0104004,1,0.4,0.6,1,0,0.666667,0.598495,0,1,0,0,
-0.0092892,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0102636,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0098664,1,0.2,0.8,1,0,0.767247,0.232753,0,1,0,0,
-0.0119352,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0105648,1,0.1,0.9,1,0,0,0,0,1,0,0,
-0.0106224,1,0.2,0.8,1,0,1,0,0,1,0,0,
-0.0109872,1,0.3,0.7,1,0,0.781195,0.218805,0,1,0,0,
-0.01116,1,0.4,0.6,1,0,0.666667,0.333333,0,1,0,0,
-0.0108372,1,0.5,0.5,1,0,0.847798,0.152202,0,1,0,0,
-0.01137,1,0.53217,0.46783,1,0,0.6,0.46783,0,1,0,0,
-0.0101136,1,0.53217,0.46783,1,0,0.6,0.46783,0,0.95,0.05,0,
-0.0097788,1,0.53217,0.46783,1,0,0.6,0.46783,0,0.9,0.1,0,
-0.009564,1,0.53217,0.46783,1,0,0.6,0.46783,0,0.85,0.15,0,
-0.00987,1,0.53217,0.46783,1,0,0.6,0.46783,0,0.8,0.2,0,
-0.0099792,1,0.53217,0.46783,1,0,0.6,0.46783,0,0.75,0.25,0,
-0.009756,1,0.53217,0.46783,1,0,0.6,0.46783,0,0.7,0.3,0,
-0.0108996,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.009216,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.008898,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0089688,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0093996,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0086916,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0086976,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0075756,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0079176,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0083604,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0083256,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0080952,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0096456,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0095832,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.0090936,1,0.1,0.9,1,0,0.833333,0.255059,0,1,0,0,
-0.010758,1,0.1,0.9,1,0,1,0.360676,0,1,0,0,
-0.0089616,1,0.1,0.9,1,0,1,0.360676,0,1,0,0,
-0.0105516,1,0.1,0.9,1,0,1,0.519706,0,1,0,0,
-0.0096648,1,0.1,0.9,1,0,1,0.519706,0,1,0,0,
-0.0093696,1,0.1,0.9,1,0,1,0.519706,0,1,0,0,
-0.0115572,1,0.1,0.9,1,0,1,0.519706,0,1,0,0,
-0.0100212,1,0.1,0.9,1,0,1,0.519706,0,1,0,0,
-0.0104376,1,0.1,0.9,1,0,0.671879,0.610238,0,1,0,0,
-0.0108264,1,0.2,0.8,1,0,0.800676,0.309313,0,1,0,0,
-0.0106968,1,0.3,0.7,1,0,0.8,0.40719,0,1,0,0,
-0.0095424,1,0.3,0.7,1,0,0.8,0.40719,0,1,0,0,
-0.0105612,1,0.1,0.9,1,0,0.766644,0.512171,0,1,0,0,
-0.0108972,1,0.2,0.8,1,0,0.8,0.256826,0,1,0,0,
-0.0106308,1,0.3,0.7,1,0,0.882424,0.457952,0,1,0,0,
-0.0103932,1,0.353965,0.646035,1,0,0.703899,0.646035,0,1,0,0,
-0.0099852,1,0.353965,0.646035,1,0,0.703899,0.646035,0,1,0,0,
-0.0099312,1,0.353965,0.646035,1,0,0.703899,0.646035,0,1,0,0,
-0.0101784,1,0.353965,0.646035,1,0,0.703899,0.646035,0,1,0,0,
-0.009354,1,0.353965,0.646035,1,0,0.703899,0.646035,0,1,0,0,
-0.0108192,1,0.1,0.9,1,0,0.805611,0.225957,0,1,0,0,
-0.01011,1,0.2,0.8,1,0,0.6,0.522027,0,1,0,0,
-0.0119196,1,0.2,0.8,1,0,0.6,0.522027,0,1,0,0,
-0.0107592,1,0.1,0.9,1,0,1,0.387223,0,1,0,0,
-0.0105336,1,0.2,0.8,1,0,0.8114,0.232417,0,1,0,0,
-0.0105084,1,0.3,0.7,1,0,0.8,0.214712,0,1,0,0,
-0.0105876,1,0.353965,0.646035,1,0,0.851987,0.270072,0,1,0,0,
-0.0103236,1,0.353965,0.646035,1,0,0.752349,0.350477,0,1,0,0,
-0.01017,1,0.353965,0.646035,1,0,0.7,0.473111,0,1,0,0,
-0.0095676,1,0.353965,0.646035,1,0,0.7,0.473111,0,1,0,0,
-0.0096852,1,0.353965,0.646035,1,0,0.7,0.473111,0,1,0,0,
-0.0092496,1,0.353965,0.646035,1,0,0.7,0.473111,0,1,0,0,
-0.0096684,1,0.353965,0.646035,1,0,0.7,0.473111,0,1,0,0,
-0.0106548,1,0.1,0.9,1,0,1,0.316399,0,1,0,0,
-0.0079728,1,0.1,0.9,1,0,1,0.316399,0,1,0,0,
-0.0087528,1,0.1,0.9,1,0,1,0.316399,0,1,0,0,
-0.0108012,1,0.1,0.9,1,0,1,0.41533,0,1,0,0,
-0.010038,1,0.2,0.8,1,0,0.604258,0.521726,0,1,0,0,
-0.0102936,1,0.3,0.7,1,0,0.8,0.302401,0,1,0,0,
-0.0115452,1,0.3,0.7,1,0,0.8,0.302401,0,1,0,0,
-0.0111672,1,0.3,0.7,1,0,0.8,0.302401,0,1,0,0,
-0.0084816,1,0.3,0.7,1,0,0.8,0.302401,0,1,0,0,
-0.0100776,1,0.1,0.9,1,0,1,0.475406,0,1,0,0,
-0.010164,1,0.2,0.8,1,0,0.756335,0.405322,0,1,0,0,
-0.0107148,1,0.3,0.7,1,0,0.685803,0.408962,0,1,0,0,
-0.0114636,1,0.3,0.7,1,0,0.685803,0.408962,0,1,0,0,
-0.0108012,1,0.3,0.7,1,0,0.685803,0.408962,0,1,0,0,
-0.0105612,1,0.1,0.9,1,0,1,0.304153,0,1,0,0,
-0.0105204,1,0.2,0.8,1,0,0.8,0.275798,0,1,0,0,
-0.0097668,1,0.2,0.8,1,0,0.8,0.275798,0,1,0,0,
-0.0100704,1,0.2,0.8,1,0,0.8,0.275798,0,1,0,0,
-0.0085704,1,0.2,0.8,1,0,0.8,0.275798,0,1,0,0,
-0.0099912,1,0.1,0.9,1,0,1,0.546703,0,1,0,0,
-0.0095208,1,0.1,0.9,1,0,1,0.546703,0,1,0,0,
-0.0105132,1,0.1,0.9,1,0,0.758203,0.305015,0,1,0,0,
-0.010932,1,0.2,0.8,1,0,0.6,0.585072,0,1,0,0,
-0.0109728,1,0.2,0.8,1,0,0.6,0.585072,0,1,0,0,
-0.011322,1,0.2,0.8,1,0,0.6,0.585072,0,1,0,0,
-0.0111024,1,0.2,0.8,1,0,0.6,0.585072,0,1,0,0,
-0.0106116,1,0.2,0.8,1,0,0.6,0.585072,0,1,0,0,
-0.0108384,1,0.2,0.8,1,0,0.6,0.585072,0,1,0,0,
-0.0096024,1,0.2,0.8,1,0,0.6,0.585072,0,1,0,0,
-0.009786,1,0.2,0.8,1,0,0.6,0.585072,0,1,0,0,
-0.0099912,1,0.2,0.8,1,0,0.6,0.585072,0,1,0,0,
-0.010548,1,0.1,0.9,1,0,0.733876,0.329133,0,1,0,0,
-0.0097296,1,0.1,0.9,1,0,0.733876,0.329133,0,1,0,0,
-0.0093252,1,0.1,0.9,1,0,0.733876,0.329133,0,1,0,0,
-0.0100632,1,0.1,0.9,1,0,0.733876,0.329133,0,1,0,0,
-0.0099324,1,0.1,0.9,1,0,0.733876,0.329133,0,1,0,0,
-0.0102024,1,0.1,0.9,1,0,0.733876,0.329133,0,1,0,0,
-0.0084924,1,0.1,0.9,1,0,0.733876,0.329133,0,1,0,0,
-0.0107904,1,0.1,0.9,1,0,1,0.492814,0,1,0,0,
-0.0105096,1,0.2,0.8,1,0,0.767755,0.30251,0,1,0,0,
-0.0108996,1,0.3,0.7,1,0,0.8,0.564173,0,1,0,0,
-0.0108864,1,0.4,0.6,1,0,0.810677,0.555624,0,1,0,0,
-0.0109428,1,0.40799,0.59201,1,0,0.774934,0.59201,0,1,0,0,
-0.0101208,1,0.40799,0.59201,1,0,0.567994,0.547838,0,1,0,0,
-0.0106908,1,0.40799,0.59201,1,0,0.8,0.426457,0,1,0,0,
-0.0090228,1,0.40799,0.59201,1,0,0.8,0.426457,0,1,0,0,
-0.0096972,1,0.40799,0.59201,1,0,0.8,0.426457,0,1,0,0,
-0.008586,1,0.40799,0.59201,1,0,0.8,0.426457,0,1,0,0,
-0.0108432,1,0.1,0.9,1,0,1,0.435557,0,1,0,0,
-0.01017,1,0.2,0.8,1,0,0.567733,0.507602,0,1,0,0,
-0.010344,1,0.3,0.7,1,0,0.7,0.368374,0,1,0,0,
-0.0099672,1,0.3,0.7,1,0,0.7,0.368374,0,1,0,0,
-0.0109176,1,0.1,0.9,1,0,0.7,0.484486,0,1,0,0,
-0.011778,1,0.1,0.9,1,0,0.7,0.484486,0,1,0,0,
-0.0104952,1,0.1,0.9,1,0,1,0.251139,0,1,0,0,
-0.0098004,1,0.1,0.9,1,0,1,0.251139,0,1,0,0,
-0.0100884,1,0.1,0.9,1,0,1,0.251139,0,1,0,0,
-0.010566,1,0.1,0.9,1,0,0.8,0.247194,0,1,0,0,
-0.0101064,1,0.2,0.8,1,0,0.6,0.559688,0,1,0,0,
-0.0099408,1,0.2,0.8,1,0,0.6,0.559688,0,1,0,0,
-0.010152,1,0.2,0.8,1,0,0.6,0.559688,0,1,0,0,
-0.010644,1,0.1,0.9,1,0,0.734368,0.311595,0,1,0,0,
-0.0106572,1,0.2,0.8,1,0,0.725265,0.320641,0,1,0,0,
-0.0116592,1,0.2,0.8,1,0,0.725265,0.320641,0,1,0,0,
-0.0100272,1,0.1,0.9,1,0,1,0.606142,0,1,0,0,
-0.0110784,1,0.1,0.9,1,0,1,0.606142,0,1,0,0,
-0.0110028,1,0.1,0.9,1,0,1,0.606142,0,1,0,0,
-0.0093768,1,0.1,0.9,1,0,1,0.606142,0,1,0,0,
-0.0102024,1,0.1,0.9,1,0,1,0.606142,0,1,0,0,
-0.0103776,1,0.1,0.9,1,0,1,0.606142,0,1,0,0,
-0.0103968,1,0.1,0.9,1,0,1,0.606142,0,1,0,0,
-0.0102852,1,0.1,0.9,1,0,1,0.606142,0,1,0,0,
-0.0108588,1,0.1,0.9,1,0,0.7,0.512178,0,1,0,0,
-0.010236,1,0.2,0.8,1,0,0.760393,0.435297,0,1,0,0,
-0.01074,1,0.3,0.7,1,0,0.715943,0.433605,0,1,0,0,
-0.0113148,1,0.3,0.7,1,0,0.715943,0.433605,0,1,0,0,
-0.0119952,1,0.3,0.7,1,0,0.715943,0.433605,0,1,0,0,
-0.0111156,1,0.1,0.9,1,0,0.89921,0.676281,0,1,0,0,
-0.010374,1,0.2,0.8,1,0,0.8,0.472972,0,1,0,0,
-0.0112116,1,0.2,0.8,1,0,0.8,0.472972,0,1,0,0,
-0.0121092,1,0.2,0.8,1,0,0.8,0.472972,0,1,0,0,
-0.0117276,1,0.2,0.8,1,0,0.8,0.472972,0,1,0,0,
-0.0129372,1,0.2,0.8,1,0,0.8,0.472972,0,1,0,0,
-0.0116844,1,0.2,0.8,1,0,0.8,0.472972,0,1,0,0,
-0.0112152,1,0.2,0.8,1,0,0.8,0.472972,0,1,0,0,
-0.0122736,1,0.2,0.8,1,0,0.8,0.472972,0,1,0,0,
-0.0121836,1,0.2,0.8,1,0,0.8,0.472972,0,1,0,0,
-0.010644,1,0.1,0.9,1,0,1,0.368832,0,1,0,0,
-0.0114132,1,0.1,0.9,1,0,1,0.368832,0,1,0,0,
-0.0124332,1,0.1,0.9,1,0,1,0.368832,0,1,0,0,
-0.0115668,1,0.1,0.9,1,0,1,0.368832,0,1,0,0,
-0.0113364,1,0.1,0.9,1,0,1,0.368832,0,1,0,0,
-0.010848,1,0.1,0.9,1,0,1,0.368832,0,1,0,0,
-0.0103776,1,0.1,0.9,1,0,0.971963,0.470114,0,1,0,0,
-0.0111756,1,0.1,0.9,1,0,0.971963,0.470114,0,1,0,0,
-0.0118056,1,0.1,0.9,1,0,0.971963,0.470114,0,1,0,0,
-0.0117132,1,0.1,0.9,1,0,0.971963,0.470114,0,1,0,0,
-0.0116172,1,0.1,0.9,1,0,0.971963,0.470114,0,1,0,0,
-0.0121152,1,0.1,0.9,1,0,0.971963,0.470114,0,1,0,0,
-0.011952,1,0.1,0.9,1,0,0.971963,0.470114,0,1,0,0,
-0.0115416,1,0.1,0.9,1,0,0.971963,0.470114,0,1,0,0,
-0.0113676,1,0.1,0.9,1,0,0.971963,0.470114,0,1,0,0,
-0.0106344,1,0.1,0.9,1,0,0.875,0.36229,0,1,0,0,
-0.0100776,1,0.1,0.9,1,0,0.875,0.36229,0,1,0,0,
-0.0108768,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0112824,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0117372,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.011292,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.011046,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0112956,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.011916,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0110928,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0113136,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0118692,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0114096,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0109344,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.012318,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0116376,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.0115248,1,0.1,0.9,1,0,0.721332,0.523932,0,1,0,0,
-0.011208,1,0.1,0.9,1,0,0.83726,0.733487,0,1,0,0,
-0.0118632,1,0.1,0.9,1,0,0.83726,0.733487,0,1,0,0,
-0.0112224,1,0.1,0.9,1,0,0.83726,0.733487,0,1,0,0,
-0.011418,1,0.1,0.9,1,0,0.83726,0.733487,0,1,0,0,
-0.0127332,1,0.1,0.9,1,0,0.83726,0.733487,0,1,0,0,
-0.0117528,1,0.1,0.9,1,0,0.83726,0.733487,0,1,0,0,
-0.0125028,1,0.1,0.9,1,0,0.83726,0.733487,0,1,0,0,
-0.0119316,1,0.1,0.9,1,0,0.83726,0.733487,0,1,0,0,
-0.0114648,1,0.1,0.9,1,0,0.842628,0.74754,0,1,0,0,
-0.0106584,1,0.2,0.8,1,0,0.746956,0.505066,0,1,0,0,
-0.010908,1,0.25246,0.74754,1,0,0.702886,0.315731,0,1,0,0,
-0.0105156,1,0.25246,0.74754,1,0,0.7,0.617429,0,1,0,0,
-0.0106968,1,0.25246,0.74754,1,0,0.8,0.475362,0,1,0,0,
-0.0112824,1,0.25246,0.74754,1,0,0.641664,0.539967,0,1,0,0,
-0.011256,1,0.25246,0.74754,1,0,0.668526,0.523372,0,1,0,0,
-0.0114384,1,0.25246,0.74754,1,0,0.6,0.543658,0,1,0,0,
-0.0107088,1,0.25246,0.74754,1,0,0.68386,0.466124,0,1,0,0,
-0.0109248,1,0.25246,0.74754,1,0,0.7888,0.303298,0,1,0,0,
-0.0108252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.807,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.808,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.808,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
12.8075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
13.3801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.692,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.692,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
17.6921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6134,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6506,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6496,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6502,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6517,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6499,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6505,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6505,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6505,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6505,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6509,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6508,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6517,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6506,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6512,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6512,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6503,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6505,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6503,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6497,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6511,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6508,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6508,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6497,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.6506,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.7671,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0655,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0667,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0673,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0666,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0654,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0653,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0646,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0657,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0661,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0647,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0662,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0655,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0651,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0645,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0645,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0645,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0652,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0651,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0652,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0664,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0655,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0667,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0664,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0652,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.0657,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5793,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5799,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5796,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5798,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5795,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5808,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5795,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5798,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.5806,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.6338,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9483,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9477,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9463,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9478,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9488,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9475,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9465,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9478,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9475,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9464,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9474,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9469,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9471,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9472,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9467,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9466,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9471,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9469,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9457,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9466,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9458,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9467,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9467,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
19.9471,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.1999,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2521,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2516,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2512,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2515,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2513,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2511,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2514,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2514,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2525,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2516,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2519,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2516,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2514,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2516,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2519,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2519,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2515,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2513,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2511,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2522,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2522,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2515,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2514,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2512,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.2519,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6309,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6307,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6316,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6305,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.63,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6308,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6314,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6303,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.63,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6305,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6305,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6299,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6299,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6296,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6312,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6296,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6293,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6287,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6288,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6294,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6293,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6299,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6306,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.632,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.6316,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7002,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7712,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7711,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7716,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7707,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7711,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7729,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7718,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7715,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7716,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7715,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7709,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7718,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7711,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7711,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.7709,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.8953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0622,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.061,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.061,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.061,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3349,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3488,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3492,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3487,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3497,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3504,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3495,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3497,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3492,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.349,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.35,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3499,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3508,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3488,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.35,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3505,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3497,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3491,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3488,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3495,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3502,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3487,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3496,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3499,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3491,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.3496,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.383,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.525,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.524,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.526,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5232,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.5333,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6516,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6527,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6521,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6517,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.652,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6525,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6525,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6517,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6516,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6515,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6529,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6528,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6537,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6522,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6529,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6527,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6518,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.653,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6537,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6526,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6531,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6527,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6522,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6535,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6527,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6527,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6534,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.6539,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7169,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7173,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7181,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7169,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.717,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7181,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7185,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7183,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7187,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7171,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7169,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7169,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7171,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7163,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7171,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7973,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7972,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7976,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7979,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7976,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7977,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7978,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.797,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7971,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.797,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7974,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7976,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7971,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7977,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.798,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.798,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7971,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7976,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7971,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7979,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.8979,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9845,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9895,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9893,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9886,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9893,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9888,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9888,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9884,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9876,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9887,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9874,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9882,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9887,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9885,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9878,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9877,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9878,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.988,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.989,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9879,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9873,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9874,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9872,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9882,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9875,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.988,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.9889,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.051,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0518,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0512,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0516,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0521,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0516,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0505,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0517,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0514,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0526,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0522,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.052,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0521,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0529,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0527,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0541,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0521,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0528,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0529,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0535,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0511,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0524,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0512,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0522,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0517,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.052,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0522,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0676,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0679,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0675,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0676,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0681,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0683,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0687,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0684,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0681,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0675,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0672,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0671,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0666,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0664,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0665,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0673,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0661,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0668,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0677,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0663,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0665,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0664,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0676,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0666,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0666,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0655,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0676,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0671,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0669,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0656,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0666,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0671,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0651,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0656,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0656,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0639,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0662,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0662,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0668,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0665,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0651,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0653,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0655,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0649,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0653,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0647,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0644,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0652,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0649,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0655,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0656,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0654,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0649,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0653,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0655,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0655,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0672,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0672,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0669,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0679,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1464,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1469,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1466,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.146,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1469,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1471,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1469,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1459,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1478,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1482,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.147,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1486,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1472,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1471,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1468,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1482,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1481,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1466,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1455,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1462,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1469,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1468,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1461,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1474,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1462,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1475,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1623,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1624,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1623,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1618,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1631,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.163,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1623,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1629,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1631,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1622,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.163,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1624,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1624,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1618,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1517,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1465,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1456,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1473,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1457,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1467,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1469,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1463,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1459,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1465,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1455,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1442,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.145,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1494,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1792,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1986,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.21,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1978,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.211,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2572,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2567,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2557,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2556,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2552,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2566,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2558,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2565,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2563,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2566,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2565,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2569,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2571,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2559,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2563,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2558,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2558,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2569,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2555,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2564,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2565,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2551,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2714,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2722,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2723,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2712,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2723,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2716,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2716,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2717,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2728,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2731,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2727,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2719,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2718,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2723,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2723,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2727,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2727,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2701,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2571,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2558,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2569,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2561,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2557,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2558,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2568,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2565,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2565,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2565,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2568,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2551,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2552,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2563,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2556,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2544,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2547,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2544,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2549,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2551,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2559,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2878,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3166,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3183,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.318,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3183,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3189,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3187,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3168,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3164,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3169,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3168,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.317,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3182,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3182,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3182,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3171,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.319,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3183,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3189,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3182,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3187,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3173,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3181,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.319,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3188,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.318,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3182,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3183,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3181,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3185,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3183,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3189,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3186,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3199,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3196,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3185,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.318,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3321,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3339,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3339,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.334,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3328,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3345,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3332,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3348,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3335,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3338,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3333,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.334,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3338,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3317,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.332,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3327,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3327,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3332,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3327,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3335,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3341,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3323,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3331,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3326,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3336,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3334,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3327,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3304,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3162,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3166,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3166,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3167,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3171,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3162,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3173,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.317,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3168,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3168,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3164,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3165,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3183,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3184,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3181,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3168,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3163,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3011,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3017,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3021,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3004,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3013,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3009,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3013,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.301,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3004,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3016,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3007,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3017,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3012,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3007,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3014,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3011,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3011,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3018,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3023,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3019,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3004,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3007,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.302,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3015,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3016,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3017,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3013,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3333,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3347,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3345,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3331,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3326,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.333,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3331,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3343,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3338,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3341,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.334,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3347,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3343,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3345,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3341,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3347,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3356,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3352,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3354,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3353,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3357,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.335,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3352,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3348,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3349,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3333,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3334,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3327,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.318,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3186,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3157,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3171,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3167,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3164,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3167,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3168,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3182,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.316,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3158,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3173,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3163,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3168,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3181,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.316,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3172,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3168,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3171,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3339,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3347,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3344,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3335,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3315,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.333,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3321,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3334,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3338,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3331,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3342,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3338,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3321,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3332,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3327,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3323,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3333,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3328,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3324,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3337,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3334,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.333,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3321,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3343,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3329,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.3334,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.333,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2856,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2861,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2858,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.286,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2866,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2869,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2863,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2855,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2858,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2863,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2864,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2863,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2866,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.286,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2846,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.286,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2855,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2846,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2861,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2862,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2863,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2858,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2854,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2867,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2868,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2861,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2869,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2866,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.286,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2866,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2822,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2705,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2711,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2714,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2718,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2703,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2704,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2704,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2709,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2704,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2697,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2704,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2705,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2723,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2718,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2713,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2714,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2708,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2699,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2724,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2703,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2706,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2696,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2707,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2708,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2711,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2477,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2387,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2379,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2384,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2381,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2392,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2381,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2374,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2388,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2382,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2386,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2383,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2388,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2391,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2387,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2386,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2383,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2386,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2388,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2391,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2387,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2383,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2379,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2382,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2383,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2378,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2377,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2388,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2391,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2387,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2167,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2391,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2384,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2391,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2386,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2382,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2385,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2387,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2388,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2226,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.223,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2218,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2228,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2315,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2386,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2408,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2408,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2413,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2413,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2382,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2392,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2392,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2386,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2391,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2413,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.21,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.226,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2325,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2388,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2392,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2386,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2391,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2387,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2382,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2392,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2408,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2413,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2385,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2399,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2408,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2408,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.24,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2413,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2416,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1703,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1622,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1624,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.162,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1624,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1835,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.195,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2026,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1991,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2219,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2232,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2222,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.223,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.223,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2232,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2232,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2228,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.211,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.151,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.145,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1447,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1449,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1447,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1449,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.145,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1454,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1455,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1458,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1455,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.162,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1624,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1633,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1623,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1618,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.162,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1618,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.162,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1623,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.163,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.21,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.21,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2226,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2232,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1824,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.183,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.179,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1684,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1618,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1711,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1725,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1697,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1805,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1802,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1819,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.21,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.209,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.21,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.21,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2228,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2232,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2232,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2223,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2226,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.223,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2222,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2222,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2228,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2218,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2232,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2228,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2226,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2228,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2227,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.223,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2237,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.223,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2238,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2054,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2064,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2064,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1885,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.19,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2029,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2057,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2059,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2057,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.206,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2054,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1897,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.19,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1677,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1629,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.162,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1618,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1447,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1442,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1442,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1454,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1457,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1302,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1294,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1288,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1296,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1299,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1295,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1296,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1287,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1288,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1295,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1442,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1449,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1455,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1442,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1442,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1295,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1301,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1447,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.145,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1447,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1456,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1454,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1452,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1457,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1452,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1452,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1447,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1447,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1534,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.162,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1623,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1842,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1632,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1575,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1422,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1422,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1422,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1422,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1895,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2051,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2055,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2055,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2057,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2052,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.206,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2055,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2059,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2058,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2058,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2059,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.206,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2056,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2061,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2061,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.206,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2064,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2058,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2057,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2064,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2061,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2061,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2055,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2059,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2064,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2059,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2064,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.206,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.19,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.19,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.189,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1888,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1895,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.19,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1897,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1895,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1893,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2054,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2069,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.206,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2055,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.207,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.205,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2063,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2057,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.2074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1977,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1897,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1895,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1897,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1875,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1731,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1724,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1876,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1729,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1656,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1422,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1458,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.146,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1452,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1422,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1413,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1416,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.141,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1422,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1416,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1416,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1442,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1434,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1429,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1431,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1477,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.158,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1574,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1574,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1574,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1662,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1728,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.188,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1792,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1635,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1618,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1618,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.165,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1622,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1618,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1629,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.159,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1598,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.161,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1605,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.16,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1852,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.19,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.174,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1796,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.19,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.175,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1869,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.176,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.178,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.177,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1754,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1294,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1303,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1299,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1287,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1292,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1289,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1297,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1295,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1293,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1296,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1292,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1302,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1307,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1317,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1292,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1297,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1296,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1293,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1286,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1293,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1305,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1297,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1286,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1296,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1295,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1292,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1287,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1287,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1296,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1299,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1289,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1298,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.1284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0023,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0023,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0024,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0024,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0018,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0028,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0016,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0017,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.002,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0021,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0009,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0005,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0022,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.002,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0011,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0015,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0011,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0019,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0016,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0019,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0012,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0002,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0008,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0006,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0006,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
22.0001,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7435,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7455,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7442,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7457,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7449,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7457,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7444,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7445,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7438,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7456,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7455,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7441,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.7442,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.008,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.009,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0071,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
21.0075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
20.4282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4384,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4388,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4386,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4397,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4393,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4398,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4391,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.44,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4395,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4389,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4387,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4394,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4385,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
18.4396,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.6612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5803,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.58,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5795,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5812,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5807,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5798,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5813,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5805,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5805,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5804,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5799,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5804,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5802,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5797,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5799,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5796,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5804,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5803,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5808,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5812,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5805,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
14.5803,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7201,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.719,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7196,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7187,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7195,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7197,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7195,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7195,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7192,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7199,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7205,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7198,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7197,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7199,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7204,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7187,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7198,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7201,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7202,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3199,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3185,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3204,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3208,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3194,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3195,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.32,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.319,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3198,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3189,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3202,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3198,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3193,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3196,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.319,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3196,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.32,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3206,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3202,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3203,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3201,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.3203,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6416,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6416,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.642,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6405,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6402,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.641,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6401,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5131,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.513,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.512,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5134,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.513,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5139,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.513,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5138,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5139,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5138,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5131,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4488,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4491,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4491,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4472,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4467,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4476,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4478,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4478,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4482,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4482,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4475,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4492,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4478,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4488,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4494,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4476,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4471,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4482,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4486,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4492,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4485,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4487,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4487,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4483,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4475,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4485,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5131,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5148,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5139,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.513,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5139,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5141,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5142,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5134,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5135,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5134,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.514,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5139,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5135,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5131,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5133,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4973,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4973,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4972,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4972,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4976,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4984,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4978,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4975,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4975,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.497,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4975,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4974,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4974,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4968,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4976,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4973,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4975,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4974,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4968,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4973,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4982,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4968,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4971,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4646,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.465,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4647,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4633,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4643,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4641,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4653,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4645,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4646,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.466,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4661,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4661,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4676,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.466,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4644,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4643,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4653,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4645,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4657,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4653,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4646,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4647,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4638,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4642,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4634,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4637,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4641,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.4943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5135,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5141,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5138,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5136,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.512,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.513,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5137,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5139,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5303,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.546,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.545,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5452,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5464,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5465,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5459,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5467,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5459,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5437,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5439,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.544,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5436,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5449,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5443,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5447,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5456,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.545,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5453,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5458,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.545,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.545,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5448,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5463,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5466,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5465,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.547,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5463,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5464,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5469,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.546,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.546,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5457,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5457,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.546,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.546,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5463,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.546,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5456,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5449,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5446,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5451,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.544,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.545,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6014,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.657,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.657,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6565,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6564,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6571,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.657,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6571,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6573,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6566,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6567,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6566,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6564,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6561,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6561,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6572,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6563,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6571,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6571,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6526,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6413,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6408,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6414,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.642,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6416,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6408,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6413,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6727,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6728,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6727,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6723,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6724,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.672,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6728,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.673,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.672,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6724,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6718,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6718,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6719,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6727,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6724,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6712,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6718,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6725,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6718,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6713,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6723,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6727,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6727,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6725,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6719,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6728,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6893,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6895,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.689,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6881,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6876,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6888,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.689,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6884,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.689,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6887,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6887,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6885,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6884,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6874,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6889,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6889,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6897,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6897,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6893,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7058,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7056,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7066,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7056,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.707,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7055,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7053,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7038,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7058,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7044,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7043,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7052,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7065,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7062,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7061,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7064,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7058,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7061,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6895,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6897,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6888,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6893,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6895,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.69,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.69,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.69,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.66,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6583,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6574,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.657,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6564,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6573,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6575,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6568,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6575,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.673,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6722,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6728,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6714,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6728,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6723,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6721,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6729,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.672,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6727,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6729,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.673,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.672,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6724,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6716,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6723,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.673,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.675,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6748,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.673,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6731,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6729,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6728,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6729,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6731,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6728,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.675,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6741,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6734,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6743,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6746,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6751,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6749,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6733,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.673,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.673,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6747,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6886,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6892,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.689,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.69,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.69,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.689,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.692,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6897,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.69,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6909,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6976,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7221,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7219,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7228,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7222,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7226,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7228,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7224,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7219,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7226,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7233,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7227,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7219,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7219,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7217,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7225,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.722,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7227,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7217,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7222,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.7229,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6889,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6888,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6911,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6897,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6887,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6895,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6898,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6906,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.69,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.689,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.689,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6902,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6907,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6901,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6896,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6904,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6891,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6905,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6899,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.691,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6912,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6903,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.675,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6735,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.675,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6725,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6736,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6738,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6745,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6732,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6737,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6726,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.674,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6739,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6744,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.671,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6574,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6591,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6575,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6572,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6575,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6565,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6566,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6571,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6572,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6568,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6573,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6572,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6573,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6574,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.659,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6588,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6572,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6587,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6589,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6575,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6584,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6563,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.658,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6585,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6582,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6586,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6514,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6416,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.643,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6433,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6427,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6428,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.641,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6422,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6415,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6424,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6404,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6409,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.642,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6235,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6422,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6432,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.642,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6417,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6411,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6425,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6419,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6421,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6418,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6407,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6426,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6423,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6403,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6412,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6406,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6408,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.641,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.64,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5793,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5854,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5623,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5616,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5632,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5632,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.563,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5622,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.563,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5614,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5622,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.562,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5621,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5615,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5606,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.559,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.56,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.559,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.559,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5603,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5619,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5623,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.56,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5599,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5601,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.56,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5617,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5742,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5755,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6016,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6077,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6068,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6075,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6067,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6073,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5987,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5915,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5908,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5918,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5916,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5824,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5761,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5752,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5793,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5793,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5763,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5756,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.576,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5757,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5759,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5766,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5764,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5753,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6038,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6239,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6236,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.624,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6231,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.624,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6074,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5914,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5886,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5792,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5762,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5765,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5768,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5767,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5769,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5758,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.577,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5793,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5793,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5795,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5792,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5778,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5784,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5772,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5773,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5792,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5771,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5777,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5782,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5776,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5774,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5779,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5775,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5796,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5789,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5792,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5792,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5796,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5792,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5795,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5798,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5793,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5791,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5781,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.578,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5785,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5787,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5783,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5849,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5968,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5972,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5969,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6078,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.607,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5917,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5921,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.592,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5919,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.602,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6008,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6049,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6234,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6289,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6288,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6288,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6287,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6289,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6289,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6291,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5975,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6044,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6076,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5925,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5923,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6044,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6137,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5971,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5969,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5971,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5968,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5968,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6054,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.604,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6241,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6072,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6079,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5922,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5969,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6081,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5968,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5993,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6134,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6133,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6136,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6285,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.628,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6246,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6255,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6247,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6244,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.624,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6245,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6243,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6251,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.625,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6249,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6253,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6254,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6264,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.608,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6086,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6262,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6265,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6258,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6276,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6282,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6286,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6283,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6286,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6284,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6279,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6278,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6281,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6273,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6269,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6267,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6191,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.626,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6256,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6275,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6266,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6286,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6272,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6277,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6274,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6288,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6271,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6259,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6261,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6268,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.627,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6248,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6263,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6252,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6242,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6257,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.609,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6091,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6083,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6087,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6085,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6089,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6082,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6088,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6092,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6098,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5969,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6094,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6084,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6093,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6096,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6131,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6133,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6144,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6143,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6134,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6131,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6134,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6131,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6135,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6134,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6139,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6134,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6138,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6131,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6131,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6095,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6124,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.61,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6101,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6129,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6128,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6113,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.613,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6133,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6125,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6132,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6103,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6102,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6106,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.611,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6107,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6122,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6115,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6112,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6117,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6118,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6123,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6104,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6099,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6097,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6111,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6109,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6126,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6114,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6119,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6116,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.612,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6127,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6105,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6108,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.6121,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5926,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5928,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5935,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5913,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5924,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5929,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5934,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5938,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5927,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5933,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5939,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.593,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5936,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5937,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5932,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.594,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5942,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5958,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5966,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5894,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5809,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5807,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5804,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5808,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5805,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5809,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5823,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5807,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.58,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5796,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5802,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5804,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5788,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.58,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5806,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5803,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5809,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5799,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5801,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.579,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5786,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5797,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.581,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5795,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5797,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5806,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.58,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5802,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5803,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5809,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5802,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5815,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5804,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5802,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5798,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5798,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5798,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5799,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5794,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5811,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5805,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5812,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5811,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5803,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5799,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5807,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.58,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5803,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5803,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5805,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5969,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5965,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5969,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5967,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5975,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5964,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5957,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5956,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5962,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.597,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5959,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5949,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5951,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5963,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.596,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5954,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5945,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5943,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.595,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5947,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5953,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5931,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5946,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5941,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5955,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5952,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5944,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
11.5948,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
-11.5961,1,0.382571,0.617429,1,0,0.75204,0.377572,0,1,0,0,
diff --git a/apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=50.csv b/apps/ccam/sample_data/20200716 MqttTests/out_csv_onlyDyna_ds=50.csv
similarity index 100%
copy from apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=50.csv
copy to apps/ccam/sample_data/20200716 MqttTests/out_csv_onlyDyna_ds=50.csv
diff --git a/apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=50.csv b/apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=50.csv
index 63957e9..dd966eb 100644
--- a/apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=50.csv
+++ b/apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=50.csv
@@ -1,400 +1,401 @@
-Dyna,StateID,Confidence State Valid,Confidence State Invalid,Confidence Inputs Matching,Confidence Outputs Matching,Confidence Inputs Mismatching,Confidence Outputs Mismatching,State Condition,Confidence System Functioning,Confidence System Malfunctioning,Overall Confidence,
--0.0099792,1,0.1,0.9,1,0,0,0,0,1,0,0,
--0.0079728,1,0.1,0.9,1,0,0,0,0,1,0,0,
--0.0099672,1,0.1,0.9,1,0,0,0,0,1,0,0,
--0.0113676,1,0.1,0.9,1,0,0,0,0,1,0,0,
-12.8082,1,0.1,0.9,1,0,0,0,0,1,0,0,
-18.6505,1,0.1,0.9,1,0,0,0,0,1,0,0,
-19.5788,1,0.2,0.8,1,0,0.712216,0.287784,0,1,0,0,
-20.2515,1,0.1,0.9,1,0,0,0,0,1,0,0,
-20.632,1,0.2,0.8,1,0,0.935068,0.0649316,0,1,0,0,
-21.0616,1,0.3,0.7,1,0,0.781028,0.218972,0,1,0,0,
-21.5258,1,0.4,0.6,1,0,0.666667,0.378461,0,1,0,0,
-21.7174,1,0.5,0.5,1,0,0.692455,0.44231,0,1,0,0,
-21.9101,1,0.494612,0.505388,1,0,0.628191,0.505388,0,1,0,0,
-21.9872,1,0.469664,0.530336,1,0,0.666667,0.530336,0,1,0,0,
-22.066,1,0.444383,0.555617,1,0,0.714286,0.555617,0,1,0,0,
-22.0647,1,0.444383,0.555617,1,0,0.72724,0.555205,0,1,0,0,
-22.1628,1,0.41354,0.58646,1,0,0.694734,0.58646,0,1,0,0,
-22.1445,1,0.41354,0.58646,1,0,0.700785,0.580642,0,1,0,0,
-22.1783,1,0.41354,0.58646,1,0,0.8,0.459417,0,1,0,0,
-22.1934,1,0.41354,0.58646,1,0,0.84554,0.31534,0,1,0,0,
-22.2266,1,0.41354,0.58646,1,0,0.9,0.165598,0,1,0,0,
-22.2558,1,0.41354,0.58646,1,0,0.9,0.109154,0,1,0,0,
-22.2562,1,0.41354,0.58646,1,0,0.957281,0.0427194,0,1,0,0,
-22.3179,1,0.41354,0.58646,1,0,0.962957,0.0370429,0,1,0,0,
-22.3166,1,0.41354,0.58646,1,0,0.990093,0.00990693,0,1,0,0,
-22.3016,1,0.41354,0.58646,1,0,0.995198,0.00480212,0,1,0,0,
-22.3168,1,0.419358,0.580642,1,0,1,0,1,1,0,0.419358,
-22.2866,1,0.540583,0.459417,1,0,1,0,1,1,0,0.540583,
-22.2389,1,0.68466,0.31534,1,0,1,0,1,1,0,0.68466,
-22.2394,1,0.834402,0.165598,1,0,1,0,1,1,0,0.834402,
-22.2395,1,0.890846,0.109154,1,0,1,0,1,1,0,0.890846,
-22.2218,1,0.957281,0.0427194,1,0,1,0,1,1,0,0.957281,
-22.2406,1,0.962957,0.0370429,1,0,1,0,1,1,0,0.962957,
-22.2102,1,0.990093,0.00990693,1,0,1,0,1,1,0,0.990093,
-22.2237,1,0.995198,0.00480212,1,0,1,0,1,1,0,0.995198,
-22.2387,1,1,0,1,0,1,0,1,1,0,1,
-22.2398,1,1,0,1,0,1,0,1,1,0,1,
-22.1787,1,1,0,1,0,1,0,1,1,0,1,
-22.1769,1,1,0,1,0,1,0,1,1,0,1,
-22.179,1,1,0,1,0,1,0,1,1,0,1,
-22.1957,1,1,0,1,0,1,0,1,1,0,1,
-22.1925,1,1,0,1,0,1,0,1,1,0,1,
-22.1927,1,1,0,1,0,1,0,1,1,0,1,
-22.1935,1,1,0,1,0,1,0,1,1,0,1,
-22.1929,1,1,0,1,0,1,0,1,1,0,1,
-22.1927,1,1,0,1,0,1,0,1,1,0,1,
-22.2082,1,1,0,1,0,1,0,1,1,0,1,
-22.2236,1,1,0,1,0,1,0,1,1,0,1,
-22.2248,1,1,0,1,0,1,0,1,1,0,1,
-22.225,1,1,0,1,0,1,0,1,1,0,1,
-22.2112,1,1,0,1,0,1,0,1,1,0,1,
-22.178,1,1,0,1,0,1,0,1,1,0,1,
-22.1608,1,1,0,1,0,1,0,1,1,0,1,
-22.1766,1,1,0,1,0,1,0,1,1,0,1,
-22.1928,1,1,0,1,0,1,0,1,1,0,1,
-22.1626,1,1,0,1,0,1,0,1,1,0,1,
-22.1602,1,1,0,1,0,1,0,1,1,0,1,
-22.1786,1,1,0,1,0,1,0,1,1,0,1,
-22.1769,1,1,0,1,0,1,0,1,1,0,1,
-22.2087,1,1,0,1,0,1,0,1,1,0,1,
-22.2236,1,1,0,1,0,1,0,1,1,0,1,
-22.2084,1,1,0,1,0,1,0,1,1,0,1,
-22.1939,1,1,0,1,0,1,0,1,1,0,1,
-22.193,1,1,0,1,0,1,0,1,1,0,1,
-22.1776,1,1,0,1,0,1,0,1,1,0,1,
-22.1756,1,1,0,1,0,1,0,1,1,0,1,
-22.1768,1,1,0,1,0,1,0,1,1,0,1,
-22.1759,1,1,0,1,0,1,0,1,1,0,1,
-22.1777,1,1,0,1,0,1,0,1,1,0,1,
-22.1919,1,1,0,1,0,1,0,1,1,0,1,
-22.1776,1,1,0,1,0,1,0,1,1,0,1,
-22.1774,1,1,0,1,0,1,0,1,1,0,1,
-22.1764,1,1,0,1,0,1,0,1,1,0,1,
-22.16,1,1,0,1,0,1,0,1,1,0,1,
-22.1606,1,1,0,1,0,1,0,1,1,0,1,
-22.1602,1,1,0,1,0,1,0,1,1,0,1,
-22.1598,1,1,0,1,0,1,0,1,1,0,1,
-22.1583,1,1,0,1,0,1,0,1,1,0,1,
-22.1599,1,1,0,1,0,1,0,1,1,0,1,
-22.161,1,1,0,1,0,1,0,1,1,0,1,
-22.1912,1,1,0,1,0,1,0,1,1,0,1,
-22.1744,1,1,0,1,0,1,0,1,1,0,1,
-22.1756,1,1,0,1,0,1,0,1,1,0,1,
-22.191,1,1,0,1,0,1,0,1,1,0,1,
-22.1922,1,1,0,1,0,1,0,1,1,0,1,
-22.1777,1,1,0,1,0,1,0,1,1,0,1,
-22.1761,1,1,0,1,0,1,0,1,1,0,1,
-22.1894,1,1,0,1,0,1,0,1,1,0,1,
-22.1907,1,1,0,1,0,1,0,1,1,0,1,
-22.2084,1,1,0,1,0,1,0,1,1,0,1,
-22.2078,1,1,0,1,0,1,0,1,1,0,1,
-22.2084,1,1,0,1,0,1,0,1,1,0,1,
-22.2091,1,1,0,1,0,1,0,1,1,0,1,
-22.2076,1,1,0,1,0,1,0,1,1,0,1,
-22.2228,1,1,0,1,0,1,0,1,1,0,1,
-22.2235,1,1,0,1,0,1,0,1,1,0,1,
-22.2235,1,1,0,1,0,1,0,1,1,0,1,
-22.2079,1,1,0,1,0,1,0,1,1,0,1,
-22.1922,1,1,0,1,0,1,0,1,1,0,1,
-22.1908,1,1,0,1,0,1,0,1,1,0,1,
-22.1763,1,1,0,1,0,1,0,1,1,0,1,
-22.1766,1,1,0,1,0,1,0,1,1,0,1,
-22.1767,1,1,0,1,0,1,0,1,1,0,1,
-22.1928,1,1,0,1,0,1,0,1,1,0,1,
-22.192,1,1,0,1,0,1,0,1,1,0,1,
-22.2075,1,1,0,1,0,1,0,1,1,0,1,
-22.1927,1,1,0,1,0,1,0,1,1,0,1,
-22.1924,1,1,0,1,0,1,0,1,1,0,1,
-22.1897,1,1,0,1,0,1,0,1,1,0,1,
-22.1752,1,1,0,1,0,1,0,1,1,0,1,
-22.1749,1,1,0,1,0,1,0,1,1,0,1,
-22.1752,1,1,0,1,0,1,0,1,1,0,1,
-22.1587,1,1,0,1,0,1,0,1,1,0,1,
-22.162,1,1,0,1,0,1,0,1,1,0,1,
-22.1608,1,1,0,1,0,1,0,1,1,0,1,
-22.1267,1,1,0,1,0,1,0,1,1,0,1,
-22.1439,1,1,0,1,0,1,0,1,1,0,1,
-22.1282,1,1,0,1,0,1,0,1,1,0,1,
-22.1431,1,1,0,1,0,1,0,1,1,0,1,
-22.1441,1,1,0,1,0,1,0,1,1,0,1,
-22.1592,1,1,0,1,0,1,0,1,1,0,1,
-22.1606,1,1,0,1,0,1,0,1,1,0,1,
-22.1741,1,1,0,1,0,1,0,1,1,0,1,
-22.1766,1,1,0,1,0,1,0,1,1,0,1,
-22.1922,1,1,0,1,0,1,0,1,1,0,1,
-22.1746,1,1,0,1,0,1,0,1,1,0,1,
-22.1586,1,1,0,1,0,1,0,1,1,0,1,
-22.161,1,1,0,1,0,1,0,1,1,0,1,
-22.1428,1,1,0,1,0,1,0,1,1,0,1,
-22.1596,1,1,0,1,0,1,0,1,1,0,1,
-22.1589,1,1,0,1,0,1,0,1,1,0,1,
-22.1776,1,1,0,1,0,1,0,1,1,0,1,
-22.1749,1,1,0,1,0,1,0,1,1,0,1,
-22.1909,1,1,0,1,0,1,0,1,1,0,1,
-22.2065,1,1,0,1,0,1,0,1,1,0,1,
-22.2062,1,1,0,1,0,1,0,1,1,0,1,
-22.2074,1,1,0,1,0,1,0,1,1,0,1,
-22.1911,1,1,0,1,0,1,0,1,1,0,1,
-22.1926,1,1,0,1,0,1,0,1,1,0,1,
-22.1921,1,1,0,1,0,1,0,1,1,0,1,
-22.1911,1,1,0,1,0,1,0,1,1,0,1,
-22.2067,1,1,0,1,0,1,0,1,1,0,1,
-22.1915,1,1,0,1,0,1,0,1,1,0,1,
-22.1937,1,1,0,1,0,1,0,1,1,0,1,
-22.1755,1,1,0,1,0,1,0,1,1,0,1,
-22.1915,1,1,0,1,0,1,0,1,1,0,1,
-22.1756,1,1,0,1,0,1,0,1,1,0,1,
-22.1751,1,1,0,1,0,1,0,1,1,0,1,
-22.1924,1,1,0,1,0,1,0,1,1,0,1,
-22.1597,1,1,0,1,0,1,0,1,1,0,1,
-22.1752,1,1,0,1,0,1,0,1,1,0,1,
-22.1741,1,1,0,1,0,1,0,1,1,0,1,
-22.1742,1,1,0,1,0,1,0,1,1,0,1,
-22.1916,1,1,0,1,0,1,0,1,1,0,1,
-22.1751,1,1,0,1,0,1,0,1,1,0,1,
-22.1761,1,1,0,1,0,1,0,1,1,0,1,
-22.1592,1,1,0,1,0,1,0,1,1,0,1,
-22.1433,1,1,0,1,0,1,0,1,1,0,1,
-22.1433,1,1,0,1,0,1,0,1,1,0,1,
-22.1424,1,1,0,1,0,1,0,1,1,0,1,
-22.1423,1,1,0,1,0,1,0,1,1,0,1,
-22.16,1,1,0,1,0,1,0,1,1,0,1,
-22.1593,1,1,0,1,0,1,0,1,1,0,1,
-22.1593,1,1,0,1,0,1,0,1,1,0,1,
-22.1598,1,1,0,1,0,1,0,1,1,0,1,
-22.1752,1,1,0,1,0,1,0,1,1,0,1,
-22.1775,1,1,0,1,0,1,0,1,1,0,1,
-22.1919,1,1,0,1,0,1,0,1,1,0,1,
-22.1903,1,1,0,1,0,1,0,1,1,0,1,
-22.1916,1,1,0,1,0,1,0,1,1,0,1,
-22.1756,1,1,0,1,0,1,0,1,1,0,1,
-22.1771,1,1,0,1,0,1,0,1,1,0,1,
-22.1744,1,1,0,1,0,1,0,1,1,0,1,
-22.1593,1,1,0,1,0,1,0,1,1,0,1,
-22.1595,1,1,0,1,0,1,0,1,1,0,1,
-22.1769,1,1,0,1,0,1,0,1,1,0,1,
-22.1773,1,1,0,1,0,1,0,1,1,0,1,
-22.1616,1,1,0,1,0,1,0,1,1,0,1,
-22.1616,1,1,0,1,0,1,0,1,1,0,1,
-22.1599,1,1,0,1,0,1,0,1,1,0,1,
-22.1761,1,1,0,1,0,1,0,1,1,0,1,
-22.1762,1,1,0,1,0,1,0,1,1,0,1,
-22.1909,1,1,0,1,0,1,0,1,1,0,1,
-22.1767,1,1,0,1,0,1,0,1,1,0,1,
-22.1927,1,1,0,1,0,1,0,1,1,0,1,
-22.1919,1,1,0,1,0,1,0,1,1,0,1,
-22.1755,1,1,0,1,0,1,0,1,1,0,1,
-22.1753,1,1,0,1,0,1,0,1,1,0,1,
-22.1759,1,1,0,1,0,1,0,1,1,0,1,
-22.1907,1,1,0,1,0,1,0,1,1,0,1,
-22.1916,1,1,0,1,0,1,0,1,1,0,1,
-22.1765,1,1,0,1,0,1,0,1,1,0,1,
-22.177,1,1,0,1,0,1,0,1,1,0,1,
-22.1783,1,1,0,1,0,1,0,1,1,0,1,
-22.193,1,1,0,1,0,1,0,1,1,0,1,
-22.1773,1,1,0,1,0,1,0,1,1,0,1,
-22.1776,1,1,0,1,0,1,0,1,1,0,1,
-22.1756,1,1,0,1,0,1,0,1,1,0,1,
-22.1296,1,1,0,1,0,1,0,1,1,0,1,
-22.0011,1,1,0,1,0,1,0,1,1,0,1,
-21.0073,1,0.642739,0.357261,1,0,0.648383,0.357261,1,1,0,0.642739,
-14.5812,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.95,0.05,0.642739,
-11.7194,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.9,0.1,0.642739,
-11.6423,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.85,0.15,0.642739,
-11.593,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.8,0.2,0.642739,
-11.4472,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.75,0.25,0.642739,
-11.5121,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.7,0.3,0.642739,
-11.4643,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.65,0.35,0.642739,
-11.5453,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.6,0.4,0.6,
-11.6564,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.55,0.45,0.55,
-11.6253,1,0.642739,0.357261,1,0,0.648383,0.357261,1,0.5,0.5,0.5,
-11.6092,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0.45,0.55,0,
-11.6104,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0.4,0.6,0,
-11.6105,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0.35,0.65,0,
-11.6727,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0.3,0.7,0,
-11.6891,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0.25,0.75,0,
-11.6904,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0.2,0.8,0,
-11.6575,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0.15,0.85,0,
-11.674,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0.1,0.9,0,
-11.6742,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0.05,0.95,0,
-11.6906,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6907,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6905,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6753,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6597,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6577,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6243,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6418,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6112,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5775,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5783,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.56,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.609,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6086,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5958,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5939,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6116,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6083,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6079,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5918,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5931,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5767,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5776,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5785,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5933,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5936,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6247,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6259,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6091,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6102,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6265,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6103,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6106,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6106,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6102,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6101,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5938,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5946,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5942,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5936,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5945,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5773,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5776,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5943,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5945,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5796,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5953,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5941,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5944,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5953,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5935,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5928,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5957,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6118,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6105,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6092,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5939,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5949,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6098,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6259,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.626,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6262,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6283,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6271,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6281,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6273,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6275,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6259,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.609,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6095,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6102,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6099,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6093,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6104,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5941,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5933,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5939,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6089,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5928,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6118,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6107,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6115,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6109,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6123,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5957,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6111,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6103,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5939,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6114,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6103,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6111,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6101,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6107,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6109,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6097,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6113,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.609,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6101,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6102,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6087,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6107,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6107,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6109,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6126,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6103,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6096,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6094,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6111,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6119,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6102,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6113,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6113,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6117,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.612,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6103,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5949,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5957,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5958,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5953,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6107,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6119,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.611,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6104,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6121,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6102,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6119,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6103,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6106,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6121,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6089,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6095,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6118,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6109,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6116,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6126,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6117,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6112,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6269,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6249,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6244,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6264,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6101,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6103,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6106,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6097,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6112,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6111,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6274,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.61,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6105,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6092,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6106,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6101,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6102,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6103,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6099,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6111,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6087,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6099,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6092,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6112,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5951,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6121,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6115,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6127,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6105,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6105,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6116,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6118,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6116,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6119,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.6126,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5951,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5928,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5952,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5948,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5957,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5798,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
-11.5962,1,0.642739,0.357261,1,0,0.648383,0.357261,3,0,1,0,
+Voltage,Temp1,Temp2,SharkyS,SharkyB,Dyna,Riels,StateID,Confidence State Valid,Confidence State Invalid,Confidence Inputs Matching,Confidence Outputs Matching,Confidence Inputs Mismatching,Confidence Outputs Mismatching,State Condition,Confidence System Functioning,Confidence System Malfunctioning,Overall Confidence,
+0.51,24.19,25.62,0,0,-0.0091224,0,1,0.1,0.9,0,0,0,0,0,1,0,0,
+0.51,24.16,25.62,0,0,-0.009756,0,1,0.2,0.8,1,0,0.577349,0.422651,0,1,0,0,
+0.51,24.16,25.66,0,0,-0.0087528,0,1,0.1,0.9,1,0,0,0,0,1,0,0,
+0.51,24.22,25.66,0,12.3334,-0.0109176,0,1,0.1,0.9,1,0,0,0,0,1,0,0,
+0.51,24.28,25.62,0,15.3334,-0.0106344,0,1,0.1,0.9,1,0,0,0.127928,0,1,0,0,
+0.51,24.37,25.62,0,17.3334,12.8075,0,1,0.1,0.9,1,0,0,0,0,1,0,0,
+0.51,24.41,25.59,0,18.6667,18.6509,0,1,0.1,0.9,1,0,0,0.472527,0,1,0,0,
+0.51,24.47,25.53,0,19.5,19.5773,0,1,0.1,0.9,1,0,0,0.287067,0,1,0,0,
+0.51,24.47,25.44,0,20.1667,20.2513,0,1,0.1,0.9,1,0,0,0.177368,0,1,0,0,
+0.51,24.5,25.37,0,20.6667,20.6316,0,1,0.2,0.8,1,0,0.64268,0.35732,0,1,0,0,
+0.51,24.47,25.34,0,20.8334,21.0616,0,1,0.3,0.7,1,0,0.666667,0.415385,0,1,0,0,
+0.51,24.41,25.31,0,21.6667,21.526,0,1,0.1,0.9,1,0,0,0.378602,0,1,0,0,
+0.51,24.41,25.28,0,21.8334,21.7181,0,1,0.2,0.8,1,0,0.692115,0.442599,0,1,0,0,
+0.51,24.34,25.25,0,22,21.9097,0,1,0.3,0.7,1,0,0.628218,0.505318,0,1,0,0,
+0.51,24.31,25.28,0,22.1667,21.9882,0,1,0.4,0.6,1,0,0.666667,0.530727,0,1,0,0,
+0.51,24.31,25.28,0,21.8334,22.0666,0,1,0.444123,0.555877,1,0,0.714286,0.555877,0,1,0,0,
+0.51,24.31,25.31,0,22,22.0644,0,1,0.444123,0.555877,1,0,0.727324,0.555185,0,1,0,0,
+0.51,24.31,25.31,0,21.8334,22.1628,0,1,0.413476,0.586524,1,0,0.694731,0.586524,0,1,0,0,
+0.51,24.34,25.34,0,22,22.1448,0,1,0.413476,0.586524,1,0,0.700682,0.580802,0,1,0,0,
+0.51,24.31,25.37,0,22,22.1773,0,1,0.413476,0.586524,1,0,0.8,0.45921,0,1,0,0,
+0.51,24.41,25.37,0,21.8334,22.1938,0,1,0.413476,0.586524,1,0,0.845478,0.315479,0,1,0,0,
+0.51,24.41,25.37,0,21.8334,22.2253,0,1,0.413476,0.586524,1,0,0.9,0.165112,0,1,0,0,
+0.51,24.37,25.34,0,22,22.2569,0,1,0.413476,0.586524,1,0,0.9,0.1093,0,1,0,0,
+0.51,24.41,25.34,0,22,22.2552,0,1,0.413476,0.586524,1,0,0.9575,0.0424997,0,1,0,0,
+0.51,24.41,25.34,0,21.8334,22.3176,0,1,0.413476,0.586524,1,0,0.959483,0.0405167,0,1,0,0,
+0.51,24.41,25.31,0,22,22.3166,0,1,0.413476,0.586524,1,0,0.990006,0.00999444,0,1,0,0,
+0.51,24.37,25.31,0,22,22.3017,0,1,0.413476,0.586524,1,0,0.995079,0.00492093,0,1,0,0,
+0.51,24.41,25.31,0,22,22.3181,0,1,0.419198,0.580802,1,0,1,0,0,1,0,0,
+0.51,24.37,25.31,0,21.8334,22.286,0,1,0.540791,0.45921,1,0,1,0,0,1,0,0,
+0.51,24.37,25.31,0,21.8334,22.2398,0,1,0.684521,0.315479,1,0,1,0,0,1,0,0,
+0.51,24.37,25.31,0,22,22.2394,0,1,0.834888,0.165112,1,0,1,0,1,1,0,0.834888,
+0.51,24.34,25.31,0,22,22.24,0,1,0.8907,0.1093,1,0,1,0,1,1,0,0.8907,
+0.51,24.37,25.31,0,22,22.2228,0,1,0.9575,0.0424997,1,0,1,0,1,1,0,0.9575,
+0.51,24.34,25.34,0,22,22.2402,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.2103,0,1,0.990006,0.00999444,1,0,1,0,1,1,0,0.990006,
+0.51,24.37,25.37,0,21.8334,22.2237,0,1,0.995079,0.00492093,1,0,1,0,1,1,0,0.995079,
+0.51,24.41,25.34,0,22.1667,22.2382,0,1,0.961249,0.0387507,1,0,0.961249,0.0387507,1,1,0,0.961249,
+0.51,24.41,25.31,0,22,22.2397,0,1,0.961249,0.0387507,1,0,1,0,1,1,0,0.961249,
+0.51,24.41,25.34,0,21.8334,22.1788,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.37,25.31,0,22,22.1703,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,22,22.1785,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.31,0,21.8334,22.195,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.41,25.34,0,21.8334,22.1946,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.37,25.34,0,22,22.1921,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,22,22.1939,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.31,0,22,22.193,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.34,0,21.8334,22.1933,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.2087,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.224,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.2252,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.37,0,22,22.2248,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.37,25.34,0,21.8334,22.2106,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.31,0,22,22.1774,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.34,0,21.8334,22.1606,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.34,0,22,22.1752,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.31,0,21.8334,22.1919,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.41,25.34,0,22,22.1617,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,21.8334,22.1601,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,22,22.1774,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1757,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.31,0,22,22.2088,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.31,0,22,22.2231,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.208,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1934,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1937,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1785,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,21.8334,22.1749,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1765,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1775,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,22,22.1769,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,22,22.1908,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1776,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.31,0,21.8334,22.1783,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1769,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,22,22.1603,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1609,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,21.8334,22.1607,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1605,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1595,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1602,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.34,0,21.8334,22.1591,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1916,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.1747,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1747,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.37,25.37,0,21.8334,22.1915,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1929,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.1766,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1747,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.1903,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,21.8334,22.1907,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.2074,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.2075,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.2085,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,22,22.2086,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.2083,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.2232,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.2234,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,21.8334,22.2242,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.2076,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,21.8334,22.1922,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,21.6667,22.1912,0,1,0.95858,0.0414201,1,0,0.95858,0.0414201,1,1,0,0.95858,
+0.51,24.41,25.37,0,22,22.1765,0,1,0.95858,0.0414201,1,0,0.960373,0.039627,1,1,0,0.95858,
+0.51,24.44,25.34,0,21.8334,22.1771,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.41,25.37,0,21.8334,22.177,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.44,25.34,0,21.8334,22.1925,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.41,25.34,0,21.8334,22.1921,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.44,25.37,0,21.8334,22.2066,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.44,25.34,0,22,22.1918,0,1,0.95858,0.0414201,1,0,0.960373,0.039627,1,1,0,0.95858,
+0.51,24.44,25.34,0,21.8334,22.1923,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.41,25.37,0,21.8334,22.1899,0,1,0.95858,0.0414201,1,0,1,0,1,1,0,0.95858,
+0.51,24.44,25.34,0,22,22.1752,0,1,0.960373,0.039627,1,0,0.960373,0.039627,1,1,0,0.960373,
+0.51,24.41,25.37,0,21.8334,22.1763,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.34,0,21.8334,22.1746,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.41,25.37,0,22,22.1593,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.34,0,21.8334,22.1617,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.41,25.34,0,21.8334,22.1597,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,22,22.1274,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.34,0,21.8334,22.1438,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,21.8334,22.1271,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.34,0,21.8334,22.1433,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.41,25.34,0,21.8334,22.1448,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,21.8334,22.1598,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.41,0,21.8334,22.1613,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1765,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1753,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.1921,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.37,0,22,22.1751,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.41,25.34,0,22,22.1578,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.16,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.34,0,22.1667,22.1414,0,1,0.961249,0.0387507,1,0,0.961249,0.0387507,1,1,0,0.961249,
+0.51,24.44,25.37,0,21.8334,22.1594,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.44,25.37,0,21.8334,22.1598,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.44,25.37,0,21.8334,22.1764,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.44,25.37,0,21.8334,22.1752,0,1,0.959483,0.0405167,1,0,0.959483,0.0405167,1,1,0,0.959483,
+0.51,24.41,25.37,0,22,22.1902,0,1,0.959483,0.0405167,1,0,1,0,1,1,0,0.959483,
+0.51,24.44,25.37,0,21.6667,22.2071,0,1,0.899408,0.100592,1,0,0.9,0.100592,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.2066,0,1,0.899408,0.100592,1,0,0.959483,0.0405167,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.2069,0,1,0.899408,0.100592,1,0,0.959483,0.0405167,1,1,0,0.899408,
+0.51,24.44,25.34,0,21.8334,22.1917,0,1,0.899408,0.100592,1,0,0.959483,0.0405167,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.6667,22.1914,0,1,0.899408,0.100592,1,0,0.9,0.100592,1,1,0,0.899408,
+0.51,24.44,25.34,0,21.8334,22.1922,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.44,25.34,0,22,22.1905,0,1,0.899408,0.100592,1,0,0.960373,0.039627,1,1,0,0.899408,
+0.51,24.44,25.37,0,22,22.208,0,1,0.899408,0.100592,1,0,0.960373,0.039627,1,1,0,0.899408,
+0.51,24.44,25.37,0,22,22.1914,0,1,0.899408,0.100592,1,0,0.960373,0.039627,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.1925,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.47,25.37,0,22,22.1756,0,1,0.899408,0.100592,1,0,0.960373,0.039627,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.1921,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.1762,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.44,25.37,0,21.8334,22.1752,0,1,0.899408,0.100592,1,0,1,0,1,1,0,0.899408,
+0.51,24.41,25.37,0,22,22.1913,0,1,0.960373,0.039627,1,0,0.960373,0.039627,1,1,0,0.960373,
+0.51,24.44,25.37,0,22,22.1581,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,21.8334,22.1743,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.41,0,21.8334,22.1747,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,21.8334,22.1747,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,22,22.1919,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,21.8334,22.1754,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.41,25.37,0,21.8334,22.1767,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.37,0,22,22.1586,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.47,25.37,0,22,22.1445,0,1,0.960373,0.039627,1,0,1,0,1,1,0,0.960373,
+0.51,24.44,25.41,0,22,22.1426,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,22,22.143,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.143,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1579,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,22,22.159,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.1597,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1597,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.175,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.177,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.1915,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1902,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.1918,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1766,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1774,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,21.8334,22.1752,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,22,22.1599,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.16,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,22,22.1772,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1764,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,21.8334,22.1613,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,21.8334,22.1603,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.1608,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1762,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1756,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1913,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,22,22.1757,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.41,0,22,22.1923,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,21.8334,22.191,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.1753,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,22,22.1753,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.1796,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.44,0,22,22.1913,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1909,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,21.8334,22.1775,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.5,25.37,0,21.8334,22.1766,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,21.8334,22.177,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,21.8334,22.1931,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1766,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.41,0,22,22.1776,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.47,25.37,0,22,22.1768,0,1,1,0,1,0,1,0,1,1,0,1,
+0.51,24.44,25.37,0,19.1667,22.1293,0,1,1,0,1,0,1,0,1,0.95,0.05,0.95,
+0.51,24.44,25.37,10.6667,19,22.0015,0,1,1,0,1,0,1,0,1,0.9,0.1,0.9,
+0.51,24.44,25.41,10.6667,19,21.0088,0,1,1,0,1,0,1,0,1,0.85,0.15,0.85,
+0.51,24.47,25.41,10.5,19,14.5807,0,1,1,0,1,0,1,0,1,0.8,0.2,0.8,
+0.51,24.47,25.37,10.1667,19,11.7194,0,1,1,0,1,0,1,0,1,0.75,0.25,0.75,
+0.51,24.44,25.37,10,0,11.642,0,1,1,0,1,0,1,0,1,0.7,0.3,0.7,
+0.51,24.47,25.41,10,0,11.5935,0,1,1,0,1,0,1,0,1,0.65,0.35,0.65,
+0.51,24.47,25.41,10.1667,0,11.4467,0,1,1,0,1,0,1,0,1,0.6,0.4,0.6,
+0.51,24.47,25.41,10.1667,0,11.5119,0,1,1,0,1,0,1,0,1,0.55,0.45,0.55,
+0.51,24.47,25.41,10.1667,0,11.4653,0,1,1,0,1,0,1,0,1,0.5,0.5,0.5,
+0.51,24.47,25.37,10.1667,0,11.5439,0,1,1,0,1,0,1,0,3,0.45,0.55,0,
+0.51,24.47,25.37,10.1667,0,11.6571,0,1,1,0,1,0,1,0,3,0.4,0.6,0,
+0.51,24.47,25.41,10.1667,0,11.6257,0,1,1,0,1,0,1,0,3,0.35,0.65,0,
+0.51,24.47,25.37,10.1667,0,11.6088,0,1,1,0,1,0,1,0,3,0.3,0.7,0,
+0.51,24.44,25.37,10.1667,0,11.6114,0,1,1,0,1,0,1,0,3,0.25,0.75,0,
+0.51,24.47,25.41,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0.2,0.8,0,
+0.51,24.44,25.37,10.1667,0,11.6737,0,1,1,0,1,0,1,0,3,0.15,0.85,0,
+0.51,24.47,25.37,10.1667,0,11.6902,0,1,1,0,1,0,1,0,3,0.1,0.9,0,
+0.51,24.47,25.37,10.1667,0,11.6895,0,1,1,0,1,0,1,0,3,0.05,0.95,0,
+0.51,24.44,25.34,10.1667,0,11.6734,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6733,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.34,10.1667,0,11.6733,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.691,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6908,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.69,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.41,25.41,10.6667,0,11.671,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6582,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6563,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6235,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6411,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5787,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5772,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.559,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6079,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6093,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5946,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.41,25.37,10.1667,0,11.5949,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6111,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6091,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.608,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.5914,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5925,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.5768,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5786,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5774,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5943,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.5,0,11.592,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6231,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.6667,0,11.6106,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6086,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6261,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6101,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6106,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6097,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.5944,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5945,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5941,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.594,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5941,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5776,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.5,0,11.578,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5937,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5949,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.5789,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5953,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5939,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5946,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5952,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.5942,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.5,0,11.5949,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.6667,0,11.5972,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6117,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.5,0,11.6099,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.6094,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5924,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.5949,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6101,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6264,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.37,10.1667,0,11.6256,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.6262,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6281,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6265,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6285,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6276,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6279,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.6273,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.609,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.6096,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6101,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5933,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.37,10.1667,0,11.5944,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5944,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.6091,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5926,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6109,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6113,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.611,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6118,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.595,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.6111,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.5931,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6106,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.5,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6106,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.612,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6103,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.44,25.41,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.6091,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.6117,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6092,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6098,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6098,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6109,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6099,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6111,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6117,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6113,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.47,10.1667,0,11.6112,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6124,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6113,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.611,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.5,0,11.5944,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.5969,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5954,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.5953,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6113,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,9.33335,0,11.6112,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6099,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.5,0,11.6098,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.53,25.44,10.5,0,11.6127,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.6097,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6109,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.5958,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6112,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6134,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.5,0,11.611,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6111,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6275,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6246,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.5,0,11.624,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.626,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6096,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6101,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6099,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.6273,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6104,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6102,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.5,0,11.6097,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6112,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.1667,0,11.6092,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6098,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6105,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.47,10.1667,0,11.5952,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.611,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6108,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.6118,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6117,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.41,10.1667,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.6115,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6118,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.41,10.5,0,11.61,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.5,0,11.6107,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.6114,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.595,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.53,25.44,10.1667,0,11.5926,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.5954,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.5955,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.597,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.5,25.44,10.1667,0,11.5798,0,1,1,0,1,0,1,0,3,0,1,0,
+0.51,24.47,25.44,10.1667,0,11.5954,0,1,1,0,1,0,1,0,3,0,1,0,
diff --git a/apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=1.csv b/apps/ccam/sample_data/20200716 MqttTests/out_mqtt_onlyDyna_ds=1.csv
similarity index 100%
rename from apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=1.csv
rename to apps/ccam/sample_data/20200716 MqttTests/out_mqtt_onlyDyna_ds=1.csv
diff --git a/apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=50.csv b/apps/ccam/sample_data/20200716 MqttTests/out_mqtt_onlyDyna_ds=50.csv
similarity index 100%
copy from apps/ccam/sample_data/20200716 MqttTests/out_mqtt_ds=50.csv
copy to apps/ccam/sample_data/20200716 MqttTests/out_mqtt_onlyDyna_ds=50.csv
diff --git a/include/rosa/support/csv/CSVReader.hpp b/include/rosa/support/csv/CSVReader.hpp
index 9d58d56..63fb394 100644
--- a/include/rosa/support/csv/CSVReader.hpp
+++ b/include/rosa/support/csv/CSVReader.hpp
@@ -1,479 +1,479 @@
//===-- rosa/support/csv/CSVReader.hpp --------------------------*- C++ -*-===//
//
// The RoSA Framework
//
// Distributed under the terms and conditions of the Boost Software License 1.0.
// See accompanying file LICENSE.
//
// If you did not receive a copy of the license file, see
// http://www.boost.org/LICENSE_1_0.txt.
//
//===----------------------------------------------------------------------===//
///
/// \file rosa/support/csv/CSVReader.hpp
///
/// \authors David Juhasz (david.juhasz@tuwien.ac.at),
/// Edwin Willegger (edwin.willegger@tuwien.ac.at)
///
/// \date 2017-2019
///
/// \brief Facitilities to read CSV files.
///
/// \note The implementation is based on the solution at
/// https://stackoverflow.com/a/1120224
///
//===----------------------------------------------------------------------===//
#ifndef ROSA_SUPPORT_CSV_CSVREADER_HPP
#define ROSA_SUPPORT_CSV_CSVREADER_HPP
#include "rosa/support/debug.hpp"
#include "rosa/support/sequence.hpp"
#include <algorithm>
#include <istream>
#include <map>
#include <set>
#include <sstream>
#include <vector>
namespace rosa {
namespace csv {
/// Indicating it the CSV file contains any header or not
enum class HeaderInformation { HasHeader, HasNoHeader };
/// Anonymous namespace providing implementation details for
/// \c rosa::csv::CSVIterator, consider it private.
namespace {
/// Provides facility for parsing one value from a string.
///
/// \tparam T type of value to parse
/// \tparam IsSignedInt if \p T is a signed integral type, always use default
/// \tparam IsUnsignedInt if \p T is an unsigned integral type, always use
/// default
/// \tparam IsFloat if \p T is a floating-point type, always use default
/// \tparam IsString if \p T is \c std::string, always use default
///
/// \note Specializations of this struct are provided for arithmentic types
/// and \c std::string.
template <typename T,
bool IsSignedInt =
(std::is_integral<T>::value && std::is_signed<T>::value),
bool IsUnsignedInt =
(std::is_integral<T>::value && std::is_unsigned<T>::value),
bool IsFloat = std::is_floating_point<T>::value,
bool IsString = std::is_same<T, std::string>::value>
struct ValueParser {
///
///
/// \param Cell the \c std::string to parse
///
/// \return the parsed value
///
/// \note The function silently fails if cannot parse \p Cell for type \p T.
static T parse(const std::string &Cell) noexcept;
};
template <typename T> struct ValueParser<T, true, false, false, false> {
STATIC_ASSERT((std::is_integral<T>::value && std::is_signed<T>::value),
"wrong type"); // Sanity check.
static T parse(const std::string &Cell) noexcept {
return static_cast<T>(std::stoll(Cell));
}
};
template <typename T> struct ValueParser<T, false, true, false, false> {
STATIC_ASSERT((std::is_integral<T>::value && std::is_unsigned<T>::value),
"wrong type"); // Sanity check.
static T parse(const std::string &Cell) noexcept {
return static_cast<T>(std::stoull(Cell));
}
};
template <typename T> struct ValueParser<T, false, false, true, false> {
STATIC_ASSERT((std::is_floating_point<T>::value),
"wrong type"); // Sanity check.
static T parse(const std::string &Cell) noexcept {
return static_cast<T>(std::stold(Cell));
}
};
template <typename T> struct ValueParser<T, false, false, false, true> {
STATIC_ASSERT((std::is_same<T, std::string>::value),
"wrong type"); // Sanity check.
static T parse(const std::string &Cell) noexcept { return Cell; }
};
/// Parses and stores entries from a row of CSV data.
///
/// \tparam Ts types of values to parse and store, i.e. entries in the row
///
/// \note The implementation relies on \c rosa::csv::CSVRowParser, which is
/// implemented only for `arithmetic` types -- signed and unsigned integral
/// and floating-point types -- and for \c std::string. Those are the valid
/// values for \p Ts.
template <typename... Ts> class CSVRow {
private:
/// Parses a given row of CSV data into \c CSVRow::Data.
///
/// \ CSVRow::Data is filled with values parsed from \p LineStream. Entries
/// in the line are to be separated by commas, the character `,`.
///
/// \note Parsed values are silently converted to types \p Ts.
///
/// \note Parsing silently fails if values do not match \p Ts.
///
/// \tparam S0 indices to access tuple elements.
///
/// \param [in,out] LineStream the line to parse
///
/// \note The last argument is used only to get \p S0, the actual value of
/// the parameter is ignored.
template <size_t... S0>
void parseRow(std::stringstream &LineStream, char Delimiter, Seq<S0...>) {
STATIC_ASSERT(sizeof...(Ts) == sizeof...(S0),
"Not matching template arguments.");
std::string Cell;
// Get fields and parse the values into the proper element of the tuple
// one by one in a fold expression.
((std::getline(LineStream, Cell, Delimiter),
std::get<S0>(Data) = ValueParser<Ts>::parse(Cell)),
...);
}
public:
/// Constructor with all possible parameters
///
/// The function creates an instance of an CSVRow object and sets the
/// attributes of the object to the values of the parameters.
///
/// \param SkipRows the number of data rows to skip, not taking header into
/// account. \param HeaderInfo is the first line of the file a header row or
/// not. \param Delimiter to seperate between the data entries within one row.
CSVRow(const size_t SkipRows = 0,
const HeaderInformation HeaderInfo = HeaderInformation::HasHeader,
const char Delimiter = ',')
: SkipRows(SkipRows), HeaderInfo(HeaderInfo), Delimiter(Delimiter),
RowNumber(0), IsHeaderRead(false) {}
/// Parses and stores one row of CSV data.
///
/// The function reads one line from \p Str and parses it into
/// \c rosa::csv::CSVRow::Data using \c rosa::csv::CSVRowParser.
///
/// \param [in,out] Str input stream of a CSV file
void readNextRow(std::istream &Str) noexcept {
std::string Line;
std::getline(Str, Line);
if (Line.size() > 0) {
std::stringstream LineStream(Line);
parseRow(LineStream, Delimiter, seq_t<sizeof...(Ts)>());
RowNumber = RowNumber + 1;
}
}
/// Read header row and stores it as \p std::string.
///
/// The function reads the first line of the csv file and stores the entries
/// in a vector.
///
/// \param [in,out] Str input stream of a CSV file
void readHeader(std::istream &Str) noexcept {
std::string Line;
std::getline(Str, Line);
std::stringstream LineStream(Line);
std::string Value;
while (getline(LineStream, Value, Delimiter)) {
Header.push_back(Value);
}
IsHeaderRead = true;
}
/// The number of rows to skip once.
///
/// This function returns the number of data rows to skip
/// at the beginning of the file.
///
/// \return The number of rows to skip at the beginning of a csv file.
inline size_t SkipNumRows() const noexcept { return this->SkipRows; }
/// The current row number within the csv file.
///
/// This function returns the current row number. The header
/// row is not counted as a row.
///
/// \returns the current row number within the csv file.
inline size_t CurRow() const noexcept { return this->RowNumber; }
/// Indiciates if the header was already read.
///
/// This function returns true, if the header of a csv file which contains
/// a header file is already read.
/// The user has to pass in the attribute HeaderInfo the information if the
/// file has in the first row the header row or not.
///
/// \return if the header of a file is already read.
inline bool IsHeaderReadDone() const noexcept { return this->IsHeaderRead; }
/// Indicates if the file contains a header row in the first row.
///
/// This function returns if the file contains a header row.
/// The information if the file contains a header row or not, has to be passed
/// by the user. The standard value is HeaderInformation::HasHeader
///
/// \return if the csv file contains a header row in the first line of the
/// file.
inline HeaderInformation HasFileHeader() const noexcept {
return this->HeaderInfo;
}
/// Set the number of rows to skip.
///
/// This function sets the number of rows to skip at the beginning of
/// the reading of the file.
///
/// \param SkipRowsBeginning the number of rows you want to skip at the
/// beginning of the file.
inline void SetSkipRows(const size_t SkipRowsBeginning) noexcept {
this->SkipRows = SkipRowsBeginning;
}
/// Is the first row a header row or not.
///
/// This function sets the information, if the first row of the csv file
/// is a header line or not.
///
/// \param HeaderInf if the first row is a header row or not.
inline void SetHeaderInfo(const HeaderInformation HeaderInf) noexcept {
this->HeaderInfo = HeaderInf;
}
/// Set the seperator between data entries.
///
/// This funcction sets the separator between the data entries of the csv
/// file.
///
/// \param separator the character that separates the data values.
inline void SetDelimiter(char separator) { this->Delimiter = separator; }
/// Gives a constant references for the \c std::tuple containing the values
/// read by \p this object.
///
/// \return \c CSVRow::Data
const std::tuple<Ts...> &tuple(void) const noexcept { return Data; }
private:
std::tuple<Ts...> Data; ///< Stores parsed entries
size_t SkipRows; ///< The number of rows to skip at the very beginning of the
///< file. This number only applies on the number of data
///< rows. If your file contains a header row and data rows,
///< the skiping of the header row is not taken into account.
HeaderInformation HeaderInfo; ///< If the file contains a header row or not.
char Delimiter; ///< The seperator between the data entries.
size_t RowNumber; ///< Current row number, counts all row numbers including
///< the header row.
bool IsHeaderRead; ///< Was the header read or not.
std::vector<std::string> Header; ///< The content of the header row.
};
/// Reads a row of CSV data into \c rosa::csv::CSVRow.
///
/// The next line is read from \p Str by calling
/// \c rosa::csv::CSVRow::readNextRow on \p Data until all lines are
/// skipped.
///
/// If the function is called for the first time and the file contains
/// a header than is the header and the first data row read in after the
/// number of rows that the user wants to skip.
///
/// \tparam Ts type of values to read from the row
///
/// \note The CSV file should contain a line with fields matching \p Ts...
///
/// \param [in,out] Str input stream of a CSV file
/// \param [in,out] Data object to read the next line into
///
/// \return \p Str after reading one line from it
template <typename... Ts>
std::istream &operator>>(std::istream &Str, CSVRow<Ts...> &Data) {
if (Data.HasFileHeader() == HeaderInformation::HasHeader &&
!Data.IsHeaderReadDone()) {
Data.readHeader(Str);
}
while (Data.CurRow() < (Data.SkipNumRows())) {
Data.readNextRow(Str);
}
// read the lines after you skipped the number of rows you want to skip
Data.readNextRow(Str);
return Str;
}
} // End namespace
/// Provides `InputIterator` features for iterating over a CSV file.
///
/// The iterator parses rows into `std::tuple` values and iterates over the
/// file row by row.
///
/// \tparam Ts types of values stored in one row of the CSV file
///
/// \note The iterator expects each row to consists of fields matching \p Ts.
///
/// \note The implementation relies on \c rosa::csv::CSVRow, which in turn
/// relies on \c rosa::csv::CSVRowParser, which is implemented only for
/// `arithmetic` types -- signed and unsigned integral types and floating-point
/// types -- and for \c std::string. Those are the valid values for \p Ts
template <typename... Ts> class CSVIterator {
public:
/// \defgroup CSVIteratorTypedefs Typedefs of rosa::csv::CSVIterator
///
/// Standard `typedef`s for iterators.
///
///@{
typedef std::input_iterator_tag
iterator_category; ///< Category of the iterator.
typedef std::tuple<Ts...> value_type; ///< Type of values iterated over.
typedef std::size_t difference_type; ///< Type to identify distance.
typedef std::tuple<Ts...> *pointer; ///< Pointer to the type iterated over.
typedef std::tuple<Ts...>
&reference; ///< Reference to the type iterated over.
///@}
/// Creates a new instance.
///
/// \param [in,out] S input stream to iterate over
/// \param SkipRows the number of rows you want to skip only once at
/// the beginning of the file.
/// If you have an header in the file, it is supposed to be
/// the first row, and it will be always read out. But after
/// this header the next number of Rows will be skipped.
/// \param HeaderInfo is used to know wheter the file contains an
/// header row or not.
/// The header has to be in the first row.
/// \param Delimiter is the separator between the differnt values of
/// the csv file.
CSVIterator(std::istream &S, const size_t SkipRows = 0,
const HeaderInformation HeaderInfo = HeaderInformation::HasHeader,
const char Delimiter = ',')
: Str(S.good() ? &S : nullptr), SkipRows(SkipRows),
HeaderInfo(HeaderInfo), Delimiter(Delimiter), Row() {
Row.SetSkipRows(SkipRows);
Row.SetHeaderInfo(HeaderInfo);
Row.SetDelimiter(Delimiter);
// \c rosa::csv::CSVIterator::Row is initialized empty so the first
// incrementation here will read the first row.
++(*this);
}
/// Creates an empty new instance.
CSVIterator(void) noexcept
: Str(nullptr), SkipRows(0), HeaderInfo(HeaderInformation::HasHeader),
Delimiter(','), Row() {}
/// Pre-increment operator.
///
/// The implementation reads the next row. If the end of the input stream is
/// reached, the operator becomes empty and has no further effect.
///
/// \return \p this object after incrementing it.
CSVIterator &operator++() {
if (Str) {
if (!((*Str) >> Row)) {
Str = nullptr;
}
}
return *this;
}
/// Post-increment operator.
///
/// The implementation uses the pre-increment operator and returns a copy of
/// the original state of \p this object.
///
/// \return \p this object before incrementing it.
CSVIterator operator++(int) {
CSVIterator Tmp(*this);
++(*this);
return Tmp;
}
/// Returns a constant reference to the current entry.
///
/// \note Should not dereference the iterator when it is empty.
///
/// \return constant reference to the current entry.
const std::tuple<Ts...> &operator*(void)const noexcept { return Row.tuple(); }
/// Returns a constant pointer to the current entry.
///
/// \note Should not dereference the iterator when it is empty.
///
/// \return constant pointer to the current entry.
const std::tuple<Ts...> *operator->(void)const noexcept {
return &Row.tuple();
}
/// Tells if \p this object is equal to another one.
///
/// Two \c rosa::csv::CSVIterator instances are equal if and only if they are
/// the same or both are empty.
///
/// \param RHS other object to compare to
///
/// \return whether \p this object is equal with \p RHS
bool operator==(const CSVIterator &RHS) const noexcept {
return ((this == &RHS) || ((this->Str == nullptr) && (RHS.Str == nullptr)));
}
/// Tells if \p this object is not equal to another one.
///
/// \see rosa::csv::CSVIterator::operator==
///
/// \param RHS other object to compare to
///
/// \return whether \p this object is not equal with \p RHS.
bool operator!=(const CSVIterator &RHS) const noexcept {
return !((*this) == RHS);
}
/// Set the delimiter used in the csv file.
/// \param Separator the character which separates the values in the csv file.
inline void setDelimiter(char Separator) noexcept {
this->Delimiter = Separator;
}
/// get the delimiter currently set to separate the values in the csv file.
/// \return the current character, which is used to separte teh values in the
/// csv file.
inline char getDelimiter() const noexcept { return this->Delimiter; }
private:
std::istream *Str; ///< Input stream of a CSV file to iterate over.
size_t SkipRows; ///< Number of Rows to skip only once at the beginning of the
///< file.
HeaderInformation
- HeaderInfo; ///< does the csv file contain a header or not, if this
- ///< information is not given correclty, the reading of the
- ///< header would result in in an error.
+ HeaderInfo; ///< does the csv file contain a header or not, if this
+ ///< information is not given correclty, the reading of the
+ ///< header would result in in an error.
char Delimiter; ///< Delimiter between the entries in the csv file.
CSVRow<Ts...> Row; ///< Content of the current row
};
} // End namespace csv
} // End namespace rosa
#endif // ROSA_SUPPORT_CSV_CSVREADER_HPP

File Metadata

Mime Type
text/x-diff
Expires
Sat, May 17, 12:05 PM (1 d, 11 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
06/6e/bd45657250b0ae6e019bf715510e
Default Alt Text
(1 MB)

Event Timeline