diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..ae84cb558 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "FieldOpt/WellIndexCalculator"] + path = FieldOpt/WellIndexCalculator + url = git@github.com:PetroleumCyberneticsGroup/WellIndexCalculator.git +[submodule "FieldOpt/AdgprsSummaryConverter"] + path = FieldOpt/AdgprsSummaryConverter + url = git@github.com:PetroleumCyberneticsGroup/AdgprsSummaryConverter.git diff --git a/FieldOpt/AdgprsResultsReader/AdgprsResultsReader.pro b/FieldOpt/AdgprsResultsReader/AdgprsResultsReader.pro new file mode 100644 index 000000000..d8b52d2f5 --- /dev/null +++ b/FieldOpt/AdgprsResultsReader/AdgprsResultsReader.pro @@ -0,0 +1,17 @@ +include(../defaults.pri) + +CONFIG -= app_bundle +CONFIG += c++11 +TEMPLATE = lib + +LIBS += -lhdf5_cpp + +TARGET = adgprsresultsreader + +SOURCES += \ + json_summary_reader.cpp \ + adgprs_results_reader.cpp + +HEADERS += \ + json_summary_reader.h \ + adgprs_results_reader.h diff --git a/FieldOpt/AdgprsResultsReader/adgprs_results_reader.cpp b/FieldOpt/AdgprsResultsReader/adgprs_results_reader.cpp new file mode 100644 index 000000000..8ccb068ce --- /dev/null +++ b/FieldOpt/AdgprsResultsReader/adgprs_results_reader.cpp @@ -0,0 +1,23 @@ +#include "adgprs_results_reader.h" +#include +#include "Utilities/unix/execution.h" +#include "Utilities/file_handling/filehandling.h" + +namespace AdgprsResultsReader { + +AdgprsResultsReader::AdgprsResultsReader(QString summary_path) +{ + hdf5_path_ = summary_path; + json_path_ = summary_path.split(".SIM.H5").first() + ".json"; + convertHdfSummaryToJson(); + json_reader_ = new JsonSummaryReader(json_path_); +} + +void AdgprsResultsReader::convertHdfSummaryToJson() +{ + QString conversion_script_path = Utilities::FileHandling::GetBuildDirectoryPath() + "/AdgprsSummaryConverter/AdgprsSummaryConverter.py"; + QStringList params = {hdf5_path_, json_path_}; + Utilities::Unix::ExecShellScript(conversion_script_path, params); +} + +} diff --git a/FieldOpt/AdgprsResultsReader/adgprs_results_reader.h b/FieldOpt/AdgprsResultsReader/adgprs_results_reader.h new file mode 100644 index 000000000..9206ccf86 --- /dev/null +++ b/FieldOpt/AdgprsResultsReader/adgprs_results_reader.h @@ -0,0 +1,34 @@ +#ifndef ADGPRSRESULTSREADER_H +#define ADGPRSRESULTSREADER_H + +#include +#include "json_summary_reader.h" + +namespace AdgprsResultsReader { + +class AdgprsResultsReader +{ +public: + /*! + * \brief AdgprsResultsReader + * \param summary_path Path to a ADGPRS summary file in the HDF5 format, including the .SIM.H5 suffix. + */ + AdgprsResultsReader(QString summary_path); + + /*! + * \brief results Get the object allowing access to the results. + * \return + */ + JsonSummaryReader *results() const { return json_reader_; } + +private: + QString hdf5_path_; + QString json_path_; + JsonSummaryReader *json_reader_; + + void convertHdfSummaryToJson(); + +}; + +} +#endif // ADGPRSRESULTSREADER_H diff --git a/FieldOpt/AdgprsResultsReader/json_summary_reader.cpp b/FieldOpt/AdgprsResultsReader/json_summary_reader.cpp new file mode 100644 index 000000000..ba78ba237 --- /dev/null +++ b/FieldOpt/AdgprsResultsReader/json_summary_reader.cpp @@ -0,0 +1,125 @@ +#include "json_summary_reader.h" +#include +#include +#include +#include +#include +#include +#include +#include + +namespace AdgprsResultsReader { + +JsonSummaryReader::JsonSummaryReader(QString file_path) +{ + QFile *file = new QFile(file_path); + if (!file->open(QIODevice::ReadOnly)) + throw std::runtime_error("Unable to open JSON summary file " + file_path.toStdString()); + QByteArray data = file->readAll(); + QJsonDocument json = QJsonDocument::fromJson(data); + if (json.isNull()) + throw std::runtime_error("Unable to parse the JSON summary file " + file_path.toStdString()); + if (!json.isObject()) + throw std::runtime_error("The json summary must be a valid json object " + file_path.toStdString()); + + QJsonObject json_summary = QJsonObject(json.object()); + readGlobal(json_summary["Field"].toObject()); + readFieldProps(json_summary["Field"].toObject()["Properties"].toObject()); + readWellProps(json_summary["Wells"].toArray()); + file->close(); + +} + +QList JsonSummaryReader::GetAvalableFieldPropertyNames() const +{ + return field_properties_.keys(); +} + +QVector *JsonSummaryReader::GetFieldProperty(QString prop_name) const +{ + if (QString::compare(prop_name, "TIME") == 0) + return time_; + if (!field_properties_.contains(prop_name)) + throw std::runtime_error("Field property " + prop_name.toStdString() + " not recognized."); + return field_properties_[prop_name]; +} + +QList JsonSummaryReader::GetAvailableWellPropertyNames() const +{ + return getWell(0)->properties_.keys(); +} + +QVector *JsonSummaryReader::GetWellProperty(int well, QString prop_name) const +{ + if (!getWell(well)->properties_.contains(prop_name)) + throw std::runtime_error("Well property " + prop_name.toStdString() + " not recognized."); + return getWell(well)->properties_[prop_name]; +} + +bool JsonSummaryReader::IsInjector(int well) const +{ + return getWell(well)->is_injector; +} + +int JsonSummaryReader::GetNumberOfPerforations(int well) const +{ + return getWell(well)->num_perforations; +} + +JsonSummaryReader::WellData *JsonSummaryReader::getWell(int well) const +{ + if (well < 0 || well >= wells_.size()) + throw std::runtime_error(QString::number(well).toStdString() + " not a valid well number."); + return wells_[well]; +} + +void JsonSummaryReader::readGlobal(QJsonObject field) +{ + num_wells_ = field["NumWells"].toInt(); + + time_ = new QVector(); + QJsonArray json_time = field["TIME"].toArray(); + foreach (QJsonValue t, json_time) { + time_->append(t.toDouble()); + } +} + +void JsonSummaryReader::readFieldProps(QJsonObject field_props) +{ + field_properties_ = QHash *>(); + QList keys = {"FGPT", "FOPT", "FWPT", "FOPR", "FGPR", "FWPR", + "FGIT", "FGIR", "FOIT", "FOIR", "FWIT", "FWIR"}; + + foreach (QString key, keys) { + field_properties_[key] = new QVector(); + foreach (QJsonValue v, field_props[key].toArray()) { + field_properties_[key]->append(std::abs(v.toDouble())); + } + } +} + +void JsonSummaryReader::readWellProps(QJsonArray well_props) +{ + foreach (QJsonValue w, well_props) { + WellData *data = new WellData(); + if (w.toObject()["IsInjector"].toInt() == 1) + data->is_injector = true; + else + data->is_injector = false; + + data->num_perforations = w.toObject()["NumPerforations"].toInt(); + + data->properties_ = QHash *>(); + QList keys = {"WBHP","WGR","WOR","WWR","WGT","WOT","WWT"}; + foreach (QString key, keys) { + data->properties_[key] = new QVector(); + foreach (QJsonValue v, w.toObject()["Properties"].toObject()[key].toArray()) { + data->properties_[key]->append(v.toDouble()); + } + } + wells_.append(data); + } +} + + +} diff --git a/FieldOpt/AdgprsResultsReader/json_summary_reader.h b/FieldOpt/AdgprsResultsReader/json_summary_reader.h new file mode 100644 index 000000000..db8fed3fe --- /dev/null +++ b/FieldOpt/AdgprsResultsReader/json_summary_reader.h @@ -0,0 +1,94 @@ +#ifndef JSON_SUMMARY_READER_H +#define JSON_SUMMARY_READER_H + +#include +#include +#include +#include + +namespace AdgprsResultsReader { + +/*! + * \brief The JsonSummaryReader class reads the JSON summary files created + * by the AdgprsSummaryConverter pythnon script. This class should not be instantiated directly. + * + * \note All field values are absolute values. I.e. borth production and injection numbers will + * be positive. + */ +class JsonSummaryReader +{ +public: + /*! + * \brief JsonSummaryReader reads the summary file and stores the data in arrays. + * \param file_path Path to a valid .json file. + */ + JsonSummaryReader(QString file_path); + + /*! + * \brief GetNumberOfWells Returns the number of wells found in the summary. + */ + int GetNumberOfWells() const { return num_wells_; } + + /*! + * \brief GetTimeVector Get the time vector for the summary data. + */ + QVector *GetTimeVector() const { return time_; } + + /*! + * \brief GetAvalableFieldPropertyNames Get a list of all the valid field property names. + */ + QList GetAvalableFieldPropertyNames() const; + + /*! + * \brief GetFieldProperty Returns a data vector for a specific property. + * \param prop_name name of the property, using the ECLIPSE summary naming scheme (e.g. FOPT, FWPR). + */ + QVector *GetFieldProperty(QString prop_name) const; + + /*! + * \brief GetAvailableWellPropertyNames Get a list of all the valid well property names. + */ + QList GetAvailableWellPropertyNames() const; + + /*! + * \brief GetWellProperty Returns a data vector for a specific property for a specific well. + * \param well The number of the well to get data from. + * \param prop_name The name of the property to get. + */ + QVector *GetWellProperty(int well, QString prop_name) const; + + /*! + * \brief IsInjector Check if a well is an injector. + * \param well The number of the well to check. + */ + bool IsInjector(int well) const; + + /*! + * \brief GetNumberOfPerforations Get the number of perforations in a specific well. + * \param well The number of the well to check. + */ + int GetNumberOfPerforations(int well) const; + + +private: + struct WellData { + bool is_injector; + int num_perforations; + QHash *> properties_; + }; + + QVector *time_; + int num_wells_; + + QHash *> field_properties_; + QList wells_; + WellData *getWell(int well) const; + + void readGlobal(QJsonObject field); + void readFieldProps(QJsonObject field_props); + void readWellProps(QJsonArray well_props); +}; + +} + +#endif // JSON_SUMMARY_READER_H diff --git a/FieldOpt/AdgprsSummaryConverter b/FieldOpt/AdgprsSummaryConverter new file mode 160000 index 000000000..577fc4ab2 --- /dev/null +++ b/FieldOpt/AdgprsSummaryConverter @@ -0,0 +1 @@ +Subproject commit 577fc4ab2f3177d0dddc98cba881ad48ddad6fa4 diff --git a/FieldOpt/FieldOpt.pro b/FieldOpt/FieldOpt.pro index 7d17d6c40..0bb91207a 100644 --- a/FieldOpt/FieldOpt.pro +++ b/FieldOpt/FieldOpt.pro @@ -8,22 +8,31 @@ SUBDIRS = \ Utilities \ Optimization \ Simulation \ - Runner + Runner \ + WellIndexCalculator \ + GTest \ + AdgprsResultsReader -GTest.depends = ERTWrapper Utilities Model Optimization Simulation Runner +GTest.depends = ERTWrapper Utilities Model Optimization Simulation Runner AdgprsResultsReader Model.depends = ERTWrapper Utilities Optimization.depends = Model Utilities Simulation -Simulation.depends = Model Utilities +Simulation.depends = Model Utilities AdgprsResultsReader Runner.depends = Optimization Model Utilities Simulation +WellIndexCalculator.depends = Model OTHER_FILES += \ defaults.pri \ ../examples/MRST/compass/driver.dat \ - ../examples/MRST/compass/driver_kongull.dat + ../examples/MRST/compass/driver_kongull.dat \ + AdgprsSummaryConverter/* -# Copy simulator execution scripts to build dir -copy_sim_exec_scripts.commands = $(COPY_DIR) $$PWD/execution_scripts $$OUT_PWD -first.depends = $(first) copy_sim_exec_scripts +# Copy ADPGRS summary converter python script to build dir +copy_scripts.commands = \ + $(MKDIR) -p $$OUT_PWD/AdgprsSummaryConverter ; \ + $(MKDIR) -p $$OUT_PWD/execution_scripts ; \ + $(COPY_FILE) $$PWD/execution_scripts/*.sh $$OUT_PWD/execution_scripts ; \ + $(COPY_FILE) $$PWD/AdgprsSummaryConverter/*.py $$OUT_PWD/AdgprsSummaryConverter/ +first.depends = $(first) copy_scripts export(first.depends) -export(copy_sim_exec_scripts.commands) -QMAKE_EXTRA_TARGETS += first copy_sim_exec_scripts +export(copy_scripts.commands) +QMAKE_EXTRA_TARGETS += first copy_scripts diff --git a/FieldOpt/GTest/AdgprsResultsReader/test_adgprs_results_reader.cpp b/FieldOpt/GTest/AdgprsResultsReader/test_adgprs_results_reader.cpp new file mode 100644 index 000000000..f51b9d073 --- /dev/null +++ b/FieldOpt/GTest/AdgprsResultsReader/test_adgprs_results_reader.cpp @@ -0,0 +1,22 @@ +#include "GTest/Simulation/results/test_fixture_adgprs.h" +#include "AdgprsResultsReader/adgprs_results_reader.h" + +namespace { + +class AdgprsResultsReaderTest : public AdgprsTestFixture { +protected: + AdgprsResultsReaderTest() { + reader_ = new AdgprsResultsReader::AdgprsResultsReader(hdf5_summary_path_); + } + virtual ~AdgprsResultsReaderTest() {} + virtual void SetUp() {} + AdgprsResultsReader::AdgprsResultsReader *reader_; +}; + +TEST_F(AdgprsResultsReaderTest, Global) { + EXPECT_EQ(5, reader_->results()->GetNumberOfWells()); +} + +} + + diff --git a/FieldOpt/GTest/AdgprsResultsReader/test_json_summary_reader.cpp b/FieldOpt/GTest/AdgprsResultsReader/test_json_summary_reader.cpp new file mode 100644 index 000000000..b22a8a12e --- /dev/null +++ b/FieldOpt/GTest/AdgprsResultsReader/test_json_summary_reader.cpp @@ -0,0 +1,46 @@ +#include "GTest/Simulation/results/test_fixture_adgprs.h" +#include "AdgprsResultsReader/json_summary_reader.h" + +namespace { + +class JsonSummaryReaderTest : public AdgprsTestFixture { +protected: + JsonSummaryReaderTest() { + reader_ = new AdgprsResultsReader::JsonSummaryReader(json_summary_path_); + } + virtual ~JsonSummaryReaderTest() {} + virtual void SetUp() {} + AdgprsResultsReader::JsonSummaryReader *reader_; +}; + +TEST_F(JsonSummaryReaderTest, Global) { + EXPECT_EQ(reader_->GetNumberOfWells(), 5); + EXPECT_EQ(reader_->GetTimeVector()->size(), 122); +} + +TEST_F(JsonSummaryReaderTest, Field) { + EXPECT_EQ(reader_->GetAvalableFieldPropertyNames().length(), 12); + foreach (QString key, reader_->GetAvalableFieldPropertyNames()) { + EXPECT_EQ(reader_->GetFieldProperty(key)->length(), 122); + } + EXPECT_ANY_THROW(reader_->GetFieldProperty("NOTAPROP")); +} + +TEST_F(JsonSummaryReaderTest, Wells) { + EXPECT_EQ(reader_->GetAvailableWellPropertyNames().size(), 7); + + EXPECT_TRUE(reader_->IsInjector(0)); + for (int i = 1; i < 5; ++i) { + EXPECT_FALSE(reader_->IsInjector(i)); + } + + for (int i = 0; i < reader_->GetNumberOfWells(); ++i) { + EXPECT_EQ(reader_->GetNumberOfPerforations(i), 1); + foreach (QString key, reader_->GetAvailableWellPropertyNames()) { + EXPECT_EQ(reader_->GetWellProperty(i, key)->length(), 122); + } + } +} + +} + diff --git a/FieldOpt/GTest/ERTWrapper/test_eclgridreader.cpp b/FieldOpt/GTest/ERTWrapper/test_eclgridreader.cpp index d931a132a..3ea42033f 100644 --- a/FieldOpt/GTest/ERTWrapper/test_eclgridreader.cpp +++ b/FieldOpt/GTest/ERTWrapper/test_eclgridreader.cpp @@ -72,6 +72,7 @@ TEST_F(ECLGridReaderTest, CheckDimensions) { TEST_F(ECLGridReaderTest, GetCell) { ECLGridReader::Cell cell = ecl_grid_reader_->GetGridCell(1); + ECLGridReader::Cell cell2 = ecl_grid_reader_->GetGridCell(0); //PrintCell(&cell); EXPECT_EQ(1, cell.global_index); EXPECT_EQ(8, cell.corners->size()); @@ -79,6 +80,7 @@ TEST_F(ECLGridReaderTest, GetCell) { EXPECT_EQ(cell.corners->at(7)->z(), 7050); EXPECT_EQ(cell.center->x(), 150); EXPECT_EQ(cell.volume, 1.5e+06); + EXPECT_EQ(0, cell2.global_index); } TEST_F(ECLGridReaderTest, CellProperties) { diff --git a/FieldOpt/GTest/GTest.pro b/FieldOpt/GTest/GTest.pro index 1aaa81820..b58eafc87 100644 --- a/FieldOpt/GTest/GTest.pro +++ b/FieldOpt/GTest/GTest.pro @@ -9,6 +9,7 @@ LIBS += -L$$OUT_PWD/../Optimization -loptimization LIBS += -L$$OUT_PWD/../Simulation -lsimulation LIBS += -L$$OUT_PWD/../ERTWrapper -lertwrapper LIBS += -L$$OUT_PWD/../Utilities -lutilities +LIBS += -L$$OUT_PWD/../AdgprsResultsReader -ladgprsresultsreader LIBS += -L$$OUT_PWD/../Runner -lFieldOpt LIBS += -lpthread -lgtest -pthread @@ -53,7 +54,12 @@ SOURCES += \ Optimization/constraints/test_box_constraint.cpp \ Optimization/constraints/test_constraint_handler.cpp \ Optimization/optimizers/test_compass_search.cpp \ - Runner/test_bookkeeper.cpp + Runner/test_bookkeeper.cpp \ + Simulation/results/test_adgprsresults.cpp \ + AdgprsResultsReader/test_json_summary_reader.cpp \ + AdgprsResultsReader/test_adgprs_results_reader.cpp \ + Simulation/simulator_interfaces/test_adgprssimulator.cpp \ + Simulation/simulator_interfaces/driver_file_writers/adgprs_driver_file_writer.cpp OTHER_FILES += \ Utilities/driver/driver.json @@ -62,3 +68,4 @@ HEADERS += \ Model/test_fixture_model_base.h \ Optimization/test_fixture_case.h \ Optimization/test_fixture_optimizer.h \ + Simulation/results/test_fixture_adgprs.h diff --git a/FieldOpt/GTest/Model/test_fixture_model_base.h b/FieldOpt/GTest/Model/test_fixture_model_base.h index b3909a4ac..82e8dd3bc 100644 --- a/FieldOpt/GTest/Model/test_fixture_model_base.h +++ b/FieldOpt/GTest/Model/test_fixture_model_base.h @@ -28,6 +28,7 @@ #include #include "Utilities/settings/settings.h" +#include "Utilities/file_handling/filehandling.h" #include "Model/properties/variable_property_container.h" #include "Model/properties/variable_property_handler.h" #include "Model/model.h" @@ -36,6 +37,7 @@ class ModelBaseTest : public ::testing::Test { protected: ModelBaseTest() { settings_ = new ::Utilities::Settings::Settings(driver_file_path_, output_directory_); + settings_->model()->set_reservoir_grid_path(reservoir_grid_path_); variable_container_ = new ::Model::Properties::VariablePropertyContainer(); variable_handler_ = new ::Model::Properties::VariablePropertyHandler(*settings_->model()); model_ = new ::Model::Model(*settings_->model()); @@ -43,6 +45,7 @@ class ModelBaseTest : public ::testing::Test { QString driver_file_path_ = "../../FieldOpt/GTest/Utilities/driver/driver.json"; QString output_directory_ = "/home/einar/Documents/GitHub/PCG/fieldopt_output"; + QString reservoir_grid_path_ = Utilities::FileHandling::GetBuildDirectoryPath() + "/../examples/ECLIPSE/HORZWELL/HORZWELL.EGRID"; ::Utilities::Settings::Settings *settings_; ::Model::Properties::VariablePropertyContainer *variable_container_; ::Model::Properties::VariablePropertyHandler *variable_handler_; diff --git a/FieldOpt/GTest/Model/test_model.cpp b/FieldOpt/GTest/Model/test_model.cpp index 9f4075013..dbf00d5f3 100644 --- a/FieldOpt/GTest/Model/test_model.cpp +++ b/FieldOpt/GTest/Model/test_model.cpp @@ -66,13 +66,6 @@ TEST_F(ModelTest, Variables) { EXPECT_EQ(3, model_->variables()->GetContinousVariableIdsWithName("PROD-BHP-1").size()); EXPECT_EQ(3, model_->wells()->at(0)->controls()->size()); - // 2 Continous variables for the transmissibility of the producer's two perforations - EXPECT_TRUE(variable_handler_->GetPerforation(0)->transmissibility_factor()); - EXPECT_TRUE(variable_handler_->GetPerforation(1)->transmissibility_factor()); - EXPECT_STREQ("PROD-TRANS-ALL", variable_handler_->GetPerforation(0)->variable_name().toLatin1().constData()); - EXPECT_STREQ("PROD-TRANS-ALL", variable_handler_->GetPerforation(1)->variable_name().toLatin1().constData()); - EXPECT_EQ(2, model_->variables()->GetContinousVariableIdsWithName("PROD-TRANS-ALL").size()); - // 12 Discrete variables for the positions for the producer's four well blocks EXPECT_TRUE(variable_handler_->GetWellBlock(0)->position()); @@ -83,7 +76,7 @@ TEST_F(ModelTest, Variables) { EXPECT_STREQ("PROD-WELLBLOCKS-ALL", variable_handler_->GetWellBlock(1)->variable_name().toLatin1().constData()); EXPECT_STREQ("PROD-WELLBLOCKS-ALL", variable_handler_->GetWellBlock(2)->variable_name().toLatin1().constData()); EXPECT_STREQ("PROD-WELLBLOCKS-ALL", variable_handler_->GetWellBlock(3)->variable_name().toLatin1().constData()); - EXPECT_EQ(12, model_->variables()->GetDiscreteVariableIdsWithName("PROD-WELLBLOCKS-ALL").size()); // Three variables pr. block (i,j,k) + EXPECT_EQ(1, model_->variables()->GetDiscreteVariableIdsWithName("PROD-WELLBLOCKS-ALL_0_i").size()); // Three variables pr. block (i,j,k) foreach (int value, model_->variables()->GetDiscreteVariableValues().values()) { EXPECT_GE(value, 0); } @@ -99,9 +92,9 @@ TEST_F(ModelTest, ApplyCase) { c->set_real_variable_value(key, 1.0); } - // Set all integer coordinates to 2 (should affect positions for all well blocks) + // Set all integer coordinates to 1 (should affect positions for all well blocks) foreach (QUuid key, c->integer_variables().keys()) { - c->set_integer_variable_value(key, 2); + c->set_integer_variable_value(key, 1); } model_->ApplyCase(c); @@ -111,9 +104,9 @@ TEST_F(ModelTest, ApplyCase) { } foreach (Model::Wells::Wellbore::WellBlock *wb, *model_->wells()->first()->trajectory()->GetWellBlocks()) { - EXPECT_EQ(2, wb->i()); - EXPECT_EQ(2, wb->j()); - EXPECT_EQ(2, wb->k()); + EXPECT_EQ(1, wb->i()); + EXPECT_EQ(1, wb->j()); + EXPECT_EQ(1, wb->k()); } } diff --git a/FieldOpt/GTest/Simulation/results/test_adgprsresults.cpp b/FieldOpt/GTest/Simulation/results/test_adgprsresults.cpp new file mode 100644 index 000000000..a7d265da5 --- /dev/null +++ b/FieldOpt/GTest/Simulation/results/test_adgprsresults.cpp @@ -0,0 +1,27 @@ +#include "test_fixture_adgprs.h" +#include "Simulation/results/adgprsresults.h" + +namespace { + +class AdgprsResultsTest : public AdgprsTestFixture { +protected: + AdgprsResultsTest() + { + results_ = new Simulation::Results::AdgprsResults(model_); + results_->ReadResults(base_summary_path_); + } + virtual ~AdgprsResultsTest() {} + virtual void SetUp() {} + Simulation::Results::AdgprsResults *results_; +}; + +TEST_F(AdgprsResultsTest, ReadFile) { + EXPECT_TRUE(true); +} + +TEST_F(AdgprsResultsTest, Time) { + EXPECT_FLOAT_EQ(0.0, results_->GetValue(Simulation::Results::Results::Property::Time, 0)); + EXPECT_FLOAT_EQ(2920.0, results_->GetValue(Simulation::Results::Results::Property::Time)); +} + +} diff --git a/FieldOpt/GTest/Simulation/results/test_fixture_adgprs.h b/FieldOpt/GTest/Simulation/results/test_fixture_adgprs.h new file mode 100644 index 000000000..a97fc8bac --- /dev/null +++ b/FieldOpt/GTest/Simulation/results/test_fixture_adgprs.h @@ -0,0 +1,35 @@ +#ifndef TEST_FIXTURE_ADGPRS_H +#define TEST_FIXTURE_ADGPRS_H + +#include +#include +#include +#include "Utilities/file_handling/filehandling.h" +#include +#include "Utilities/settings/settings.h" +#include "Model/properties/variable_property_container.h" +#include "Model/properties/variable_property_handler.h" +#include "Model/model.h" + + +class AdgprsTestFixture : public ::testing::Test{ +protected: + AdgprsTestFixture(){ + settings_ = new Utilities::Settings::Settings(fo_driver_path_, output_directory_); + settings_->simulator()->set_driver_file_path(sim_driver_path_); + settings_->model()->set_reservoir_grid_path(reservoir_grid_path_); + model_ = new Model::Model(*settings_->model()); + } + QString sim_driver_path_ = Utilities::FileHandling::GetBuildDirectoryPath() + "/../examples/ADGPRS/5spot/5SPOT.gprs"; + QString fo_driver_path_ = Utilities::FileHandling::GetBuildDirectoryPath() + "/../examples/ADGPRS/5spot/5spot_fieldopt_driver.json"; + QString output_directory_ = "/home/einar/Documents/GitHub/PCG/fieldopt_output/adgprs"; + QString reservoir_grid_path_ = Utilities::FileHandling::GetBuildDirectoryPath() + "/../examples/ADGPRS/5spot/ECL_5SPOT.EGRID"; + QString json_summary_path_ = Utilities::FileHandling::GetBuildDirectoryPath() + "/../examples/ADGPRS/5spot/5SPOT.json"; + QString hdf5_summary_path_ = Utilities::FileHandling::GetBuildDirectoryPath() + "/../examples/ADGPRS/5spot/5SPOT.SIM.H5"; + QString base_summary_path_ = Utilities::FileHandling::GetBuildDirectoryPath() + "/../examples/ADGPRS/5spot/5SPOT"; + + ::Utilities::Settings::Settings *settings_; + ::Model::Model *model_; +}; + +#endif // TEST_FIXTURE_ADGPRS_H diff --git a/FieldOpt/GTest/Simulation/simulator_interfaces/driver_file_writers/adgprs_driver_file_writer.cpp b/FieldOpt/GTest/Simulation/simulator_interfaces/driver_file_writers/adgprs_driver_file_writer.cpp new file mode 100644 index 000000000..76ab4dcfb --- /dev/null +++ b/FieldOpt/GTest/Simulation/simulator_interfaces/driver_file_writers/adgprs_driver_file_writer.cpp @@ -0,0 +1,23 @@ +#include "GTest/Simulation/results/test_fixture_adgprs.h" +#include "Simulation/simulator_interfaces/adgprssimulator.h" +#include "Simulation/simulator_interfaces/simulator.h" +#include "Simulation/simulator_interfaces/driver_file_writers/adgprsdriverfilewriter.h" + +namespace { + +class AdgprsDriverFileWriterTest : public AdgprsTestFixture { +protected: + AdgprsDriverFileWriterTest() { + simulator_ = new Simulation::SimulatorInterfaces::AdgprsSimulator(settings_, model_); + } + virtual ~AdgprsDriverFileWriterTest() {} + virtual void SetUp() {} + Simulation::SimulatorInterfaces::AdgprsSimulator *simulator_; +}; + +TEST_F(AdgprsDriverFileWriterTest, Initialization) { +} + +} + + diff --git a/FieldOpt/GTest/Simulation/simulator_interfaces/test_adgprssimulator.cpp b/FieldOpt/GTest/Simulation/simulator_interfaces/test_adgprssimulator.cpp new file mode 100644 index 000000000..dd455ef93 --- /dev/null +++ b/FieldOpt/GTest/Simulation/simulator_interfaces/test_adgprssimulator.cpp @@ -0,0 +1,31 @@ +#include "GTest/Simulation/results/test_fixture_adgprs.h" +#include "Simulation/simulator_interfaces/adgprssimulator.h" +#include "Simulation/simulator_interfaces/simulator.h" + +namespace { + +class AdgprsSimulatorTest : public AdgprsTestFixture { +protected: + AdgprsSimulatorTest() { + simulator_ = new Simulation::SimulatorInterfaces::AdgprsSimulator(settings_, model_); + } + virtual ~AdgprsSimulatorTest() {} + virtual void SetUp() {} + Simulation::SimulatorInterfaces::Simulator *simulator_; +}; + +TEST_F(AdgprsSimulatorTest, ReadFile) { + EXPECT_TRUE(true); +} + +TEST_F(AdgprsSimulatorTest, Evaluate) { +// simulator_->Evaluate(); + EXPECT_TRUE(true); +} + +//TEST_F(AdgprsSimulatorTest, CleanUp) { +// EXPECT_TRUE(false); +//} + +} + diff --git a/FieldOpt/Model/model.cpp b/FieldOpt/Model/model.cpp index 770e696da..254a7a395 100644 --- a/FieldOpt/Model/model.cpp +++ b/FieldOpt/Model/model.cpp @@ -50,6 +50,35 @@ void Model::ApplyCase(Optimization::Case *c) foreach (QUuid key, c->real_variables().keys()) { variable_container_->SetContinousVariableValue(key, c->real_variables()[key]); } + verify(); } +void Model::verify() +{ + verifyWells(); +} + +void Model::verifyWells() +{ + foreach (Wells::Well *well, *wells_) { + verifyWellTrajectory(well); + } } + +void Model::verifyWellTrajectory(Wells::Well *w) +{ + foreach (Wells::Wellbore::WellBlock *wb, *w->trajectory()->GetWellBlocks()) { + verifyWellBlock(wb); + } +} + +void Model::verifyWellBlock(Wells::Wellbore::WellBlock *wb) +{ + if (wb->i() < 1 || wb->i() > reservoir()->grid()->Dimensions().nx || + wb->j() < 1 || wb->j() > reservoir()->grid()->Dimensions().ny || + wb->k() < 1 || wb->k() > reservoir()->grid()->Dimensions().nz) + throw std::runtime_error("Invalid well block detected."); +} + +} + diff --git a/FieldOpt/Model/model.h b/FieldOpt/Model/model.h index 380739a7b..eb40076e4 100644 --- a/FieldOpt/Model/model.h +++ b/FieldOpt/Model/model.h @@ -35,6 +35,7 @@ #include "wells/well.h" #include "Utilities/settings/model.h" #include "Optimization/case.h" +#include "Model/wells/wellbore/wellblock.h" namespace Model { @@ -73,6 +74,11 @@ class Model Properties::VariablePropertyContainer *variable_container_; Properties::VariablePropertyHandler *variable_handler_; QList *wells_; + + void verify(); //!< Verify the model. Throws an exception if it is not. + void verifyWells(); + void verifyWellTrajectory(Wells::Well *w); + void verifyWellBlock(Wells::Wellbore::WellBlock *wb); }; } diff --git a/FieldOpt/Model/wells/well.cpp b/FieldOpt/Model/wells/well.cpp index 6ec098121..15c5a230d 100644 --- a/FieldOpt/Model/wells/well.cpp +++ b/FieldOpt/Model/wells/well.cpp @@ -51,14 +51,22 @@ Well::Well(Utilities::Settings::Model settings, controls_->append(new Control(well_settings.controls[i], well_settings, variable_container, variable_handler)); trajectory_ = new Wellbore::Trajectory(well_settings, variable_container, variable_handler); +} - /* - for (int i = 0; i < well_settings.completions.size(); ++i) { - if (well_settings.completions[i].type == ::Utilities::Settings::Model::WellCompletionType::Perforation) - completions_->AddPerforation(new Completions::Perforation(well_settings.completions[i], variables, variable_handler)); - else throw WellCompletionNotRecognizedException("Only perforation-type completions are currently supported."); - } - */ +bool Well::IsProducer() +{ + if (type_ == ::Utilities::Settings::Model::WellType::Producer) + return true; + else + return false; +} + +bool Well::IsInjector() +{ + if (type_ == ::Utilities::Settings::Model::WellType::Injector) + return true; + else + return false; } } diff --git a/FieldOpt/Model/wells/well.h b/FieldOpt/Model/wells/well.h index c9e1fd8fe..4d5c65cb4 100644 --- a/FieldOpt/Model/wells/well.h +++ b/FieldOpt/Model/wells/well.h @@ -63,6 +63,8 @@ class Well QString name() const { return name_; } ::Utilities::Settings::Model::WellType type() const { return type_; } + bool IsProducer(); + bool IsInjector(); ::Utilities::Settings::Model::PreferedPhase prefered_phase() const { return prefered_phase_; } double wellbore_radius() const { return wellbore_radius_->value(); } Wellbore::Trajectory *trajectory() { return trajectory_; } diff --git a/FieldOpt/Model/wells/wellbore/completions/completion.h b/FieldOpt/Model/wells/wellbore/completions/completion.h index aad57b992..d36d96fea 100644 --- a/FieldOpt/Model/wells/wellbore/completions/completion.h +++ b/FieldOpt/Model/wells/wellbore/completions/completion.h @@ -49,9 +49,9 @@ class Completion protected: Completion(::Utilities::Settings::Model::Completion completion_settings); + int id_; //!< A unique identifier for this completion. The number is generated when reading the model settings. private: - int id_; //!< A unique identifier for this completion. The number is generated when reading the model settings. CompletionType type_; }; diff --git a/FieldOpt/Model/wells/wellbore/completions/perforation.cpp b/FieldOpt/Model/wells/wellbore/completions/perforation.cpp index 76182a7d6..f6ecce182 100644 --- a/FieldOpt/Model/wells/wellbore/completions/perforation.cpp +++ b/FieldOpt/Model/wells/wellbore/completions/perforation.cpp @@ -37,7 +37,7 @@ Perforation::Perforation(Utilities::Settings::Model::Completion completion_setti { transmissibility_factor_ = new Properties::ContinousProperty(completion_settings.transmissibility_factor); if (variable_handler->GetPerforation(completion_settings.id)->transmissibility_factor()) { - transmissibility_factor_->setName(variable_handler->GetPerforation(completion_settings.id)->variable_name()); + transmissibility_factor_->setName(variable_handler->GetPerforation(completion_settings.id)->variable_name() + "_" + id_); variable_container->AddVariable(transmissibility_factor_); } } diff --git a/FieldOpt/Model/wells/wellbore/trajectory.cpp b/FieldOpt/Model/wells/wellbore/trajectory.cpp index e4d66c1a9..0fd65cc49 100644 --- a/FieldOpt/Model/wells/wellbore/trajectory.cpp +++ b/FieldOpt/Model/wells/wellbore/trajectory.cpp @@ -77,9 +77,10 @@ void Trajectory::initializeWellBlocks(Utilities::Settings::Model::Well well, for (int i = 0; i < blocks.size(); ++i) { well_blocks_->append(new WellBlock(blocks[i].position.i, blocks[i].position.j, blocks[i].position.k, blocks[i].id)); if (variable_handler->GetWellBlock(blocks[i].id)->position() == true) { - well_blocks_->last()->i_->setName(variable_handler->GetWellBlock(blocks[i].id)->variable_name()); - well_blocks_->last()->j_->setName(variable_handler->GetWellBlock(blocks[i].id)->variable_name()); - well_blocks_->last()->k_->setName(variable_handler->GetWellBlock(blocks[i].id)->variable_name()); + QString base_var_name = variable_handler->GetWellBlock(blocks[i].id)->variable_name() + "_" + QString::number(i) + "_"; + well_blocks_->last()->i_->setName(base_var_name + "i"); + well_blocks_->last()->j_->setName(base_var_name + "j"); + well_blocks_->last()->k_->setName(base_var_name + "k"); variable_container->AddVariable(well_blocks_->last()->i_); variable_container->AddVariable(well_blocks_->last()->j_); variable_container->AddVariable(well_blocks_->last()->k_); @@ -93,6 +94,10 @@ void Trajectory::initializeWellBlocks(Utilities::Settings::Model::Well well, void Trajectory::calculateDirectionOfPenetration() { + if (well_blocks_->size() == 1) { // Assuming that the well is vertical if it only has one block + well_blocks_->first()->setDirectionOfPenetration(WellBlock::DirectionOfPenetration::Z); + return; + } // All but the last block use forward direction for (int i = 0; i < well_blocks_->size()-1; ++i) { if ( std::abs(well_blocks_->at(i)->i() - well_blocks_->at(i+1)->i()) == 1 && diff --git a/FieldOpt/Runner/Runner.pro b/FieldOpt/Runner/Runner.pro index 6d9761ec4..f4845a62e 100644 --- a/FieldOpt/Runner/Runner.pro +++ b/FieldOpt/Runner/Runner.pro @@ -14,6 +14,7 @@ LIBS += -L$$OUT_PWD/../Simulation -lsimulation LIBS += -L$$OUT_PWD/../Optimization -loptimization LIBS += -L$$OUT_PWD/../Utilities -lutilities LIBS += -L$$OUT_PWD/../ERTWrapper -lertwrapper +LIBS += -L$$OUT_PWD/../AdgprsResultsReader -ladgprsresultsreader LIBS += -lpthread -lgtest -pthread LIBS += -lboost_program_options diff --git a/FieldOpt/Runner/logger.cpp b/FieldOpt/Runner/logger.cpp index 6b5eb7de6..8faddad33 100644 --- a/FieldOpt/Runner/logger.cpp +++ b/FieldOpt/Runner/logger.cpp @@ -11,10 +11,12 @@ Logger::Logger(RuntimeSettings *rts) opt_log_path_ = output_dir_ + "/log_optimization.csv"; sim_log_path_ = output_dir_ + "/log_simulation.csv"; cas_log_path_ = output_dir_ + "/log_cases.csv"; + settings_log_path_ = output_dir_ + "/log_settings.csv"; + property_uuid_name_map_path_ = output_dir_ + "/log_property_uuid_name_map.csv"; // Delete existing logs if --force flag is on if (rts->overwrite_existing()) { - foreach (auto path, (QStringList() << cas_log_path_ << opt_log_path_ << sim_log_path_)) { + foreach (auto path, (QStringList() << cas_log_path_ << opt_log_path_ << sim_log_path_ << settings_log_path_ << property_uuid_name_map_path_)) { if (Utilities::FileHandling::FileExists(path)) { std::cout << "Force flag on. Deleting " << path.toStdString() << std::endl; Utilities::FileHandling::DeleteFile(path); @@ -23,6 +25,37 @@ Logger::Logger(RuntimeSettings *rts) } } +void Logger::LogSettings(const Utilities::Settings::Settings *settings) +{ + Utilities::FileHandling::WriteStringToFile(settings->GetLogCsvString(), settings_log_path_); +} + +void Logger::WritePropertyUuidNameMap(Model::Model *model) +{ + Model::Properties::VariablePropertyContainer *properties = model->variables(); + + // Write header + Utilities::FileHandling::WriteLineToFile("UUID,name", property_uuid_name_map_path_); + + // Binary properties + foreach (QUuid id, properties->GetBinaryVariables()->keys()) { + QString line = QString("%1,%2").arg(id.toString()).arg(properties->GetBinaryVariables()->value(id)->name()); + Utilities::FileHandling::WriteLineToFile(line, property_uuid_name_map_path_); + } + + // Continous properties + foreach (QUuid id, properties->GetContinousVariables()->keys()) { + QString line = QString("%1,%2").arg(id.toString()).arg(properties->GetContinousVariables()->value(id)->name()); + Utilities::FileHandling::WriteLineToFile(line, property_uuid_name_map_path_); + } + + // Discrete properties + foreach (QUuid id, properties->GetDiscreteVariables()->keys()) { + QString line = QString("%1,%2").arg(id.toString()).arg(properties->GetDiscreteVariables()->value(id)->name()); + Utilities::FileHandling::WriteLineToFile(line, property_uuid_name_map_path_); + } +} + void Logger::LogCase(const Optimization::Case *c, QString message) { if (!Utilities::FileHandling::FileExists(cas_log_path_)) diff --git a/FieldOpt/Runner/logger.h b/FieldOpt/Runner/logger.h index 03b336aa4..9ea9a4d06 100644 --- a/FieldOpt/Runner/logger.h +++ b/FieldOpt/Runner/logger.h @@ -9,6 +9,8 @@ #include "Optimization/case.h" #include "Optimization/optimizer.h" #include "runtime_settings.h" +#include "Utilities/settings/settings.h" +#include "Model/model.h" namespace Runner { @@ -24,6 +26,16 @@ class Logger */ Logger(RuntimeSettings *rts); + /*! + * \brief LogSettings Write a log containing some of the settings specified in the driver file. + */ + void LogSettings(const Utilities::Settings::Settings *settings); + + /*! + * \brief WriteVariableMap Write a CSV file with mappings from property UUID to property name. + */ + void WritePropertyUuidNameMap(Model::Model *model); + /*! * \brief LogCase Add a case to the case log. * \param c The case to be logged. @@ -57,6 +69,8 @@ class Logger QString opt_log_path_; //!< Path to the optimization log file. QString sim_log_path_; //!< Path to the simulation log file. QString cas_log_path_; //!< Path to the case log file. + QString settings_log_path_; //!< Path to the settings log file. + QString property_uuid_name_map_path_; //!< Path to the property uuid-name map. QStringList opt_header_; //!< CSV header for the optimization log QStringList sim_header_; //!< CSV header for the simulation log diff --git a/FieldOpt/Runner/runners/abstract_runner.cpp b/FieldOpt/Runner/runners/abstract_runner.cpp index 45ed8ef6e..e78f7270a 100644 --- a/FieldOpt/Runner/runners/abstract_runner.cpp +++ b/FieldOpt/Runner/runners/abstract_runner.cpp @@ -27,6 +27,9 @@ #include "Optimization/optimizers/compass_search.h" #include "Optimization/objective/weightedsum.h" #include "Simulation/simulator_interfaces/eclsimulator.h" +#include "Simulation/simulator_interfaces/adgprssimulator.h" + +#include namespace Runner { @@ -52,6 +55,10 @@ AbstractRunner::AbstractRunner(RuntimeSettings *runtime_settings) if (runtime_settings_->verbose()) std::cout << "Using ECL100 reservoir simulator." << std::endl; simulator_ = new Simulation::SimulatorInterfaces::ECLSimulator(settings_, model_); break; + case ::Utilities::Settings::Simulator::SimulatorType::ADGPRS: + if (runtime_settings_->verbose()) std::cout << "Using ADGPRS reservoir simulator." << std::endl; + simulator_ = new Simulation::SimulatorInterfaces::AdgprsSimulator(settings_, model_); + break; default: throw std::runtime_error("Unable to initialize runner: simulator set in driver file not recognized."); } @@ -92,4 +99,12 @@ AbstractRunner::AbstractRunner(RuntimeSettings *runtime_settings) bookkeeper_ = new Bookkeeper(settings_, optimizer_->case_handler()); } +void AbstractRunner::setObjectiveFunctionSentinelValue(Optimization::Case *c) +{ + if (settings_->optimizer()->mode() == Utilities::Settings::Optimizer::OptimizerMode::Minimize) + c->set_objective_function_value(std::numeric_limits::max()); + if (settings_->optimizer()->mode() == Utilities::Settings::Optimizer::OptimizerMode::Maximize) + c->set_objective_function_value(std::numeric_limits::min()); +} + } diff --git a/FieldOpt/Runner/runners/abstract_runner.h b/FieldOpt/Runner/runners/abstract_runner.h index a8f0314bf..30bd0d72b 100644 --- a/FieldOpt/Runner/runners/abstract_runner.h +++ b/FieldOpt/Runner/runners/abstract_runner.h @@ -68,6 +68,17 @@ class AbstractRunner Optimization::Optimizer *optimizer_; Optimization::Objective::Objective *objective_function_; Simulation::SimulatorInterfaces::Simulator *simulator_; + + /*! + * \brief setObjectiveFunctionSentinelValue Sets the objective function value to a sentinel value. + * + * Should be called when the case is invalid. + * + * If the ongoing run is maximization, the objective function value will be set to DBL_MIN; if + * it is minimization, the value will be set to DBL_MAX. + * \param c + */ + void setObjectiveFunctionSentinelValue(Optimization::Case *c); }; } diff --git a/FieldOpt/Runner/runners/serial_runner.cpp b/FieldOpt/Runner/runners/serial_runner.cpp index 59bf8c4be..497248969 100644 --- a/FieldOpt/Runner/runners/serial_runner.cpp +++ b/FieldOpt/Runner/runners/serial_runner.cpp @@ -1,6 +1,7 @@ #include "serial_runner.h" #include "Optimization/objective/weightedsum.h" #include "Runner/logger.h" +#include "Model/wells/well_exceptions.h" namespace Runner { @@ -11,6 +12,8 @@ SerialRunner::SerialRunner(Runner::RuntimeSettings *runtime_settings) void SerialRunner::Execute() { auto logger = Logger(runtime_settings_); + logger.LogSettings(settings_); + logger.WritePropertyUuidNameMap(model_); while (optimizer_->IsFinished() == false) { auto new_case = optimizer_->GetCaseForEvaluation(); logger.LogCase(new_case); @@ -19,11 +22,17 @@ void SerialRunner::Execute() logger.LogCase(new_case, "Case objective value set by bookkeeper."); } else { - model_->ApplyCase(new_case); - logger.LogSimulation(new_case); // Log sim start - simulator_->Evaluate(); - logger.LogSimulation(new_case); // Log sim end - new_case->set_objective_function_value(objective_function_->value()); + try { + model_->ApplyCase(new_case); + logger.LogSimulation(new_case); // Log sim start + simulator_->Evaluate(); + logger.LogSimulation(new_case); // Log sim end + new_case->set_objective_function_value(objective_function_->value()); + } catch (std::runtime_error e) { + std::cout << e.what() << std::endl; + std::cout << "Invalid well block coordinate encountered. Setting obj. val. to sentinel value." << std::endl; + setObjectiveFunctionSentinelValue(new_case); + } logger.LogCase(new_case); } optimizer_->SubmitEvaluatedCase(new_case); diff --git a/FieldOpt/Simulation/README.md b/FieldOpt/Simulation/README.md index daebe0fe9..cb4457b47 100644 --- a/FieldOpt/Simulation/README.md +++ b/FieldOpt/Simulation/README.md @@ -1,3 +1,54 @@ # Simulation The simulation library contains all functionality directly related to running reservoir simulations, e.g. interfaces to simulators and tools for writing simulator driver files. + +## ECLIPSE driver files +FieldOpt assumes that the input driver file is _one_ single file. If incudes are used. this may cause big problems. + +## ADGPRS driver files +FieldOpt assumes the following folder structure: + +``` +somefoldername +├── somedrivername.gprs +└── include + ├── otherfile.in + ├── wells.in + └── tsteps.in +``` + +The folder and driver name does not matter, but the folder containing the driver file _must_ contain +a folder named `include` which contains at least the `wells.in` and `steps.in` files. Any other files +in the `include` will be copied along, but their content is ignored by FieldOpt. + +The `wells.in` file must set (or include files that set) the keywords +* `WELSPECS` +* `COMPDAT` +* `WCONPROD` +* `WCONINJE` (for injectors) +* `WELLSTRE` (for injectors) + +The `tsteps.in` file should contain any time steps at the end of the file (i.e. the +time steps determining the duration of the simulation after the last control). These may be replaced +by FieldOpt. + +The primary driver file must have the following structure: +``` +OUTPUT + HDF5 TIME CASENAME/ +/ + +-- +-- body... +-- + +INCLUDE + ./include/wells.in +/ + +INCLUDE + ./include/tsteps.in +/ + +END +``` diff --git a/FieldOpt/Simulation/Simulation.pro b/FieldOpt/Simulation/Simulation.pro index 8b587fa2d..c20f6973f 100644 --- a/FieldOpt/Simulation/Simulation.pro +++ b/FieldOpt/Simulation/Simulation.pro @@ -4,6 +4,7 @@ CONFIG -= app_bundle CONFIG += c++11 LIBS += -L$$OUT_PWD/../Model -lmodel +LIBS += -L$$OUT_PWD/../AdgprsResultsReader -ladgprsresultsreader TEMPLATE = lib @@ -11,6 +12,7 @@ TARGET = simulation HEADERS += \ simulator_interfaces/eclsimulator.h \ + simulator_interfaces/adgprssimulator.h \ simulator_interfaces/simulator_exceptions.h \ simulator_interfaces/simulator.h \ simulator_interfaces/driver_file_writers/ecldriverfilewriter.h \ @@ -28,12 +30,17 @@ HEADERS += \ execution_scripts/execution_scripts.h \ results/results.h \ results/eclresults.h \ - results/results_exceptions.h + results/results_exceptions.h \ + results/adgprsresults.h \ + simulator_interfaces/driver_file_writers/adgprsdriverfilewriter.h \ + simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/wellstre.h \ + simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/adgprs_wellcontrols.h SOURCES += \ simulator_interfaces/simulator.cpp \ simulator_interfaces/driver_file_writers/ecldriverfilewriter.cpp \ simulator_interfaces/eclsimulator.cpp \ + simulator_interfaces/adgprssimulator.cpp \ simulator_interfaces/driver_file_writers/driver_parts/driverpart.cpp \ simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/welspecs.cpp \ simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/ecldriverpart.cpp \ @@ -45,8 +52,14 @@ SOURCES += \ simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/solution_section.cpp \ simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/summary_section.cpp \ simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/schedule_section.cpp \ - results/eclresults.cpp + results/eclresults.cpp \ + results/adgprsresults.cpp \ + simulator_interfaces/driver_file_writers/adgprsdriverfilewriter.cpp \ + simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/wellstre.cpp \ + simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/adgprs_wellcontrols.cpp DISTFILES += \ execution_scripts/README.md \ - execution_scripts/csh_eclrun.sh + README.md \ + execution_scripts/csh_eclrun.sh \ + execution_scripts/bash_adgprs.sh diff --git a/FieldOpt/Simulation/execution_scripts/README.md b/FieldOpt/Simulation/execution_scripts/README.md index e71983680..3c794431a 100644 --- a/FieldOpt/Simulation/execution_scripts/README.md +++ b/FieldOpt/Simulation/execution_scripts/README.md @@ -23,3 +23,14 @@ cd $1 eval eclrun eclipse $2 >& /dev/null ``` + +## `bash_adgprs.sh` +* Executes /usr/bin/adgprs +* First parameter is the path to the workdir, second parameter is the path to the driver file. + +Note that if ADGPRS can't be started by executing `/usr/bin/adgprs driverfilenam`, you must +create a link to it, e.g. +``` +sudo ln -s /opt/ADGPRS/bin/ADGPRSLinuxK3 /usr/bin/adgprs +``` + diff --git a/FieldOpt/Simulation/execution_scripts/bash_adgprs.sh b/FieldOpt/Simulation/execution_scripts/bash_adgprs.sh new file mode 100644 index 000000000..24a2c38d5 --- /dev/null +++ b/FieldOpt/Simulation/execution_scripts/bash_adgprs.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# Parameter 1: Work direcory. +# Parameter 2: Path to ADGPRS driver file +# Note that this assumes that (a link to) ADGPRS is found at /usr/bin/adgprs + + +# Switch to work directory +cd $1 + +# Execute eclipse with the file path as parameter +eval /usr/bin/adgprs $2 diff --git a/FieldOpt/Simulation/execution_scripts/execution_scripts.h b/FieldOpt/Simulation/execution_scripts/execution_scripts.h index 2a68e6c6f..f57e6942b 100644 --- a/FieldOpt/Simulation/execution_scripts/execution_scripts.h +++ b/FieldOpt/Simulation/execution_scripts/execution_scripts.h @@ -36,20 +36,24 @@ namespace Simulation { namespace ExecutionScripts { * \brief The DefaultScripts enum lists the availabel scripts. */ enum Script { - csh_eclrun + csh_eclrun, + bash_adgprs }; - QMap DefaultScripts { - {Script::csh_eclrun, QString("%1/execution_scripts/csh_eclrun.sh").arg(::Utilities::FileHandling::GetBuildDirectoryPath())} + static QMap DefaultScripts { + {Script::csh_eclrun, QString("%1/execution_scripts/csh_eclrun.sh").arg(::Utilities::FileHandling::GetBuildDirectoryPath())}, + {Script::bash_adgprs, QString("%1/execution_scripts/bash_adgprs.sh").arg(::Utilities::FileHandling::GetBuildDirectoryPath())} }; - Script GetScript(QString name) { + static Script GetScript(QString name) { if (QString::compare(name, "csh_eclrun") == 0) return Script::csh_eclrun; + else if (QString::compare(name, "bash_adgprs") == 0) + return Script::bash_adgprs; else throw std::runtime_error("Script " + name.toStdString() + " not recognized."); } - QString GetScriptPath(QString name) { + static QString GetScriptPath(QString name) { Script scr = GetScript(name); QString path = DefaultScripts[scr]; return path; diff --git a/FieldOpt/Simulation/results/adgprsresults.cpp b/FieldOpt/Simulation/results/adgprsresults.cpp new file mode 100644 index 000000000..105d9ad2b --- /dev/null +++ b/FieldOpt/Simulation/results/adgprsresults.cpp @@ -0,0 +1,75 @@ +#include "adgprsresults.h" +#include + +namespace Simulation { namespace Results { + +AdgprsResults::AdgprsResults(Model::Model *model) +{ + for (int i = 0; i < model->wells()->size(); ++i) { + well_numbers_[model->wells()->at(i)->name()] = i; + } +} + +double AdgprsResults::GetValue(int well_nr, Results::Property prop) +{ + if (!isAvailable()) throw ResultsNotAvailableException(); + if (!keys_.contains(prop)) throw ResultPropertyKeyDoesNotExistException("ADGPRS"); + if (summary_reader_->results()->IsInjector(well_nr)) + return 0.0; + else + return summary_reader_->results()->GetWellProperty(well_nr, keys_[prop])->last(); +} + +double AdgprsResults::GetValue(int well_nr, Results::Property prop, int time_index) +{ + if (!isAvailable()) throw ResultsNotAvailableException(); + if (!keys_.contains(prop)) throw ResultPropertyKeyDoesNotExistException("ADGPRS"); + if (summary_reader_->results()->IsInjector(well_nr)) + return 0.0; + else + return summary_reader_->results()->GetWellProperty(well_nr, keys_[prop])->at(time_index); +} + +void AdgprsResults::ReadResults(QString file_path) +{ + if (file_path.split(".SIM.H5").length() == 1) + file_path = file_path + ".SIM.H5"; // Append the suffix if it's not already there + file_path_ = file_path; + summary_reader_ = new AdgprsResultsReader::AdgprsResultsReader(file_path); + setAvailable(); +} + +void AdgprsResults::DumpResults() +{ + delete summary_reader_; + setUnavailable(); +} + +double AdgprsResults::GetValue(Results::Property prop) +{ + if (!isAvailable()) throw ResultsNotAvailableException(); + if (!keys_.contains(prop)) throw ResultPropertyKeyDoesNotExistException("ADGPRS"); + return summary_reader_->results()->GetFieldProperty(keys_[prop])->last(); +} + +double AdgprsResults::GetValue(Results::Property prop, QString well) +{ + if (!well_numbers_.contains(well)) throw std::runtime_error("Invalid well name. Cannot return results"); + return GetValue(well_numbers_[well], prop); +} + +double AdgprsResults::GetValue(Results::Property prop, int time_index) +{ + if (!isAvailable()) throw ResultsNotAvailableException(); + if (!keys_.contains(prop)) throw ResultPropertyKeyDoesNotExistException("ADGPRS"); + return summary_reader_->results()->GetFieldProperty(keys_[prop])->at(time_index); +} + +double AdgprsResults::GetValue(Results::Property prop, QString well, int time_index) +{ + if (!well_numbers_.contains(well)) throw std::runtime_error("Invalid well name. Cannot return results"); + return GetValue(well_numbers_[well], prop, time_index); +} + + +}} diff --git a/FieldOpt/Simulation/results/adgprsresults.h b/FieldOpt/Simulation/results/adgprsresults.h new file mode 100644 index 000000000..920e21561 --- /dev/null +++ b/FieldOpt/Simulation/results/adgprsresults.h @@ -0,0 +1,54 @@ +#ifndef ADGPRSRESULTS_H +#define ADGPRSRESULTS_H + +#include "results.h" +#include +#include "AdgprsResultsReader/adgprs_results_reader.h" +#include "Model/model.h" + +namespace Simulation { namespace Results { + +class AdgprsResults : public Results +{ +public: + /*! + * \brief AdgprsResults Uses the Model to create a mapping from well name to well number. + * + * Creating this mapping is necessary because the ADGPRS does not (unlike ECL) use well + * numbers in it's summary. + * + * \todo Well properties do not support injectors. Field props do. + * + * \todo The results reported for wells are not reliable. The nr -> name mapping is wrong. + */ + AdgprsResults(Model::Model *model); + + double GetValue(int well_nr, Property prop); + double GetValue(int well_nr, Property prop, int time_index); + + // Results interface +public: + void ReadResults(QString file_path); + void DumpResults(); + double GetValue(Property prop); + double GetValue(Property prop, QString well); + double GetValue(Property prop, int time_index); + double GetValue(Property prop, QString well, int time_index); + +private: + QString file_path_; + AdgprsResultsReader::AdgprsResultsReader *summary_reader_; + QHash well_numbers_; //!< A mapping from well name to well number. This is needed because the ADGPRS summary does not include well names. + + // Mappings to summary keys. + QHash keys_ { + {CumulativeOilProduction, "FOPT"}, + {CumulativeGasProduction, "FGPT"}, + {CumulativeWaterProduction, "FWPT"}, + {Time, "TIME"} + }; +}; + +}} + +#endif // ADGPRSRESULTS_H diff --git a/FieldOpt/Simulation/results/results.h b/FieldOpt/Simulation/results/results.h index ac963c7cd..7532cc0f1 100644 --- a/FieldOpt/Simulation/results/results.h +++ b/FieldOpt/Simulation/results/results.h @@ -68,7 +68,7 @@ class Results /*! * \brief ReadResults Read the summary data from file. - * \param file_path The path to the summary file. + * \param file_path The path to the summary file without suffixes. */ virtual void ReadResults(QString file_path) = 0; diff --git a/FieldOpt/Simulation/simulator_interfaces/adgprssimulator.cpp b/FieldOpt/Simulation/simulator_interfaces/adgprssimulator.cpp new file mode 100644 index 000000000..1f46375f9 --- /dev/null +++ b/FieldOpt/Simulation/simulator_interfaces/adgprssimulator.cpp @@ -0,0 +1,70 @@ +#include "adgprssimulator.h" +#include "Utilities/file_handling/filehandling.h" +#include "Utilities/unix/execution.h" +#include +#include "simulator_exceptions.h" +#include "Simulation/results/adgprsresults.h" +#include + +namespace Simulation { namespace SimulatorInterfaces { + +AdgprsSimulator::AdgprsSimulator(Utilities::Settings::Settings *settings, Model::Model *model) +{ + if (!Utilities::FileHandling::FileExists(settings->simulator()->driver_file_path())) + DriverFileDoesNotExistException(settings->simulator()->driver_file_path()); + initial_driver_file_path_ = settings->simulator()->driver_file_path(); + + if (!Utilities::FileHandling::DirectoryExists(settings->output_directory())) + OutputDirectoryDoesNotExistException(settings->output_directory()); + output_directory_ = settings->output_directory(); + + QStringList tmp = initial_driver_file_path_.split("/"); + initial_driver_file_name_ = tmp.last(); + tmp.removeLast(); + initial_driver_file_parent_dir_path_ = tmp.join("/"); + verifyOriginalDriverFileDirectory(); + output_h5_summary_file_path_ = output_directory_ + "/" + initial_driver_file_name_.split(".").first() + ".SIM.H5"; + + model_ = model; + settings_ = settings; + results_ = new Simulation::Results::AdgprsResults(model_); + driver_file_writer_ = new DriverFileWriters::AdgprsDriverFileWriter(settings_, model_); + + script_path_ = ExecutionScripts::GetScriptPath(settings->simulator()->script_name()); + script_args_ = (QStringList() << output_directory_ << output_directory_+"/"+initial_driver_file_name_); +} + +void AdgprsSimulator::Evaluate() +{ + copyDriverFiles(); + driver_file_writer_->WriteDriverFile(); + ::Utilities::Unix::ExecShellScript(script_path_, script_args_); + results_->ReadResults(output_h5_summary_file_path_); +} + +void AdgprsSimulator::CleanUp() +{ + Utilities::FileHandling::DeleteFile(output_h5_summary_file_path_); +} + +void AdgprsSimulator::copyDriverFiles() +{ + Utilities::FileHandling::CopyFile(initial_driver_file_path_, output_directory_+"/"+initial_driver_file_name_); + Utilities::FileHandling::CreateDirectory(output_directory_+"/include"); + Utilities::FileHandling::CopyDirectory(initial_driver_file_parent_dir_path_+"/include", output_directory_+"/include"); +} + +void AdgprsSimulator::verifyOriginalDriverFileDirectory() +{ + QStringList critical_files = {initial_driver_file_path_, + initial_driver_file_parent_dir_path_ + "/include/compdat.in", + initial_driver_file_parent_dir_path_ + "/include/controls.in", + initial_driver_file_parent_dir_path_ + "/include/wells.in", + initial_driver_file_parent_dir_path_ + "/include/welspecs.in"}; + foreach (auto file, critical_files) { + if (!Utilities::FileHandling::FileExists(file)) + throw DriverFileDoesNotExistException(file); + } +} + +}} diff --git a/FieldOpt/Simulation/simulator_interfaces/adgprssimulator.h b/FieldOpt/Simulation/simulator_interfaces/adgprssimulator.h new file mode 100644 index 000000000..c9a3feac0 --- /dev/null +++ b/FieldOpt/Simulation/simulator_interfaces/adgprssimulator.h @@ -0,0 +1,49 @@ +#ifndef ADGPRSSIMULATOR_H +#define ADGPRSSIMULATOR_H +#include "simulator.h" + +#include "Model/model.h" +#include "Utilities/settings/settings.h" +#include "driver_file_writers/adgprsdriverfilewriter.h" + +namespace Simulation { namespace SimulatorInterfaces { + +/*! + * \brief The AdgprsSimulator class implements simulation of models using the AD-GPRS reservoir simulator. + * + * This class should not be used directly except for instantiation. All other actions should be + * called through the Simulator class. The intended use is as follows: + * + * \code + * Simulator sim = new AdgprsSimulator(); + * sim.SetOutputDirectory("some/path"); + * sim.Evaluate(); + * sim.CleanUp(); + * \endcode + * + * \todo Support custom execution commands. + */ +class AdgprsSimulator : public Simulator +{ +public: + AdgprsSimulator(Utilities::Settings::Settings *settings, Model::Model *model); + + // Simulator interface +public: + void Evaluate(); + void CleanUp(); + +private: + QString initial_driver_file_parent_dir_path_; + QString initial_driver_file_name_; + QString output_h5_summary_file_path_; + QString script_path_; + QStringList script_args_; + Simulation::SimulatorInterfaces::DriverFileWriters::AdgprsDriverFileWriter *driver_file_writer_; + void copyDriverFiles(); //!< Copy the original driver files. + void verifyOriginalDriverFileDirectory(); //!< Ensure that all necessary files are present in the original dir. +}; + +}} + +#endif // ADGPRSSIMULATOR_H diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/adgprsdriverfilewriter.cpp b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/adgprsdriverfilewriter.cpp new file mode 100644 index 000000000..cf802444c --- /dev/null +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/adgprsdriverfilewriter.cpp @@ -0,0 +1,32 @@ +#include "adgprsdriverfilewriter.h" +#include "Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/welspecs.h" +#include "Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/compdat.h" +#include "Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/wellstre.h" +#include "Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/adgprs_wellcontrols.h" +#include +#include "Utilities/file_handling/filehandling.h" + +namespace Simulation { namespace SimulatorInterfaces { namespace DriverFileWriters { + +AdgprsDriverFileWriter::AdgprsDriverFileWriter(Utilities::Settings::Settings *settings, Model::Model *model) +{ + model_ = model; + settings_ = settings; +} + +void AdgprsDriverFileWriter::WriteDriverFile() +{ + auto welspecs = DriverParts::ECLDriverParts::Welspecs(model_->wells()); + auto compdat = DriverParts::ECLDriverParts::Compdat(model_->wells()); + auto wellstre = DriverParts::AdgprsDriverParts::Wellstre(model_->wells()); + auto wellcontrols = DriverParts::AdgprsDriverParts::WellControls(model_->wells()); + + QString complete_string = welspecs.GetPartString() + compdat.GetPartString() + + wellstre.GetPartString() + wellcontrols.GetPartString(); + + if (!Utilities::FileHandling::FileExists(settings_->output_directory()+"/include/wells.in")) + throw std::runtime_error("Unable to find include/wells.in file to write to."); + Utilities::FileHandling::WriteStringToFile(complete_string,settings_->output_directory()+"/include/wells.in"); +} + +}}} diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/adgprsdriverfilewriter.h b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/adgprsdriverfilewriter.h new file mode 100644 index 000000000..8799c9d6a --- /dev/null +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/adgprsdriverfilewriter.h @@ -0,0 +1,32 @@ +#ifndef ADGPRSDRIVERFILEWRITER_H +#define ADGPRSDRIVERFILEWRITER_H + +#include "Utilities/settings/settings.h" +#include "Utilities/settings/simulator.h" +#include "Model/model.h" + +namespace Simulation { namespace SimulatorInterfaces { + class AdgprsSimulator; +}} + +namespace Simulation { namespace SimulatorInterfaces { namespace DriverFileWriters { + +/*! + * \brief The AdgprsDriverFileWriter class is responsible for writing AD-GPRS driver files representing + * the model. It uses many of the parts created for the ECL simulator, as many of the keywords are + * more or less identical. + */ +class AdgprsDriverFileWriter +{ +private: + friend class ::Simulation::SimulatorInterfaces::AdgprsSimulator; + AdgprsDriverFileWriter(::Utilities::Settings::Settings *settings, Model::Model *model); + void WriteDriverFile(); + + Model::Model *model_; + Utilities::Settings::Settings *settings_; +}; + +}}} + +#endif // ADGPRSDRIVERFILEWRITER_H diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/adgprs_wellcontrols.cpp b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/adgprs_wellcontrols.cpp new file mode 100644 index 000000000..644e4c29b --- /dev/null +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/adgprs_wellcontrols.cpp @@ -0,0 +1,35 @@ +#include "adgprs_wellcontrols.h" + +namespace Simulation { +namespace SimulatorInterfaces { +namespace DriverFileWriters { +namespace DriverParts { +namespace AdgprsDriverParts { + +WellControls::WellControls(QList *wells) + : Simulation::SimulatorInterfaces::DriverFileWriters::DriverParts::ECLDriverParts::WellControls(wells) +{} + +QString WellControls::GetPartString() +{ + return Simulation::SimulatorInterfaces::DriverFileWriters::DriverParts::ECLDriverParts::WellControls::GetPartString(); +} + +QString WellControls::createTimeEntry(int time) +{ + if (time == 0) return ""; + + // Find prev time step + int prev_step; + for (int i = 0; i < time_entries_.keys().size(); ++i) { + if (time_entries_.keys()[i] == time) { + prev_step = time_entries_.keys()[i-1]; + break; + } + } + int dt = time-prev_step; + return QString("TSTEP\n\t%1/\n").arg(dt); +} + + +}}}}} diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/adgprs_wellcontrols.h b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/adgprs_wellcontrols.h new file mode 100644 index 000000000..9d830f331 --- /dev/null +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/adgprs_wellcontrols.h @@ -0,0 +1,34 @@ +#ifndef ADGPRS_WELLCONTROLS_H +#define ADGPRS_WELLCONTROLS_H + +#include "Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/wellcontrols.h" +#include "Model/wells/well.h" +#include + +namespace Simulation { +namespace SimulatorInterfaces { +namespace DriverFileWriters { +namespace DriverParts { +namespace AdgprsDriverParts { + +class WellControls : public ECLDriverParts::WellControls +{ +public: + WellControls(QList *wells); + + + // DriverPart interface +public: + QString GetPartString(); + +private: + + + // WellControls interface +private: + QString createTimeEntry(int time); +}; + +}}}}} + +#endif // ADGPRS_WELLCONTROLS_H diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/wellstre.cpp b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/wellstre.cpp new file mode 100644 index 000000000..5318415b2 --- /dev/null +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/wellstre.cpp @@ -0,0 +1,60 @@ +#include "wellstre.h" + +namespace Simulation { +namespace SimulatorInterfaces { +namespace DriverFileWriters { +namespace DriverParts { +namespace AdgprsDriverParts { + +Wellstre::Wellstre(QList *wells) +{ + wells_ = wells; +} + +QString Wellstre::GetPartString() +{ + return createKeyword(); +} + +QString Wellstre::createKeyword() +{ + QString wellstre = "WELLSTRE\n"; + for (int i = 0; i < wells_->length(); ++i) { + if (wells_->at(i)->type() == Utilities::Settings::Model::WellType::Injector) { + QString line = QString("\t%1 /\n").arg(createWellEntry(wells_->at(i))); + wellstre.append(line); + } + } + wellstre.append("/\n"); + return wellstre; +} + +QString Wellstre::createWellEntry(Model::Wells::Well *well) +{ + if (well->type() != Utilities::Settings::Model::WellType::Injector) // Return an empty string if the well is not an injector + return ""; + + initializeBaseEntryLine(4); + base_entry_line_[0] = well->name(); + base_entry_line_[1] = "0"; + base_entry_line_[2] = "0"; + base_entry_line_[3] = "0"; + + switch (well->prefered_phase()) { + case Utilities::Settings::Model::PreferedPhase::Water: + base_entry_line_[3] = "1"; + break; + case Utilities::Settings::Model::PreferedPhase::Gas: + base_entry_line_[1] = "1"; + break; + case Utilities::Settings::Model::PreferedPhase::Oil: + base_entry_line_[2] = "1"; + break; + default: + base_entry_line_[3] = "1"; + break; + } + return base_entry_line_.join("\t"); +} + +}}}}} diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/wellstre.h b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/wellstre.h new file mode 100644 index 000000000..0b7b94004 --- /dev/null +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/adgprs_driver_parts/wellstre.h @@ -0,0 +1,32 @@ +#ifndef WELLSTRE_H +#define WELLSTRE_H + +#include "Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/ecldriverpart.h" +#include "Model/wells/well.h" +#include + + +namespace Simulation { +namespace SimulatorInterfaces { +namespace DriverFileWriters { +namespace DriverParts { +namespace AdgprsDriverParts { + +class Wellstre : public ECLDriverParts::ECLDriverPart +{ +public: + Wellstre(QList *wells); + + // DriverPart interface +public: + QString GetPartString(); + +private: + QString createKeyword(); + QString createWellEntry(Model::Wells::Well *well); + QList *wells_; +}; + +}}}}} + +#endif // WELLSTRE_H diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/compdat.cpp b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/compdat.cpp index 7057dfeb9..7055e9b2e 100644 --- a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/compdat.cpp +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/compdat.cpp @@ -35,7 +35,7 @@ namespace ECLDriverParts { Compdat::Compdat(QList *wells) { - initializeBaseEntryLine(14); + initializeBaseEntryLine(13); head_ = "COMPDAT"; foot_ = "/\n\n"; for (int i = 0; i < wells->size(); ++i) { diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/ecldriverpart.h b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/ecldriverpart.h index 6d7844668..60ebfaa1e 100644 --- a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/ecldriverpart.h +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/ecldriverpart.h @@ -37,7 +37,8 @@ namespace DriverParts { namespace ECLDriverParts { /*! * \brief The ECLDriverPart class Is the parent class for any part of an ECL100 driver file, - * e.g. the WELSPECS section. + * e.g. the WELSPECS section. Because the driver files are so similar, this class is also used + * by ADGPRS driver parts. */ class ECLDriverPart : public Simulation::SimulatorInterfaces::DriverFileWriters::DriverParts::DriverPart { diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/wellcontrols.cpp b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/wellcontrols.cpp index 1cf427beb..1d97d8ba8 100644 --- a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/wellcontrols.cpp +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/wellcontrols.cpp @@ -93,6 +93,7 @@ QString WellControls::createTimeEntry(int time) QString WellControls::createProducerEntry(WellControls::WellSetting *setting) { + initializeBaseEntryLine(9); QStringList producer_entry_line = QStringList(base_entry_line_); producer_entry_line[0] = setting->well_name; @@ -116,6 +117,7 @@ QString WellControls::createProducerEntry(WellControls::WellSetting *setting) QString WellControls::createInjectorEntry(WellControls::WellSetting *setting) { + initializeBaseEntryLine(7); QStringList injector_entry_line = QStringList(base_entry_line_); injector_entry_line[0] = setting->well_name; @@ -130,7 +132,7 @@ QString WellControls::createInjectorEntry(WellControls::WellSetting *setting) throw std::runtime_error("Injector type not recognized."); } - if (setting->control->open()) injector_entry_line[3] = "OPEN"; + if (setting->control->open()) injector_entry_line[2] = "OPEN"; else injector_entry_line[2] = "SHUT"; switch (setting->control->mode()) { diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/wellcontrols.h b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/wellcontrols.h index 5b7ab0aa8..fbb9bf6db 100644 --- a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/wellcontrols.h +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/wellcontrols.h @@ -52,9 +52,9 @@ class WellControls : public ECLDriverPart public: WellControls(QList *wells); - QString GetPartString(); + virtual QString GetPartString(); -private: +protected: /*! * \brief The WellSetting struct is a convenience class representing all settings * for a well at a particular time. @@ -88,7 +88,7 @@ class WellControls : public ECLDriverPart * \param time The time step to be inserted. * \return */ - QString createTimeEntry(int time); + virtual QString createTimeEntry(int time); QString createProducerEntry(WellSetting *setting); /*! diff --git a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/welspecs.cpp b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/welspecs.cpp index 9a59f9498..e82488e0f 100644 --- a/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/welspecs.cpp +++ b/FieldOpt/Simulation/simulator_interfaces/driver_file_writers/driver_parts/ecl_driver_parts/welspecs.cpp @@ -25,6 +25,7 @@ #include "welspecs.h" #include +#include namespace Simulation { namespace SimulatorInterfaces { @@ -34,7 +35,7 @@ namespace ECLDriverParts { Welspecs::Welspecs(QList *wells) { - initializeBaseEntryLine(17); + initializeBaseEntryLine(10); head_ = "WELSPECS"; foot_ = "/\n\n"; for (int i = 0; i < wells->size(); ++i) { diff --git a/FieldOpt/Simulation/simulator_interfaces/eclsimulator.cpp b/FieldOpt/Simulation/simulator_interfaces/eclsimulator.cpp index 9b0f6e9fb..7bf0740d7 100644 --- a/FieldOpt/Simulation/simulator_interfaces/eclsimulator.cpp +++ b/FieldOpt/Simulation/simulator_interfaces/eclsimulator.cpp @@ -24,9 +24,9 @@ *****************************************************************************/ #include "eclsimulator.h" +#include "Utilities/file_handling/filehandling.h" #include "Utilities/unix/execution.h" #include "simulator_exceptions.h" -#include "Simulation/execution_scripts/execution_scripts.h" #include "Simulation/results/eclresults.h" namespace Simulation { diff --git a/FieldOpt/Simulation/simulator_interfaces/simulator.h b/FieldOpt/Simulation/simulator_interfaces/simulator.h index 0bd5a529b..9a84bba83 100644 --- a/FieldOpt/Simulation/simulator_interfaces/simulator.h +++ b/FieldOpt/Simulation/simulator_interfaces/simulator.h @@ -31,6 +31,7 @@ #include "Simulation/results/results.h" #include "Utilities/settings/settings.h" #include "Utilities/settings/simulator.h" +#include "Simulation/execution_scripts/execution_scripts.h" namespace Simulation { namespace SimulatorInterfaces { diff --git a/FieldOpt/Utilities/Utilities.pro b/FieldOpt/Utilities/Utilities.pro index d7c26bb16..c4b2f58a0 100644 --- a/FieldOpt/Utilities/Utilities.pro +++ b/FieldOpt/Utilities/Utilities.pro @@ -24,3 +24,7 @@ SOURCES += \ settings/settings.cpp \ file_handling/filehandling.cpp \ unix/execution.cpp + +DISTFILES += \ + README.md \ + settings/README.md diff --git a/FieldOpt/Utilities/file_handling/filehandling.cpp b/FieldOpt/Utilities/file_handling/filehandling.cpp index 8b25e2b33..b79723ecf 100644 --- a/FieldOpt/Utilities/file_handling/filehandling.cpp +++ b/FieldOpt/Utilities/file_handling/filehandling.cpp @@ -143,3 +143,37 @@ bool Utilities::FileHandling::DirectoryIsEmpty(QString folder_path) return true; else return false; } + +void Utilities::FileHandling::CopyFile(QString origin, QString destination) +{ + if (!FileExists(origin)) + throw FileNotFoundException(origin); + QFile original(origin); + if (!original.copy(destination)) + FileHandlingException("Failed to copy file " + origin + " to " + destination); +} + +void Utilities::FileHandling::CopyDirectory(QString origin, QString destination) +{ + if (!DirectoryExists(origin)) + throw DirectoryNotFoundException("Can't find parent directory for copying: ", origin); + if (!DirectoryExists(destination)) + throw DirectoryNotFoundException("Cant findt destination (parent) directory for copying: ", destination); + QDir original(origin); + QFileInfoList entries = original.entryInfoList(QDir::AllEntries | QDir::NoDotAndDotDot, QDir::DirsLast); + + foreach (auto entry, entries) { + if (entry.isFile() && !entry.isDir()) + CopyFile(entry.absoluteFilePath(), destination+"/"+entry.fileName()); //std::cout << "FILE: " << QString().toStdString() << std::endl; + else if (entry.isDir()) + CreateDirectory(destination+"/"+entry.fileName()); // std::cout << "FOLDER: " << QString().toStdString() << std::endl; + } + +} + +void Utilities::FileHandling::CreateDirectory(QString path) +{ + if (DirectoryExists(path)) + return; // Do nothing if the directory already exists. + QDir().mkdir(path); +} diff --git a/FieldOpt/Utilities/file_handling/filehandling.h b/FieldOpt/Utilities/file_handling/filehandling.h index ed16ee17b..cf83292d3 100644 --- a/FieldOpt/Utilities/file_handling/filehandling.h +++ b/FieldOpt/Utilities/file_handling/filehandling.h @@ -94,6 +94,31 @@ void WriteLineToFile(QString string, QString file_path); */ void DeleteFile(QString path); +/*! + * \brief CreateDirectory Create a new drectory with the specified path. + * \param path Path to new directory. + */ +void CreateDirectory(QString path); + +/*! + * \brief CopyFile Copy a file. + * \param origin The path to the original file. + * \param destination Path to the copy of the file. + */ +void CopyFile(QString origin, QString destination); + +/*! + * \brief CopyDirectory Copy a directory and it's contents to a new destination. + * + * Note that this is not a recursive function: It will copy files in the root of the + * directory, and _create_ any subdirectories found, but it will not copy the contents + * of subdirectories. + * \param origin Path to the original directory to be copied. + * \param destination Path to the _parent directory_ for the copy. + */ +void CopyDirectory(QString origin, QString destination); + + /*! * \brief GetBuildDirectoryPath Gets the absolute path to the first directory in the tree * that starts with build-. diff --git a/FieldOpt/Utilities/file_handling/filehandling_exceptions.h b/FieldOpt/Utilities/file_handling/filehandling_exceptions.h index 910d66541..c9beb937b 100644 --- a/FieldOpt/Utilities/file_handling/filehandling_exceptions.h +++ b/FieldOpt/Utilities/file_handling/filehandling_exceptions.h @@ -47,6 +47,12 @@ class DirectoryNotFoundException : public std::runtime_error { : std::runtime_error(message.toStdString() + ": " + path.toStdString()) {} }; +class FileHandlingException : public std::runtime_error { +public: + FileHandlingException(const QString message) + : std::runtime_error(message.toStdString()) {} +}; + } } diff --git a/FieldOpt/Utilities/settings/README.md b/FieldOpt/Utilities/settings/README.md index 63e900267..37b76284d 100644 --- a/FieldOpt/Utilities/settings/README.md +++ b/FieldOpt/Utilities/settings/README.md @@ -212,7 +212,7 @@ In the simulator section we define settings and parameters needed to launch the Note that the simulator driver path may be omitted from the driver file. If it is, the path must be passed as a command line parameter. If a path is specified both places, the one passed in the command line will be used. -* `Type` denotes the simulator to be used. Currently, the only supported simulator is `ECLIPSE`. +* `Type` denotes the simulator to be used. Currently, the only supported simulatorsare `ECLIPSE` and `ADGPRS`. * `Commands` is an array of (BASH) commands that should be executed in order to start the simulator. * `ExecutionScript` is the name of a script found in the `FieldOpt/execution_scripts` folder that should be used to execute simulations. The name should be given without the suffix (e.g. `"ExecutionScript": "csh_eclrun"`). If defined, this will override any commands given. * `DriverPath` is the path to a complete driver file for the model (e.g. the one run to generate the grid files). Fluid functions, rock properties etc. is taken from this file. This may be omitted. diff --git a/FieldOpt/Utilities/settings/settings.cpp b/FieldOpt/Utilities/settings/settings.cpp index fc9dd5518..8e9d72dd3 100644 --- a/FieldOpt/Utilities/settings/settings.cpp +++ b/FieldOpt/Utilities/settings/settings.cpp @@ -45,6 +45,22 @@ Settings::Settings(QString driver_path, QString output_directory) simulator_->output_directory_ = output_directory; } +QString Settings::GetLogCsvString() const +{ + QStringList header = QStringList(); + QStringList content = QStringList(); + header << "name" + << "maxevals" + << "initstep" + << "minstep"; + content << name_ + << QString::number(optimizer_->parameters().max_evaluations) + << QString::number(optimizer_->parameters().initial_step_length) + << QString::number(optimizer_->parameters().minimum_step_length); + + return QString("%1\n%2").arg(header.join(",")).arg(content.join(",")); +} + void Settings::readDriverFile() { QFile *file = new QFile(driver_path_); diff --git a/FieldOpt/Utilities/settings/settings.h b/FieldOpt/Utilities/settings/settings.h index a0f7180f2..46fb4b6a3 100644 --- a/FieldOpt/Utilities/settings/settings.h +++ b/FieldOpt/Utilities/settings/settings.h @@ -64,6 +64,8 @@ class Settings Utilities::Settings::Optimizer *optimizer() const { return optimizer_; } //!< Object containing optimizer specific settings. Simulator *simulator() const { return simulator_; } //!< Object containing simulator specific settings. + QString GetLogCsvString() const; //!< Get a string containing the CSV header and contents for the log. + private: QString driver_path_; QJsonObject *json_driver_; diff --git a/FieldOpt/Utilities/settings/simulator.cpp b/FieldOpt/Utilities/settings/simulator.cpp index 7d2ed7d5a..8cbc5eab5 100644 --- a/FieldOpt/Utilities/settings/simulator.cpp +++ b/FieldOpt/Utilities/settings/simulator.cpp @@ -42,6 +42,8 @@ Simulator::Simulator(QJsonObject json_simulator) QString type = json_simulator["Type"].toString(); if (QString::compare(type, "ECLIPSE") == 0) type_ = SimulatorType::ECLIPSE; + else if (QString::compare(type, "ADGPRS") == 0) + type_ = SimulatorType::ADGPRS; else throw SimulatorTypeNotRecognizedException("The simulator type " + type.toStdString() + " was not recognized"); // Simulator commands diff --git a/FieldOpt/Utilities/settings/simulator.h b/FieldOpt/Utilities/settings/simulator.h index 16d0cf971..076a631b5 100644 --- a/FieldOpt/Utilities/settings/simulator.h +++ b/FieldOpt/Utilities/settings/simulator.h @@ -43,7 +43,7 @@ class Simulator friend class Settings; public: - enum SimulatorType { ECLIPSE }; + enum SimulatorType { ECLIPSE, ADGPRS }; SimulatorType type() const { return type_; } //!< Get the simulator type (e.g. ECLIPSE). QStringList *commands() const { return commands_; } //!< Get the simulator commands (commands used to execute a simulation). Each list element is executed in sequence. diff --git a/FieldOpt/WellIndexCalculator b/FieldOpt/WellIndexCalculator new file mode 160000 index 000000000..3e556fb13 --- /dev/null +++ b/FieldOpt/WellIndexCalculator @@ -0,0 +1 @@ +Subproject commit 3e556fb1325997c3734cb34f007c4f1d9c361c6a diff --git a/FieldOpt/execution_scripts/bash_adgprs.sh b/FieldOpt/execution_scripts/bash_adgprs.sh new file mode 100755 index 000000000..24a2c38d5 --- /dev/null +++ b/FieldOpt/execution_scripts/bash_adgprs.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# Parameter 1: Work direcory. +# Parameter 2: Path to ADGPRS driver file +# Note that this assumes that (a link to) ADGPRS is found at /usr/bin/adgprs + + +# Switch to work directory +cd $1 + +# Execute eclipse with the file path as parameter +eval /usr/bin/adgprs $2 diff --git a/create_release.sh b/create_release.sh new file mode 100755 index 000000000..8de0363a2 --- /dev/null +++ b/create_release.sh @@ -0,0 +1,43 @@ +#!/bin/bash + +# +# Release script +# This script copies all compiled libraries, as well as the examples, into a +# directory. +# +# It asks for an output directory (the directory in which to create the zip file) +# and a version number (which will be in the name of the zipped file). +# + +# Ask for input +echo -n 'Output directory: ' +read outpath +echo -n 'Version number: ' +read version_number + +# Create temporary release directory +outdir=${outpath}/FieldOpt_v${version_number} +mkdir ${outdir} +mkdir ${outdir}/build + +# Library paths +build_path="./build-FieldOpt-Desktop-Release/" +declare -a lib_names=("AdgprsResultsReader" "ERTWrapper" "Model" "Runner" "Utilities" "AdgprsSummaryConverter" "Optimization" "Simulation") + +# Example path +example_path="./examples/" + +# Copy libraries +for lib in "${lib_names[@]}" +do + cp -r ${build_path}/$lib ${outdir}/build/ +done + +# Copy execution scripts +cp -r ${build_path}/execution_scripts ${outdir}/build/ + +# Copy examples +cp -r ${example_path} ${outdir} + + + diff --git a/examples/ADGPRS/5spot/.gitignore b/examples/ADGPRS/5spot/.gitignore new file mode 100644 index 000000000..2aecd6b84 --- /dev/null +++ b/examples/ADGPRS/5spot/.gitignore @@ -0,0 +1,6 @@ +/5SPOT.SIM.H5 +/5SPOT.log.txt +/5SPOT.res_partition.bin +/5SPOT.solver_partition.bin +*.json +*.csv diff --git a/examples/ADGPRS/5spot/5SPOT.gprs b/examples/ADGPRS/5spot/5SPOT.gprs new file mode 100644 index 000000000..c19be768a --- /dev/null +++ b/examples/ADGPRS/5spot/5SPOT.gprs @@ -0,0 +1,16 @@ +OUTPUT + HDF5 TIME 5SPOT / +/ + +INCLUDE + ./include/body.in + +INCLUDE + ./include/wells.in +/ + +INCLUDE + ./include/tsteps.in +/ + +END diff --git a/examples/ADGPRS/5spot/include/body.in b/examples/ADGPRS/5spot/include/body.in new file mode 100644 index 000000000..fd37e6aab --- /dev/null +++ b/examples/ADGPRS/5spot/include/body.in @@ -0,0 +1,61 @@ +VERBOSE + BRIEF SILENT +/ + +MODEL + BLACK_OIL NATURAL +/ + +DIMENS + 60 60 1 +/ + +WELL_RATES_AT + STC +/ + +INCLUDE + ./include/depth.in +/ + +DX + 3600*32 / + +DY + 3600*32 / + +DZ + 3600*24 / + +INCLUDE + ./include/permx.in / + +INCLUDE + ./include/permy.in / + +INCLUDE + ./include/permz.in / + +INCLUDE + ./include/props.in +/ + +INCLUDE + ./include/props_mod.in +/ + +INCLUDE + ./include/poro.in +/ + +INCLUDE + ./include/init.in +/ + +SGAS + 0 +/ + +INCLUDE + ./include/tuning.in +/ diff --git a/examples/ADGPRS/5spot/include/compdat.in b/examples/ADGPRS/5spot/include/compdat.in new file mode 100644 index 000000000..b7082f5b7 --- /dev/null +++ b/examples/ADGPRS/5spot/include/compdat.in @@ -0,0 +1,7 @@ +COMPDAT + INJ1 39 23 1 1 OPEN * * 0.1905 3* Z/ + PROD1 6 6 1 1 OPEN * * 0.1905 3* Z/ + PROD2 55 6 1 1 OPEN * * 0.1905 3* Z/ + PROD3 6 55 1 1 OPEN * * 0.1905 3* Z/ + PROD4 55 55 1 1 OPEN * * 0.1905 3* Z/ +/ diff --git a/examples/ADGPRS/5spot/include/controls.in b/examples/ADGPRS/5spot/include/controls.in new file mode 100644 index 000000000..bfb76943d --- /dev/null +++ b/examples/ADGPRS/5spot/include/controls.in @@ -0,0 +1,14 @@ +WELLSTRE + INJ1 0 0 1/ +/ + +WCONINJE + INJ1 WATER OPEN BHP * * 230.000/ +/ + +WCONPROD + PROD1 OPEN BHP 5* 90.000/ + PROD2 OPEN BHP 5* 90.000/ + PROD3 OPEN BHP 5* 90.000/ + PROD4 OPEN BHP 5* 90.000/ +/ diff --git a/examples/ADGPRS/5spot/include/depth.in b/examples/ADGPRS/5spot/include/depth.in new file mode 100644 index 000000000..f372845d3 --- /dev/null +++ b/examples/ADGPRS/5spot/include/depth.in @@ -0,0 +1,902 @@ +DEPTH + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 + 2.62462012E+03 2.62462012E+03 2.62462012E+03 2.62462012E+03 +/ \ No newline at end of file diff --git a/examples/ADGPRS/5spot/include/init.in b/examples/ADGPRS/5spot/include/init.in new file mode 100644 index 000000000..0a0b383dd --- /dev/null +++ b/examples/ADGPRS/5spot/include/init.in @@ -0,0 +1,2708 @@ +PRESSURE + 3.70555603E+02 3.70042358E+02 3.68887482E+02 3.67408295E+02 + 3.65886902E+02 3.63971893E+02 3.62461670E+02 3.60798462E+02 + 3.57651764E+02 3.50187103E+02 3.40664276E+02 3.30201294E+02 + 3.20030884E+02 3.10600159E+02 2.97732269E+02 2.81592407E+02 + 2.48073425E+02 2.16992996E+02 2.04112946E+02 1.94154037E+02 + 1.88357422E+02 1.80107010E+02 1.71322540E+02 1.66181152E+02 + 1.61683990E+02 1.57505234E+02 1.54574127E+02 1.53616562E+02 + 1.53260696E+02 1.52966568E+02 1.52701065E+02 1.52413757E+02 + 1.52017288E+02 1.51568512E+02 1.50855209E+02 1.49825577E+02 + 1.48599808E+02 1.47573730E+02 1.47024567E+02 1.46668427E+02 + 1.46372147E+02 1.46209335E+02 1.46131958E+02 1.46045624E+02 + 1.45955185E+02 1.45851181E+02 1.45713730E+02 1.45546906E+02 + 1.45348099E+02 1.45072769E+02 1.44742416E+02 1.44431152E+02 + 1.44138199E+02 1.43756424E+02 1.43405655E+02 1.42982895E+02 + 1.42623016E+02 1.42399551E+02 1.42180069E+02 1.42026108E+02 + 3.70945068E+02 3.70572632E+02 3.69832703E+02 3.68347107E+02 + 3.66721924E+02 3.65504211E+02 3.63130035E+02 3.61395447E+02 + 3.58162292E+02 3.50506226E+02 3.40748474E+02 3.30596283E+02 + 3.20253143E+02 3.10972015E+02 2.98400574E+02 2.82975708E+02 + 2.51771683E+02 2.20186768E+02 2.05649979E+02 1.94454407E+02 + 1.87495789E+02 1.80787430E+02 1.72622910E+02 1.65675903E+02 + 1.60622726E+02 1.56716568E+02 1.54527985E+02 1.53733658E+02 + 1.53386536E+02 1.53025406E+02 1.52678558E+02 1.52361740E+02 + 1.51972641E+02 1.51537781E+02 1.50812103E+02 1.49773071E+02 + 1.48690125E+02 1.47631210E+02 1.46989014E+02 1.46794632E+02 + 1.46499771E+02 1.46243668E+02 1.46141632E+02 1.46054779E+02 + 1.45972870E+02 1.45870621E+02 1.45743362E+02 1.45534851E+02 + 1.45246887E+02 1.44941376E+02 1.44677292E+02 1.44378830E+02 + 1.44056015E+02 1.43699036E+02 1.43286636E+02 1.42865891E+02 + 1.42567551E+02 1.42340775E+02 1.42031418E+02 1.41873825E+02 + 3.71466522E+02 3.71340332E+02 3.71034576E+02 3.70286041E+02 + 3.69551849E+02 3.68003204E+02 3.64857300E+02 3.62262878E+02 + 3.59503357E+02 3.51640350E+02 3.39900452E+02 3.31233246E+02 + 3.22706787E+02 3.11725281E+02 3.00644592E+02 2.79898834E+02 + 2.51677246E+02 2.29663010E+02 2.09403625E+02 1.94190033E+02 + 1.86378494E+02 1.79415863E+02 1.71617096E+02 1.63953156E+02 + 1.59187576E+02 1.56232559E+02 1.54733826E+02 1.53919403E+02 + 1.53521072E+02 1.53102982E+02 1.52684372E+02 1.52337082E+02 + 1.52026291E+02 1.51590363E+02 1.50684357E+02 1.49584167E+02 + 1.48572632E+02 1.47670578E+02 1.47030319E+02 1.46839279E+02 + 1.46600510E+02 1.46319138E+02 1.46175217E+02 1.46095978E+02 + 1.46011108E+02 1.45915329E+02 1.45802582E+02 1.45509277E+02 + 1.45076279E+02 1.44778870E+02 1.44524094E+02 1.44216721E+02 + 1.43929382E+02 1.43624649E+02 1.43113785E+02 1.42623520E+02 + 1.42309769E+02 1.41929153E+02 1.41492798E+02 1.41244812E+02 + 3.72402679E+02 3.72308044E+02 3.72141205E+02 3.72726166E+02 + 3.72345978E+02 3.70525360E+02 3.67684784E+02 3.64327362E+02 + 3.60518799E+02 3.54348175E+02 3.42241791E+02 3.32104034E+02 + 3.21444458E+02 3.09849487E+02 3.00077911E+02 2.77633118E+02 + 2.52064026E+02 2.34747116E+02 2.15182388E+02 1.96583893E+02 + 1.84901886E+02 1.75371155E+02 1.67243729E+02 1.60987610E+02 + 1.58086411E+02 1.56065720E+02 1.54920166E+02 1.54241714E+02 + 1.53662399E+02 1.53152466E+02 1.52707367E+02 1.52367599E+02 + 1.52075241E+02 1.51778839E+02 1.50795059E+02 1.49307541E+02 + 1.48352234E+02 1.47857666E+02 1.47371857E+02 1.46991943E+02 + 1.46641296E+02 1.46355270E+02 1.46213821E+02 1.46143082E+02 + 1.46060471E+02 1.45966507E+02 1.45842438E+02 1.45577805E+02 + 1.45047211E+02 1.44598114E+02 1.44337296E+02 1.44074203E+02 + 1.43771133E+02 1.43390686E+02 1.42663345E+02 1.42205032E+02 + 1.41814499E+02 1.41253082E+02 1.40787216E+02 1.40412048E+02 + 3.73743713E+02 3.73795654E+02 3.74863586E+02 3.75615723E+02 + 3.74976440E+02 3.72085693E+02 3.69831421E+02 3.66994904E+02 + 3.63247467E+02 3.58271759E+02 3.46574005E+02 3.31980713E+02 + 3.20190155E+02 3.08920135E+02 2.96876465E+02 2.75719330E+02 + 2.49139023E+02 2.31137817E+02 2.13798462E+02 1.96809677E+02 + 1.82650101E+02 1.70562393E+02 1.64907761E+02 1.60457001E+02 + 1.57666748E+02 1.55865799E+02 1.54892273E+02 1.54419601E+02 + 1.53867691E+02 1.53222198E+02 1.52807022E+02 1.52503235E+02 + 1.52153458E+02 1.51713760E+02 1.50672836E+02 1.49216705E+02 + 1.48261261E+02 1.47895981E+02 1.47650757E+02 1.47265228E+02 + 1.46820435E+02 1.46456482E+02 1.46264404E+02 1.46202301E+02 + 1.46121399E+02 1.46034317E+02 1.45904709E+02 1.45601151E+02 + 1.45054398E+02 1.44507599E+02 1.44174789E+02 1.43853012E+02 + 1.43513840E+02 1.42841202E+02 1.41944412E+02 1.41582733E+02 + 1.41045914E+02 1.40323578E+02 1.39844559E+02 1.39674133E+02 + 3.75094971E+02 3.76179321E+02 3.78372406E+02 3.79521423E+02 + 3.78703064E+02 3.75923187E+02 3.71159271E+02 3.67887817E+02 + 3.64250183E+02 3.60666351E+02 3.52672302E+02 3.35763855E+02 + 3.18807800E+02 3.02761993E+02 2.88224152E+02 2.74242584E+02 + 2.52748154E+02 2.28867584E+02 2.07518433E+02 1.94258743E+02 + 1.84003769E+02 1.72201355E+02 1.63369293E+02 1.59231979E+02 + 1.57284637E+02 1.55686172E+02 1.54891327E+02 1.54483231E+02 + 1.53949936E+02 1.53339737E+02 1.52912720E+02 1.52633041E+02 + 1.52145432E+02 1.51624054E+02 1.50665527E+02 1.49329697E+02 + 1.48462112E+02 1.47931885E+02 1.47684174E+02 1.47407593E+02 + 1.47016098E+02 1.46593506E+02 1.46337173E+02 1.46280518E+02 + 1.46205963E+02 1.46110153E+02 1.45992081E+02 1.45643539E+02 + 1.45151276E+02 1.44549332E+02 1.43959183E+02 1.43526108E+02 + 1.43136673E+02 1.42115784E+02 1.41304169E+02 1.40966156E+02 + 1.40238525E+02 1.39229111E+02 1.38758163E+02 1.38893692E+02 + 3.75981079E+02 3.77153656E+02 3.80017609E+02 3.83540771E+02 + 3.85664093E+02 3.86778625E+02 3.74121826E+02 3.69216827E+02 + 3.65461182E+02 3.60890106E+02 3.51672668E+02 3.33969482E+02 + 3.15139771E+02 2.97218323E+02 2.83654541E+02 2.70923431E+02 + 2.52298386E+02 2.29821106E+02 2.07622025E+02 1.94373215E+02 + 1.84392517E+02 1.72508926E+02 1.63534790E+02 1.58687866E+02 + 1.56753815E+02 1.55594620E+02 1.54888824E+02 1.54411591E+02 + 1.53895981E+02 1.53395813E+02 1.52998383E+02 1.52703171E+02 + 1.52228439E+02 1.51537491E+02 1.50666687E+02 1.49680664E+02 + 1.48760132E+02 1.48001282E+02 1.47707565E+02 1.47490097E+02 + 1.47209747E+02 1.46833923E+02 1.46493057E+02 1.46367737E+02 + 1.46297638E+02 1.46199905E+02 1.46079193E+02 1.45745789E+02 + 1.45271942E+02 1.44600586E+02 1.43747818E+02 1.42977402E+02 + 1.42110306E+02 1.41162582E+02 1.40738831E+02 1.40290375E+02 + 1.39157959E+02 1.38168091E+02 1.37950958E+02 1.38047424E+02 + 3.75816681E+02 3.76596558E+02 3.79567200E+02 3.84280579E+02 + 3.91675171E+02 4.13114136E+02 3.77830994E+02 3.70379272E+02 + 3.65878235E+02 3.60875397E+02 3.49671570E+02 3.31103882E+02 + 3.12683685E+02 2.95096222E+02 2.81453094E+02 2.67839142E+02 + 2.47326111E+02 2.28248856E+02 2.11006805E+02 1.96312469E+02 + 1.85888443E+02 1.72631775E+02 1.63204590E+02 1.58300430E+02 + 1.56485077E+02 1.55551987E+02 1.54854294E+02 1.54290192E+02 + 1.53792496E+02 1.53330231E+02 1.52976089E+02 1.52601379E+02 + 1.52053314E+02 1.51321655E+02 1.50682312E+02 1.50098648E+02 + 1.49351685E+02 1.48485596E+02 1.47799316E+02 1.47538528E+02 + 1.47307129E+02 1.47026947E+02 1.46750580E+02 1.46528809E+02 + 1.46391479E+02 1.46266327E+02 1.46141617E+02 1.45877792E+02 + 1.45434372E+02 1.44704483E+02 1.43480713E+02 1.42011032E+02 + 1.40857697E+02 1.40116684E+02 1.39626129E+02 1.38979034E+02 + 1.37870956E+02 1.37396027E+02 1.37287262E+02 1.36982605E+02 + 3.74190735E+02 3.74609650E+02 3.75697113E+02 3.77560822E+02 + 3.79069244E+02 3.77857178E+02 3.72556305E+02 3.69373962E+02 + 3.65669098E+02 3.60718597E+02 3.49666748E+02 3.28043274E+02 + 3.08105469E+02 2.95068268E+02 2.80006195E+02 2.62867371E+02 + 2.45331482E+02 2.29739883E+02 2.16163574E+02 2.00767197E+02 + 1.85818115E+02 1.72356613E+02 1.63675354E+02 1.59315369E+02 + 1.56335922E+02 1.55384537E+02 1.54645462E+02 1.54115204E+02 + 1.53642700E+02 1.53169281E+02 1.52810837E+02 1.52369476E+02 + 1.51810379E+02 1.51194595E+02 1.50701553E+02 1.50224945E+02 + 1.49662292E+02 1.48990707E+02 1.48110901E+02 1.47731979E+02 + 1.47442398E+02 1.47188934E+02 1.46969360E+02 1.46739014E+02 + 1.46496902E+02 1.46328827E+02 1.46181610E+02 1.45910339E+02 + 1.45543716E+02 1.44862854E+02 1.43421631E+02 1.41499924E+02 + 1.40256760E+02 1.39304901E+02 1.38664963E+02 1.37755905E+02 + 1.36805359E+02 1.36369904E+02 1.36192322E+02 1.35879791E+02 + 3.71751953E+02 3.72352905E+02 3.72716522E+02 3.72452026E+02 + 3.72445679E+02 3.71641235E+02 3.70073669E+02 3.67800995E+02 + 3.64642700E+02 3.59704803E+02 3.50362732E+02 3.29279999E+02 + 3.07842407E+02 2.93475159E+02 2.78459320E+02 2.62126129E+02 + 2.44540115E+02 2.30067184E+02 2.16951462E+02 2.00886612E+02 + 1.83541031E+02 1.71004669E+02 1.63958313E+02 1.60318527E+02 + 1.57068909E+02 1.55167786E+02 1.54417755E+02 1.53951508E+02 + 1.53320099E+02 1.52804703E+02 1.52469299E+02 1.52075439E+02 + 1.51635330E+02 1.51147476E+02 1.50651718E+02 1.50161392E+02 + 1.49698090E+02 1.49201721E+02 1.48415085E+02 1.48037567E+02 + 1.47733795E+02 1.47442383E+02 1.47206390E+02 1.47015121E+02 + 1.46701248E+02 1.46417343E+02 1.46178772E+02 1.45958572E+02 + 1.45689667E+02 1.45100281E+02 1.44143112E+02 1.41977768E+02 + 1.40051514E+02 1.38746750E+02 1.36506012E+02 1.35568283E+02 + 1.35162155E+02 1.35047714E+02 1.35251221E+02 1.35310455E+02 + 3.68730438E+02 3.68682678E+02 3.68846802E+02 3.69452576E+02 + 3.68622650E+02 3.68255890E+02 3.67111237E+02 3.64961853E+02 + 3.62494385E+02 3.59157043E+02 3.49431396E+02 3.29790222E+02 + 3.10105042E+02 2.96928772E+02 2.79547150E+02 2.61478180E+02 + 2.48080765E+02 2.30702454E+02 2.11652847E+02 1.94140564E+02 + 1.78427231E+02 1.69297379E+02 1.65051468E+02 1.60863541E+02 + 1.57090759E+02 1.55001083E+02 1.54171951E+02 1.53503357E+02 + 1.52789871E+02 1.52459320E+02 1.52128586E+02 1.51747955E+02 + 1.51408630E+02 1.50972931E+02 1.50544601E+02 1.50148392E+02 + 1.49725937E+02 1.49354568E+02 1.48776825E+02 1.48233292E+02 + 1.47995392E+02 1.47759766E+02 1.47569565E+02 1.47430344E+02 + 1.47157883E+02 1.46748672E+02 1.46357330E+02 1.46135117E+02 + 1.45751053E+02 1.45300385E+02 1.44580612E+02 1.42704788E+02 + 1.40062073E+02 1.37259384E+02 1.31538528E+02 1.30601547E+02 + 1.32456512E+02 1.33790833E+02 1.34495117E+02 1.34892776E+02 + 3.63907166E+02 3.64492004E+02 3.64054596E+02 3.65042236E+02 + 3.64760284E+02 3.64205200E+02 3.63662598E+02 3.62604523E+02 + 3.59950409E+02 3.55921997E+02 3.46144104E+02 3.30206207E+02 + 3.14163666E+02 2.96209534E+02 2.76337128E+02 2.61926331E+02 + 2.49759232E+02 2.32970078E+02 2.07980209E+02 1.89161957E+02 + 1.79534332E+02 1.70167953E+02 1.63966278E+02 1.59487228E+02 + 1.56291199E+02 1.54624786E+02 1.53863647E+02 1.53116455E+02 + 1.52473877E+02 1.52202286E+02 1.51852341E+02 1.51509415E+02 + 1.51181763E+02 1.50797714E+02 1.50447144E+02 1.50113861E+02 + 1.49762482E+02 1.49412262E+02 1.49061493E+02 1.48571487E+02 + 1.48185211E+02 1.48024872E+02 1.47908844E+02 1.47794067E+02 + 1.47687531E+02 1.47383240E+02 1.46847458E+02 1.46421494E+02 + 1.46004471E+02 1.45414764E+02 1.44731018E+02 1.43534698E+02 + 1.41018417E+02 1.33465866E+02 6.93450165E+01 1.20767624E+02 + 1.29985779E+02 1.33043518E+02 1.34175858E+02 1.34725388E+02 + 3.56053497E+02 3.58435577E+02 3.58583801E+02 3.59005035E+02 + 3.59600159E+02 3.59585724E+02 3.60049438E+02 3.58956604E+02 + 3.55773499E+02 3.51042236E+02 3.41572052E+02 3.27822784E+02 + 3.12736053E+02 2.92049561E+02 2.74117645E+02 2.61555908E+02 + 2.47778717E+02 2.27200836E+02 2.01717209E+02 1.87394730E+02 + 1.80346924E+02 1.71415085E+02 1.63234955E+02 1.57969666E+02 + 1.55175919E+02 1.54004471E+02 1.53499100E+02 1.52771973E+02 + 1.52167389E+02 1.51879288E+02 1.51499466E+02 1.51226074E+02 + 1.50966354E+02 1.50668457E+02 1.50380875E+02 1.50094376E+02 + 1.49775421E+02 1.49444290E+02 1.49112915E+02 1.48768463E+02 + 1.48516113E+02 1.48358810E+02 1.48214752E+02 1.48085709E+02 + 1.47936829E+02 1.47724869E+02 1.47376678E+02 1.46871780E+02 + 1.46393463E+02 1.45850174E+02 1.45263916E+02 1.44377899E+02 + 1.42432465E+02 1.36138046E+02 1.23742531E+02 1.28111694E+02 + 1.33025635E+02 1.34162750E+02 1.34910690E+02 1.35283295E+02 + 3.49089050E+02 3.50965759E+02 3.52630219E+02 3.53154694E+02 + 3.54634979E+02 3.55539581E+02 3.54705597E+02 3.53026489E+02 + 3.48912048E+02 3.43517822E+02 3.35125885E+02 3.18006256E+02 + 2.96636108E+02 2.77791107E+02 2.66970764E+02 2.56264038E+02 + 2.44469254E+02 2.23098740E+02 1.98158066E+02 1.84091049E+02 + 1.77800552E+02 1.70006836E+02 1.61381485E+02 1.56032532E+02 + 1.54300003E+02 1.53519501E+02 1.52956772E+02 1.52118454E+02 + 1.51617844E+02 1.51359955E+02 1.51141159E+02 1.51008163E+02 + 1.50813919E+02 1.50537003E+02 1.50304810E+02 1.50075165E+02 + 1.49788315E+02 1.49466675E+02 1.49159958E+02 1.48959473E+02 + 1.48802383E+02 1.48662949E+02 1.48500916E+02 1.48344818E+02 + 1.48170624E+02 1.47946686E+02 1.47663116E+02 1.47314850E+02 + 1.46847260E+02 1.46311584E+02 1.45818573E+02 1.45317154E+02 + 1.44218933E+02 1.41621841E+02 1.36871277E+02 1.36276810E+02 + 1.37052734E+02 1.36797348E+02 1.37143188E+02 1.37281693E+02 + 3.43466583E+02 3.44037506E+02 3.45035248E+02 3.46011414E+02 + 3.49615997E+02 3.50642090E+02 3.48336243E+02 3.43040161E+02 + 3.38001617E+02 3.31792786E+02 3.17549011E+02 2.93393799E+02 + 2.75100647E+02 2.65834381E+02 2.58414337E+02 2.48328186E+02 + 2.34227097E+02 2.13193100E+02 1.92920181E+02 1.79638580E+02 + 1.73332260E+02 1.67209885E+02 1.60175507E+02 1.55275772E+02 + 1.53446701E+02 1.52764420E+02 1.52081070E+02 1.51274658E+02 + 1.51010025E+02 1.50888550E+02 1.50857178E+02 1.50775635E+02 + 1.50597458E+02 1.50329529E+02 1.50208923E+02 1.50010025E+02 + 1.49757462E+02 1.49530884E+02 1.49314575E+02 1.49173325E+02 + 1.49046066E+02 1.48892914E+02 1.48757263E+02 1.48607117E+02 + 1.48427216E+02 1.48206451E+02 1.47942566E+02 1.47649872E+02 + 1.47350082E+02 1.46944107E+02 1.46496201E+02 1.46141815E+02 + 1.45601395E+02 1.44387146E+02 1.42679657E+02 1.41889587E+02 + 1.40968048E+02 1.40032196E+02 1.39729904E+02 1.39783600E+02 + 3.29716980E+02 3.31672119E+02 3.31634430E+02 3.31646942E+02 + 3.34055756E+02 3.34375153E+02 3.33050964E+02 3.27174286E+02 + 3.23609924E+02 3.15317078E+02 2.99112640E+02 2.79589294E+02 + 2.66392487E+02 2.57615021E+02 2.49399368E+02 2.41152924E+02 + 2.24999725E+02 2.03465530E+02 1.86835114E+02 1.75134964E+02 + 1.69015442E+02 1.62783356E+02 1.56744812E+02 1.53152420E+02 + 1.51926102E+02 1.51599274E+02 1.50983719E+02 1.50377426E+02 + 1.50422180E+02 1.50340836E+02 1.50251297E+02 1.50218842E+02 + 1.50129120E+02 1.50044525E+02 1.49996216E+02 1.49876053E+02 + 1.49749268E+02 1.49631546E+02 1.49524033E+02 1.49376419E+02 + 1.49283493E+02 1.49136978E+02 1.49019852E+02 1.48883270E+02 + 1.48714783E+02 1.48500885E+02 1.48240005E+02 1.47981796E+02 + 1.47718994E+02 1.47506027E+02 1.47210861E+02 1.46881256E+02 + 1.46713364E+02 1.46187927E+02 1.45574600E+02 1.45496857E+02 + 1.44742645E+02 1.43591476E+02 1.41742325E+02 1.41719971E+02 + 3.12639832E+02 3.12676422E+02 3.12553711E+02 3.14565155E+02 + 3.12437653E+02 3.12247375E+02 3.14746735E+02 3.12991821E+02 + 3.09103943E+02 3.01397980E+02 2.85387054E+02 2.68497528E+02 + 2.58427826E+02 2.51760178E+02 2.43124252E+02 2.33035416E+02 + 2.14950943E+02 1.93961456E+02 1.78025726E+02 1.67627029E+02 + 1.62385239E+02 1.57237961E+02 1.54010376E+02 1.51434998E+02 + 1.50411728E+02 1.50171295E+02 1.49742050E+02 1.49557968E+02 + 1.49694931E+02 1.49711884E+02 1.49658569E+02 1.49662109E+02 + 1.49676239E+02 1.49773361E+02 1.49812088E+02 1.49836823E+02 + 1.49815918E+02 1.49770721E+02 1.49706451E+02 1.49599655E+02 + 1.49500519E+02 1.49392853E+02 1.49293640E+02 1.49184082E+02 + 1.49041321E+02 1.48835968E+02 1.48574188E+02 1.48310944E+02 + 1.48146515E+02 1.47988251E+02 1.47800430E+02 1.47524979E+02 + 1.47375504E+02 1.47268906E+02 1.47271484E+02 1.47094635E+02 + 1.46736603E+02 1.46082535E+02 1.44578171E+02 1.44021759E+02 + 2.97697601E+02 2.97032654E+02 2.97333405E+02 2.98892334E+02 + 2.98798767E+02 2.99145721E+02 3.01477844E+02 3.01041718E+02 + 2.97334595E+02 2.86734375E+02 2.71010223E+02 2.60179810E+02 + 2.51803864E+02 2.42902756E+02 2.30421265E+02 2.17814697E+02 + 1.97348679E+02 1.80223495E+02 1.69656662E+02 1.62559998E+02 + 1.58195526E+02 1.55147171E+02 1.52679825E+02 1.50261536E+02 + 1.49663284E+02 1.49353409E+02 1.49231064E+02 1.49264130E+02 + 1.49281662E+02 1.49364944E+02 1.49453674E+02 1.49486115E+02 + 1.49552307E+02 1.49648178E+02 1.49753525E+02 1.49840591E+02 + 1.49866959E+02 1.49877396E+02 1.49870178E+02 1.49825790E+02 + 1.49740540E+02 1.49672409E+02 1.49587555E+02 1.49511719E+02 + 1.49423004E+02 1.49286713E+02 1.49083328E+02 1.48939377E+02 + 1.48808365E+02 1.48615967E+02 1.48509689E+02 1.48276688E+02 + 1.48035889E+02 1.47963562E+02 1.48104813E+02 1.48016266E+02 + 1.47822998E+02 1.47338791E+02 1.46905304E+02 1.46461517E+02 + 2.86266113E+02 2.86189301E+02 2.88743896E+02 2.89241669E+02 + 2.90622711E+02 2.91425446E+02 2.91162170E+02 2.88930481E+02 + 2.81903625E+02 2.68189606E+02 2.57048492E+02 2.49879517E+02 + 2.42409012E+02 2.25571152E+02 2.12986053E+02 2.02027618E+02 + 1.85274078E+02 1.74493805E+02 1.65395691E+02 1.59855835E+02 + 1.56314346E+02 1.53771393E+02 1.51354004E+02 1.49469925E+02 + 1.49210693E+02 1.49051010E+02 1.49059235E+02 1.49158234E+02 + 1.49203918E+02 1.49246094E+02 1.49323044E+02 1.49395645E+02 + 1.49484528E+02 1.49599960E+02 1.49745010E+02 1.49871719E+02 + 1.49926010E+02 1.49960999E+02 1.49978607E+02 1.49972916E+02 + 1.49948029E+02 1.49926605E+02 1.49881165E+02 1.49843719E+02 + 1.49813400E+02 1.49803635E+02 1.49760818E+02 1.49732727E+02 + 1.49587433E+02 1.49372192E+02 1.49190033E+02 1.49036392E+02 + 1.48745163E+02 1.48694260E+02 1.48691025E+02 1.48653259E+02 + 1.48591400E+02 1.48449234E+02 1.48395432E+02 1.48322189E+02 + 2.75587311E+02 2.75935730E+02 2.79160004E+02 2.82425659E+02 + 2.83334381E+02 2.82729034E+02 2.79296844E+02 2.73100464E+02 + 2.59266571E+02 2.48289291E+02 2.44494049E+02 2.37231812E+02 + 2.23112549E+02 2.04425201E+02 1.97867157E+02 1.86583511E+02 + 1.74881073E+02 1.67680573E+02 1.62030914E+02 1.57617493E+02 + 1.53793472E+02 1.51429764E+02 1.49562454E+02 1.48846115E+02 + 1.48725281E+02 1.48722565E+02 1.48802750E+02 1.48908997E+02 + 1.49056778E+02 1.49173325E+02 1.49245468E+02 1.49323502E+02 + 1.49432602E+02 1.49600784E+02 1.49798355E+02 1.49923340E+02 + 1.50000198E+02 1.50059906E+02 1.50104630E+02 1.50133530E+02 + 1.50149597E+02 1.50159515E+02 1.50159485E+02 1.50161346E+02 + 1.50174255E+02 1.50219437E+02 1.50281204E+02 1.50240906E+02 + 1.50124893E+02 1.49981567E+02 1.49755692E+02 1.49676834E+02 + 1.49453659E+02 1.49312119E+02 1.49131302E+02 1.49191132E+02 + 1.49245636E+02 1.49348587E+02 1.49250641E+02 1.49449295E+02 + 2.52350845E+02 2.55308151E+02 2.55047440E+02 2.62092590E+02 + 2.62367249E+02 2.61453125E+02 2.58533936E+02 2.48667603E+02 + 2.37105118E+02 2.30678726E+02 2.26479721E+02 2.17540390E+02 + 2.00845657E+02 1.89476929E+02 1.81673737E+02 1.72455826E+02 + 1.67073975E+02 1.62358047E+02 1.59544312E+02 1.54401581E+02 + 1.50908279E+02 1.49271210E+02 1.48373077E+02 1.48272476E+02 + 1.48310928E+02 1.48416962E+02 1.48575317E+02 1.48650024E+02 + 1.48819824E+02 1.49035660E+02 1.49168015E+02 1.49267670E+02 + 1.49420319E+02 1.49645477E+02 1.49845825E+02 1.49993942E+02 + 1.50086578E+02 1.50168564E+02 1.50240845E+02 1.50302460E+02 + 1.50352844E+02 1.50394394E+02 1.50428406E+02 1.50460220E+02 + 1.50495270E+02 1.50539871E+02 1.50581543E+02 1.50575485E+02 + 1.50514511E+02 1.50417160E+02 1.50222626E+02 1.50237793E+02 + 1.50100327E+02 1.49911194E+02 1.49767639E+02 1.49858841E+02 + 1.50067108E+02 1.50225494E+02 1.50138504E+02 1.50146103E+02 + 2.18398300E+02 2.21526550E+02 2.22149017E+02 2.24857895E+02 + 2.27308472E+02 2.33338318E+02 2.29038773E+02 2.22301376E+02 + 2.18071655E+02 2.14059906E+02 2.03519852E+02 1.93068192E+02 + 1.80758270E+02 1.75877777E+02 1.71613342E+02 1.64810394E+02 + 1.60995926E+02 1.57949921E+02 1.53519943E+02 1.49502975E+02 + 1.48503174E+02 1.47708466E+02 1.47474701E+02 1.47649384E+02 + 1.48002289E+02 1.48219940E+02 1.48357544E+02 1.48517517E+02 + 1.48662094E+02 1.48879807E+02 1.49067764E+02 1.49255997E+02 + 1.49448700E+02 1.49661606E+02 1.49888718E+02 1.50065063E+02 + 1.50178680E+02 1.50282196E+02 1.50383301E+02 1.50475922E+02 + 1.50557938E+02 1.50629532E+02 1.50692017E+02 1.50748749E+02 + 1.50799225E+02 1.50855209E+02 1.50905640E+02 1.50931549E+02 + 1.50934677E+02 1.50929855E+02 1.50926270E+02 1.50894562E+02 + 1.50874069E+02 1.50704987E+02 1.50506180E+02 1.50597031E+02 + 1.50701996E+02 1.50707458E+02 1.50715057E+02 1.50560135E+02 + 1.95623337E+02 1.98521561E+02 2.00846558E+02 1.98814606E+02 + 2.01431931E+02 2.05169403E+02 2.04137222E+02 2.03920624E+02 + 1.99647156E+02 1.93717072E+02 1.83519775E+02 1.74636337E+02 + 1.69408615E+02 1.66570450E+02 1.62996857E+02 1.58357178E+02 + 1.55652039E+02 1.51670532E+02 1.47986404E+02 1.46994675E+02 + 1.46404144E+02 1.46372681E+02 1.46799988E+02 1.47142014E+02 + 1.47580032E+02 1.48030380E+02 1.48168381E+02 1.48320694E+02 + 1.48454269E+02 1.48675491E+02 1.48967346E+02 1.49275864E+02 + 1.49497391E+02 1.49711548E+02 1.49920258E+02 1.50115570E+02 + 1.50256378E+02 1.50395477E+02 1.50528259E+02 1.50652100E+02 + 1.50764908E+02 1.50866440E+02 1.50956528E+02 1.51037399E+02 + 1.51109940E+02 1.51170181E+02 1.51248566E+02 1.51305344E+02 + 1.51356216E+02 1.51433350E+02 1.51579803E+02 1.51544586E+02 + 1.51575607E+02 1.51588943E+02 1.51408813E+02 1.51133362E+02 + 1.51133911E+02 1.51209930E+02 1.51246536E+02 1.51227097E+02 + 1.83770981E+02 1.88663559E+02 1.88026718E+02 1.88051300E+02 + 1.88355682E+02 1.86345688E+02 1.89307495E+02 1.89132782E+02 + 1.83417511E+02 1.75002014E+02 1.70285736E+02 1.65638504E+02 + 1.62960648E+02 1.60673294E+02 1.56480606E+02 1.53525009E+02 + 1.50767975E+02 1.47432144E+02 1.46129959E+02 1.45647202E+02 + 1.45322998E+02 1.45561401E+02 1.46017014E+02 1.46743286E+02 + 1.47195435E+02 1.47676178E+02 1.47982147E+02 1.48128143E+02 + 1.48277069E+02 1.48497284E+02 1.48826950E+02 1.49213013E+02 + 1.49525391E+02 1.49739029E+02 1.49941162E+02 1.50144135E+02 + 1.50331482E+02 1.50508560E+02 1.50675385E+02 1.50831619E+02 + 1.50975891E+02 1.51107315E+02 1.51226151E+02 1.51332275E+02 + 1.51427734E+02 1.51494583E+02 1.51608505E+02 1.51680099E+02 + 1.51745911E+02 1.51821014E+02 1.51899017E+02 1.51947693E+02 + 1.52052887E+02 1.52171799E+02 1.52277618E+02 1.51992981E+02 + 1.51831741E+02 1.51801376E+02 1.51786041E+02 1.51808090E+02 + 1.72936111E+02 1.76366653E+02 1.77074020E+02 1.77479614E+02 + 1.76806915E+02 1.76145691E+02 1.74561035E+02 1.70733032E+02 + 1.67201370E+02 1.62421265E+02 1.60015274E+02 1.58162415E+02 + 1.56857269E+02 1.54291519E+02 1.50856644E+02 1.48824966E+02 + 1.46793961E+02 1.45121750E+02 1.44650589E+02 1.43887070E+02 + 1.44201096E+02 1.44883102E+02 1.45215454E+02 1.45857803E+02 + 1.46454437E+02 1.46906799E+02 1.47431839E+02 1.47826279E+02 + 1.48173309E+02 1.48425034E+02 1.48693451E+02 1.49080307E+02 + 1.49463852E+02 1.49703278E+02 1.49944931E+02 1.50182434E+02 + 1.50408966E+02 1.50623215E+02 1.50825974E+02 1.51016190E+02 + 1.51192932E+02 1.51354141E+02 1.51500565E+02 1.51631683E+02 + 1.51757828E+02 1.51898346E+02 1.51994415E+02 1.52056442E+02 + 1.52121841E+02 1.52201370E+02 1.52304550E+02 1.52423035E+02 + 1.52613953E+02 1.52693878E+02 1.52714844E+02 1.52738220E+02 + 1.52640244E+02 1.52529404E+02 1.52450119E+02 1.52440002E+02 + 1.64080322E+02 1.64939392E+02 1.66907303E+02 1.68188889E+02 + 1.67158203E+02 1.66146927E+02 1.62785934E+02 1.59258484E+02 + 1.57363297E+02 1.55963165E+02 1.53317062E+02 1.51689407E+02 + 1.51310852E+02 1.49652313E+02 1.47140854E+02 1.45904816E+02 + 1.44475845E+02 1.43331436E+02 1.42716492E+02 1.42799438E+02 + 1.43140015E+02 1.43793671E+02 1.44388504E+02 1.44897293E+02 + 1.45563721E+02 1.46086441E+02 1.46734589E+02 1.47466751E+02 + 1.47975250E+02 1.48338882E+02 1.48653809E+02 1.48988266E+02 + 1.49347809E+02 1.49656250E+02 1.49946625E+02 1.50224487E+02 + 1.50489792E+02 1.50742050E+02 1.50981705E+02 1.51206802E+02 + 1.51417786E+02 1.51611313E+02 1.51782944E+02 1.51932022E+02 + 1.52119843E+02 1.52313004E+02 1.52383942E+02 1.52425766E+02 + 1.52478973E+02 1.52568329E+02 1.52707474E+02 1.52876511E+02 + 1.53071014E+02 1.53223923E+02 1.53282944E+02 1.53326996E+02 + 1.53365723E+02 1.53347733E+02 1.53189453E+02 1.53158432E+02 + 1.58320831E+02 1.58813583E+02 1.60712723E+02 1.61049255E+02 + 1.60369385E+02 1.59599777E+02 1.57237854E+02 1.54773575E+02 + 1.53164902E+02 1.51727051E+02 1.49228195E+02 1.48178101E+02 + 1.47721985E+02 1.46231827E+02 1.43602997E+02 1.42680038E+02 + 1.42046188E+02 1.41916550E+02 1.41955719E+02 1.42231689E+02 + 1.42475449E+02 1.42929871E+02 1.43554474E+02 1.44143219E+02 + 1.44854050E+02 1.45562012E+02 1.46415894E+02 1.47246201E+02 + 1.47735489E+02 1.48148163E+02 1.48535553E+02 1.48906403E+02 + 1.49273453E+02 1.49620926E+02 1.49953064E+02 1.50270615E+02 + 1.50574677E+02 1.50865631E+02 1.51142776E+02 1.51405273E+02 + 1.51654282E+02 1.51885178E+02 1.52093536E+02 1.52331345E+02 + 1.52548874E+02 1.52702423E+02 1.52799332E+02 1.52881104E+02 + 1.52965149E+02 1.53005020E+02 1.53116379E+02 1.53262772E+02 + 1.53382019E+02 1.53554474E+02 1.53788605E+02 1.53864288E+02 + 1.53872025E+02 1.53850906E+02 1.53776993E+02 1.53681580E+02 + 1.55652161E+02 1.55395889E+02 1.56493256E+02 1.56228851E+02 + 1.55551178E+02 1.53856384E+02 1.52037292E+02 1.50938004E+02 + 1.50125641E+02 1.48097458E+02 1.46353104E+02 1.45545761E+02 + 1.44691956E+02 1.41841568E+02 1.41317520E+02 1.41181244E+02 + 1.41311081E+02 1.41482956E+02 1.41658722E+02 1.41783386E+02 + 1.41938629E+02 1.42339752E+02 1.42942871E+02 1.43565918E+02 + 1.44544571E+02 1.45319565E+02 1.46049774E+02 1.46841293E+02 + 1.47503708E+02 1.47995514E+02 1.48418671E+02 1.48819244E+02 + 1.49211945E+02 1.49594559E+02 1.49964417E+02 1.50321075E+02 + 1.50664749E+02 1.50994659E+02 1.51310349E+02 1.51612656E+02 + 1.51903763E+02 1.52184998E+02 1.52471222E+02 1.52768616E+02 + 1.52970230E+02 1.53116852E+02 1.53237045E+02 1.53384445E+02 + 1.53485916E+02 1.53489090E+02 1.53593231E+02 1.53674225E+02 + 1.53736053E+02 1.53957626E+02 1.54243591E+02 1.54342834E+02 + 1.54288254E+02 1.54284500E+02 1.54287201E+02 1.54367386E+02 + 1.54219360E+02 1.53602005E+02 1.52621017E+02 1.51959518E+02 + 1.50470322E+02 1.48168350E+02 1.46808548E+02 1.46442123E+02 + 1.45273376E+02 1.44351364E+02 1.43662308E+02 1.42794037E+02 + 1.40782883E+02 1.39767212E+02 1.40485229E+02 1.40823364E+02 + 1.40948242E+02 1.41127579E+02 1.41330643E+02 1.41504868E+02 + 1.41699142E+02 1.42018677E+02 1.42552078E+02 1.43061478E+02 + 1.44024765E+02 1.45042389E+02 1.45738541E+02 1.46462555E+02 + 1.47257233E+02 1.47892487E+02 1.48310486E+02 1.48730270E+02 + 1.49153320E+02 1.49571411E+02 1.49978592E+02 1.50375412E+02 + 1.50760071E+02 1.51130325E+02 1.51484726E+02 1.51825302E+02 + 1.52160065E+02 1.52500366E+02 1.52823700E+02 1.53129517E+02 + 1.53366364E+02 1.53552109E+02 1.53689789E+02 1.53824005E+02 + 1.53915131E+02 1.54107895E+02 1.54217010E+02 1.54230667E+02 + 1.54355606E+02 1.54636703E+02 1.54920105E+02 1.55057190E+02 + 1.55273636E+02 1.55340225E+02 1.55516541E+02 1.55815048E+02 + 1.52058746E+02 1.50708633E+02 1.48160934E+02 1.46457321E+02 + 1.44995087E+02 1.43995743E+02 1.43430801E+02 1.42658752E+02 + 1.41938156E+02 1.41171204E+02 1.40682617E+02 1.40113464E+02 + 1.38040878E+02 1.37779816E+02 1.38605377E+02 1.39555481E+02 + 1.40161179E+02 1.40663712E+02 1.40759750E+02 1.40992218E+02 + 1.41256866E+02 1.41745178E+02 1.42280853E+02 1.42770050E+02 + 1.43375305E+02 1.44440369E+02 1.45347809E+02 1.46150650E+02 + 1.47047668E+02 1.47742371E+02 1.48190460E+02 1.48630020E+02 + 1.49090088E+02 1.49550674E+02 1.49995346E+02 1.50434357E+02 + 1.50861771E+02 1.51273697E+02 1.51666626E+02 1.52039276E+02 + 1.52419144E+02 1.52829269E+02 1.53211258E+02 1.53554077E+02 + 1.53807465E+02 1.54039917E+02 1.54193893E+02 1.54344971E+02 + 1.54624557E+02 1.54997040E+02 1.55084686E+02 1.54964630E+02 + 1.55199417E+02 1.55894714E+02 1.55965195E+02 1.56430313E+02 + 1.57205475E+02 1.57816299E+02 1.58183273E+02 1.57823334E+02 + 1.48204147E+02 1.46956726E+02 1.45276276E+02 1.44306732E+02 + 1.43366913E+02 1.42497406E+02 1.41962143E+02 1.41374619E+02 + 1.40704773E+02 1.39183258E+02 1.37802902E+02 1.36917282E+02 + 1.36245224E+02 1.36262589E+02 1.36591736E+02 1.37503799E+02 + 1.38459229E+02 1.39129745E+02 1.39688690E+02 1.40136566E+02 + 1.40451660E+02 1.41074768E+02 1.42053452E+02 1.42511978E+02 + 1.42963181E+02 1.43847717E+02 1.44908661E+02 1.45882050E+02 + 1.46648392E+02 1.47282516E+02 1.47893097E+02 1.48504959E+02 + 1.49007202E+02 1.49538651E+02 1.50010483E+02 1.50488937E+02 + 1.50970657E+02 1.51429749E+02 1.51862411E+02 1.52242355E+02 + 1.52726715E+02 1.53218979E+02 1.53632919E+02 1.54018524E+02 + 1.54262329E+02 1.54616501E+02 1.54996216E+02 1.55310333E+02 + 1.55687515E+02 1.55900482E+02 1.56026230E+02 1.56178986E+02 + 1.57033524E+02 1.58728058E+02 1.58854813E+02 1.59469894E+02 + 1.60542603E+02 1.61275574E+02 1.61803650E+02 1.61032013E+02 + 1.43789337E+02 1.43753662E+02 1.43043274E+02 1.42747665E+02 + 1.41891083E+02 1.40964157E+02 1.40618378E+02 1.40418045E+02 + 1.39200256E+02 1.36935196E+02 1.35579529E+02 1.35160843E+02 + 1.34942215E+02 1.35139084E+02 1.35419739E+02 1.36226044E+02 + 1.37142487E+02 1.37676804E+02 1.38362930E+02 1.39083191E+02 + 1.39525803E+02 1.39904236E+02 1.41106369E+02 1.42209961E+02 + 1.42818268E+02 1.43676498E+02 1.44621231E+02 1.45553497E+02 + 1.46196136E+02 1.46836624E+02 1.47488358E+02 1.48166321E+02 + 1.48861679E+02 1.49507706E+02 1.50010101E+02 1.50537186E+02 + 1.51093582E+02 1.51620926E+02 1.52103943E+02 1.52571655E+02 + 1.53172592E+02 1.53823151E+02 1.54390594E+02 1.54743698E+02 + 1.55163696E+02 1.55603867E+02 1.56044739E+02 1.56302063E+02 + 1.56516312E+02 1.56727798E+02 1.57014359E+02 1.58186249E+02 + 1.60308075E+02 1.62316452E+02 1.63105133E+02 1.63876343E+02 + 1.64889603E+02 1.65255753E+02 1.65700958E+02 1.65680328E+02 + 1.39479980E+02 1.39895889E+02 1.40453201E+02 1.39767731E+02 + 1.39362564E+02 1.38946991E+02 1.38545074E+02 1.37744583E+02 + 1.35908264E+02 1.34224976E+02 1.33721939E+02 1.33770813E+02 + 1.34040512E+02 1.34166046E+02 1.34583633E+02 1.35487091E+02 + 1.36478439E+02 1.37029221E+02 1.37545441E+02 1.38217361E+02 + 1.38743729E+02 1.39186722E+02 1.40109680E+02 1.41838531E+02 + 1.42771133E+02 1.43565979E+02 1.44349548E+02 1.45167908E+02 + 1.45858017E+02 1.46469345E+02 1.47120529E+02 1.47862244E+02 + 1.48737244E+02 1.49488846E+02 1.50019592E+02 1.50548462E+02 + 1.51305237E+02 1.52156540E+02 1.52662186E+02 1.53191635E+02 + 1.53881409E+02 1.54671097E+02 1.55218491E+02 1.55640549E+02 + 1.56340073E+02 1.56820633E+02 1.56969986E+02 1.57153030E+02 + 1.57453766E+02 1.58175400E+02 1.59131866E+02 1.61063324E+02 + 1.64483765E+02 1.66573883E+02 1.67504562E+02 1.68444580E+02 + 1.69058853E+02 1.69447845E+02 1.69529144E+02 1.69325119E+02 + 1.34432022E+02 1.35607285E+02 1.37015793E+02 1.36708130E+02 + 1.36626068E+02 1.36681885E+02 1.35980301E+02 1.34473404E+02 + 1.32912109E+02 1.32107681E+02 1.32210815E+02 1.32298370E+02 + 1.32857773E+02 1.33233337E+02 1.33899475E+02 1.34798050E+02 + 1.35813232E+02 1.36347794E+02 1.36658249E+02 1.37388626E+02 + 1.38056625E+02 1.38716736E+02 1.39951965E+02 1.41696121E+02 + 1.42457169E+02 1.43106644E+02 1.43953232E+02 1.44895599E+02 + 1.45581909E+02 1.46161224E+02 1.46834396E+02 1.47590424E+02 + 1.48507004E+02 1.49417068E+02 1.50031616E+02 1.50980530E+02 + 1.52223053E+02 1.53042999E+02 1.53544525E+02 1.54218735E+02 + 1.54972504E+02 1.55612183E+02 1.56117996E+02 1.56598770E+02 + 1.57492859E+02 1.58152618E+02 1.58308578E+02 1.58772232E+02 + 1.59520325E+02 1.60583771E+02 1.62424500E+02 1.65013931E+02 + 1.68740021E+02 1.70122223E+02 1.70562668E+02 1.71288330E+02 + 1.71581879E+02 1.72006836E+02 1.72217896E+02 1.72365677E+02 + 1.29114777E+02 1.30942490E+02 1.32751312E+02 1.33986694E+02 + 1.34614334E+02 1.34708206E+02 1.33617981E+02 1.32581772E+02 + 1.31297745E+02 1.30617340E+02 1.30637177E+02 1.30861633E+02 + 1.31508255E+02 1.32234177E+02 1.32740280E+02 1.33791214E+02 + 1.35173080E+02 1.35649765E+02 1.35781784E+02 1.36423065E+02 + 1.37110168E+02 1.38130707E+02 1.39928360E+02 1.41342010E+02 + 1.42229279E+02 1.42887421E+02 1.43586075E+02 1.44373611E+02 + 1.45129868E+02 1.45748077E+02 1.46528549E+02 1.47462250E+02 + 1.48450394E+02 1.49494217E+02 1.50194870E+02 1.51527878E+02 + 1.53096710E+02 1.53967346E+02 1.54804489E+02 1.55718399E+02 + 1.56739746E+02 1.57459641E+02 1.57941162E+02 1.58574158E+02 + 1.59112915E+02 1.59584030E+02 1.60004578E+02 1.60919968E+02 + 1.62082275E+02 1.63484863E+02 1.66139252E+02 1.69154236E+02 + 1.71399216E+02 1.71831680E+02 1.71932922E+02 1.72211319E+02 + 1.72722672E+02 1.73469116E+02 1.74308029E+02 1.75084854E+02 + 1.24586975E+02 1.25750893E+02 1.28470627E+02 1.30261536E+02 + 1.31645187E+02 1.32313263E+02 1.31381210E+02 1.30587463E+02 + 1.29908615E+02 1.29748093E+02 1.29641418E+02 1.29758057E+02 + 1.30227646E+02 1.30900589E+02 1.31269684E+02 1.32068924E+02 + 1.33545074E+02 1.34698105E+02 1.34889526E+02 1.35292221E+02 + 1.36217560E+02 1.37779083E+02 1.39514877E+02 1.40868301E+02 + 1.41848877E+02 1.42612457E+02 1.43334045E+02 1.44067139E+02 + 1.44799713E+02 1.45455017E+02 1.46355759E+02 1.47359314E+02 + 1.48388977E+02 1.49673874E+02 1.50800018E+02 1.52532547E+02 + 1.54238037E+02 1.55352737E+02 1.56271484E+02 1.57334015E+02 + 1.58407608E+02 1.59175430E+02 1.59969818E+02 1.60972107E+02 + 1.61378174E+02 1.61436966E+02 1.62426971E+02 1.64202377E+02 + 1.66065033E+02 1.68087204E+02 1.70941666E+02 1.72895142E+02 + 1.73333740E+02 1.73451828E+02 1.73891556E+02 1.73886398E+02 + 1.74474808E+02 1.75177567E+02 1.76029144E+02 1.76519363E+02 + 1.18174110E+02 1.19467957E+02 1.23619522E+02 1.26387756E+02 + 1.27829010E+02 1.28636978E+02 1.28504410E+02 1.27836838E+02 + 1.28238739E+02 1.28462830E+02 1.28595993E+02 1.28766479E+02 + 1.28909256E+02 1.29374588E+02 1.30095535E+02 1.30955109E+02 + 1.32016479E+02 1.33214005E+02 1.34043701E+02 1.34280243E+02 + 1.35326859E+02 1.37273239E+02 1.38932175E+02 1.40259430E+02 + 1.41484497E+02 1.42358963E+02 1.43047165E+02 1.43737991E+02 + 1.44529465E+02 1.45287476E+02 1.46161880E+02 1.47407928E+02 + 1.48951477E+02 1.50750366E+02 1.52513321E+02 1.54418274E+02 + 1.56224854E+02 1.57140076E+02 1.58092133E+02 1.58726059E+02 + 1.59463120E+02 1.60327805E+02 1.61574905E+02 1.62858398E+02 + 1.63728256E+02 1.64452942E+02 1.65939789E+02 1.67828064E+02 + 1.69589951E+02 1.71987869E+02 1.73925232E+02 1.74553101E+02 + 1.75064713E+02 1.75524902E+02 1.76825836E+02 1.77111908E+02 + 1.77249161E+02 1.77907166E+02 1.78517960E+02 1.78981506E+02 + 1.10370277E+02 1.12021507E+02 1.15585464E+02 1.19458282E+02 + 1.21632744E+02 1.22867966E+02 1.24116928E+02 1.24777771E+02 + 1.26158394E+02 1.26939095E+02 1.27000549E+02 1.27331757E+02 + 1.27601845E+02 1.27785805E+02 1.28924683E+02 1.30013641E+02 + 1.31127426E+02 1.32078598E+02 1.33006256E+02 1.33587784E+02 + 1.34373383E+02 1.36274567E+02 1.38267853E+02 1.39730377E+02 + 1.41067947E+02 1.42039841E+02 1.42735077E+02 1.43268494E+02 + 1.44249023E+02 1.45358932E+02 1.46457626E+02 1.48056290E+02 + 1.50491943E+02 1.52976257E+02 1.54770294E+02 1.56753250E+02 + 1.58165344E+02 1.58843643E+02 1.59911682E+02 1.60283920E+02 + 1.60686417E+02 1.61849548E+02 1.63630493E+02 1.65206558E+02 + 1.66016983E+02 1.67379089E+02 1.68363739E+02 1.69582947E+02 + 1.71631760E+02 1.74380020E+02 1.76135101E+02 1.77105927E+02 + 1.78340836E+02 1.79162354E+02 1.79703018E+02 1.80599228E+02 + 1.81109787E+02 1.82406555E+02 1.82371262E+02 1.82505737E+02 + 1.02076538E+02 1.03690414E+02 1.05604332E+02 1.09974876E+02 + 1.14758873E+02 1.17333496E+02 1.19456337E+02 1.20803917E+02 + 1.22706268E+02 1.24571861E+02 1.24952805E+02 1.25723816E+02 + 1.26169968E+02 1.26552490E+02 1.27085823E+02 1.28396347E+02 + 1.29676132E+02 1.30644714E+02 1.31499176E+02 1.33013153E+02 + 1.33982605E+02 1.35354538E+02 1.37299957E+02 1.39048218E+02 + 1.40662231E+02 1.41752747E+02 1.42546402E+02 1.43174347E+02 + 1.44004501E+02 1.45182877E+02 1.46675140E+02 1.49116364E+02 + 1.52344391E+02 1.54561218E+02 1.56848709E+02 1.59152588E+02 + 1.60122421E+02 1.61053833E+02 1.61826111E+02 1.62722946E+02 + 1.64241287E+02 1.66274292E+02 1.67427063E+02 1.68237305E+02 + 1.68678131E+02 1.69188507E+02 1.70104416E+02 1.71893753E+02 + 1.74641739E+02 1.78124939E+02 1.82529953E+02 1.84238037E+02 + 1.84380585E+02 1.85571686E+02 1.85366913E+02 1.85463364E+02 + 1.86642899E+02 1.87499207E+02 1.86897537E+02 1.86921402E+02 + 9.42304153E+01 9.55653152E+01 9.69473343E+01 1.00823074E+02 + 1.07085190E+02 1.12664261E+02 1.15250114E+02 1.16951462E+02 + 1.18657974E+02 1.21204758E+02 1.22659943E+02 1.23675179E+02 + 1.24512291E+02 1.24970108E+02 1.25117447E+02 1.25833023E+02 + 1.27160652E+02 1.28356796E+02 1.29402008E+02 1.31260895E+02 + 1.32892380E+02 1.34472687E+02 1.36221573E+02 1.38317123E+02 + 1.40113037E+02 1.41622116E+02 1.42508133E+02 1.43250015E+02 + 1.44128036E+02 1.45472427E+02 1.47007401E+02 1.50310684E+02 + 1.54238892E+02 1.57213623E+02 1.60092285E+02 1.62274780E+02 + 1.63122482E+02 1.64233063E+02 1.65115952E+02 1.66801666E+02 + 1.70989594E+02 1.72988800E+02 1.72791443E+02 1.72132324E+02 + 1.71967255E+02 1.72498856E+02 1.74016647E+02 1.77634964E+02 + 1.82496384E+02 1.87846817E+02 1.92065979E+02 1.93068878E+02 + 1.93091354E+02 1.94168686E+02 1.95281876E+02 1.94923477E+02 + 1.93745850E+02 1.92667862E+02 1.92512314E+02 1.92441193E+02 + 9.01508484E+01 9.06897964E+01 9.15654831E+01 9.49305878E+01 + 1.00309540E+02 1.06513649E+02 1.11434372E+02 1.13332176E+02 + 1.15305748E+02 1.17515915E+02 1.19342148E+02 1.20795815E+02 + 1.22011208E+02 1.22562431E+02 1.23253967E+02 1.23845833E+02 + 1.24759628E+02 1.26025459E+02 1.27749344E+02 1.29308777E+02 + 1.30783478E+02 1.32709274E+02 1.34612839E+02 1.36996475E+02 + 1.39611862E+02 1.41419220E+02 1.42513916E+02 1.43425385E+02 + 1.44718002E+02 1.46376587E+02 1.48428040E+02 1.52826035E+02 + 1.56766449E+02 1.59919495E+02 1.62921265E+02 1.65330917E+02 + 1.66894424E+02 1.68874542E+02 1.69976151E+02 1.73978165E+02 + 1.77806305E+02 1.78743927E+02 1.78726974E+02 1.77238892E+02 + 1.76854248E+02 1.78222305E+02 1.80385040E+02 1.85124603E+02 + 1.91125443E+02 1.95940720E+02 1.97440582E+02 1.98984360E+02 + 2.00708740E+02 2.02854095E+02 2.04979218E+02 2.05697266E+02 + 2.03405960E+02 2.02945969E+02 2.03260498E+02 2.02242676E+02 + 8.84768677E+01 8.85125351E+01 8.89515533E+01 9.02978439E+01 + 9.46976395E+01 1.01020813E+02 1.07121956E+02 1.11360016E+02 + 1.12969696E+02 1.14921211E+02 1.16135323E+02 1.17832031E+02 + 1.19101051E+02 1.20129196E+02 1.21284119E+02 1.22407997E+02 + 1.23484764E+02 1.24214294E+02 1.25579468E+02 1.27886772E+02 + 1.29362762E+02 1.30564316E+02 1.32527588E+02 1.34841064E+02 + 1.38465668E+02 1.41325302E+02 1.42690323E+02 1.44178482E+02 + 1.46027634E+02 1.47719223E+02 1.50337067E+02 1.54850601E+02 + 1.58953079E+02 1.62811218E+02 1.66675644E+02 1.69056396E+02 + 1.71193924E+02 1.73689392E+02 1.76405258E+02 1.80338760E+02 + 1.81534317E+02 1.82305847E+02 1.82753891E+02 1.82017456E+02 + 1.82165421E+02 1.83457947E+02 1.85515869E+02 1.90312881E+02 + 1.95577728E+02 2.00069321E+02 2.02707352E+02 2.04956253E+02 + 2.07350296E+02 2.09890320E+02 2.11775894E+02 2.14037949E+02 + 2.15165115E+02 2.15327545E+02 2.16095367E+02 2.14208099E+02 + 8.71622162E+01 8.70769348E+01 8.72389450E+01 8.76241379E+01 + 8.86331329E+01 9.42403946E+01 1.02063057E+02 1.08909538E+02 + 1.11706345E+02 1.13470436E+02 1.14587791E+02 1.15664536E+02 + 1.17149467E+02 1.18264816E+02 1.19444572E+02 1.20714577E+02 + 1.21974243E+02 1.22678917E+02 1.23388046E+02 1.25141380E+02 + 1.27931709E+02 1.28806595E+02 1.30458221E+02 1.32861053E+02 + 1.36758484E+02 1.40825485E+02 1.43325775E+02 1.45288803E+02 + 1.47367386E+02 1.49014725E+02 1.52276428E+02 1.57431412E+02 + 1.62460770E+02 1.66926025E+02 1.70350052E+02 1.71737030E+02 + 1.73777908E+02 1.76922638E+02 1.80470779E+02 1.82665421E+02 + 1.83494415E+02 1.83907059E+02 1.84263824E+02 1.84856842E+02 + 1.86078842E+02 1.87549942E+02 1.90712265E+02 1.94912292E+02 + 2.00783981E+02 2.06182129E+02 2.08332886E+02 2.09805954E+02 + 2.12275879E+02 2.14042267E+02 2.17147629E+02 2.21382462E+02 + 2.24813858E+02 2.24771194E+02 2.25096191E+02 2.24659103E+02 + 8.64081650E+01 8.62975388E+01 8.60318909E+01 8.55930862E+01 + 8.48430405E+01 8.39585266E+01 9.47593689E+01 1.04186234E+02 + 1.09228882E+02 1.11794014E+02 1.13345604E+02 1.13740028E+02 + 1.15082619E+02 1.16341293E+02 1.17395721E+02 1.18824486E+02 + 1.19844795E+02 1.20841637E+02 1.21453094E+02 1.22095131E+02 + 1.24400856E+02 1.26852966E+02 1.28038559E+02 1.30741638E+02 + 1.35794724E+02 1.40363922E+02 1.43629578E+02 1.46252014E+02 + 1.48668396E+02 1.51262115E+02 1.55831558E+02 1.60855942E+02 + 1.65369827E+02 1.68936462E+02 1.71264114E+02 1.73153214E+02 + 1.75947159E+02 1.78871613E+02 1.81509201E+02 1.83495575E+02 + 1.84231781E+02 1.84754959E+02 1.85357010E+02 1.86606628E+02 + 1.88580872E+02 1.90912933E+02 1.94762085E+02 1.99548431E+02 + 2.06701294E+02 2.10484619E+02 2.11314835E+02 2.12973801E+02 + 2.15402420E+02 2.19673584E+02 2.24715683E+02 2.28213425E+02 + 2.31100876E+02 2.32364990E+02 2.31981476E+02 2.32423630E+02 + 8.60509033E+01 8.57804108E+01 8.53983841E+01 8.45634308E+01 + 8.07032089E+01 6.87803268E+01 8.64763794E+01 9.87881317E+01 + 1.06146507E+02 1.08991882E+02 1.11220833E+02 1.12456009E+02 + 1.13447838E+02 1.14567390E+02 1.15558975E+02 1.16705482E+02 + 1.17829353E+02 1.19051361E+02 1.19767784E+02 1.20682365E+02 + 1.21234627E+02 1.23678230E+02 1.25206406E+02 1.28137436E+02 + 1.34268890E+02 1.40133469E+02 1.44113632E+02 1.47483887E+02 + 1.50356812E+02 1.53901489E+02 1.58407959E+02 1.62413162E+02 + 1.66560974E+02 1.69808304E+02 1.72166824E+02 1.74734482E+02 + 1.77663300E+02 1.80088593E+02 1.82487732E+02 1.84440216E+02 + 1.85019012E+02 1.85642838E+02 1.86678665E+02 1.88376877E+02 + 1.90559753E+02 1.93692963E+02 1.97396210E+02 2.02427109E+02 + 2.08951950E+02 2.12091171E+02 2.13619995E+02 2.16720459E+02 + 2.21022263E+02 2.27749161E+02 2.34612915E+02 2.37099197E+02 + 2.38880569E+02 2.38966797E+02 2.38577866E+02 2.37763901E+02 + 8.56050339E+01 8.53769379E+01 8.51608429E+01 8.47503128E+01 + 8.36387482E+01 8.20454102E+01 8.92272110E+01 9.54028168E+01 + 1.00680321E+02 1.05315903E+02 1.08528648E+02 1.10712669E+02 + 1.11690407E+02 1.13161194E+02 1.14481705E+02 1.15225700E+02 + 1.16148399E+02 1.17562080E+02 1.18576439E+02 1.19686935E+02 + 1.20469116E+02 1.21171486E+02 1.23251137E+02 1.27974998E+02 + 1.33054214E+02 1.39014175E+02 1.44650177E+02 1.48531952E+02 + 1.51306290E+02 1.54652466E+02 1.58918716E+02 1.63311264E+02 + 1.67320190E+02 1.70775253E+02 1.73446823E+02 1.75761383E+02 + 1.78857590E+02 1.81471207E+02 1.83587204E+02 1.85257629E+02 + 1.85865616E+02 1.86719376E+02 1.88081253E+02 1.90302948E+02 + 1.92811569E+02 1.95893066E+02 1.98703995E+02 2.02478210E+02 + 2.09825043E+02 2.14807083E+02 2.18506332E+02 2.23518387E+02 + 2.30818069E+02 2.39100906E+02 2.45205490E+02 2.46870712E+02 + 2.47495651E+02 2.46354156E+02 2.45069458E+02 2.44416931E+02 + 8.52424774E+01 8.52245026E+01 8.51576996E+01 8.50825043E+01 + 8.52299652E+01 8.62823944E+01 9.05706863E+01 9.43157501E+01 + 9.73747025E+01 1.01449028E+02 1.05434471E+02 1.08117447E+02 + 1.09463943E+02 1.10573380E+02 1.12554596E+02 1.14019737E+02 + 1.14741829E+02 1.16150146E+02 1.17743416E+02 1.19073524E+02 + 1.20052765E+02 1.20828918E+02 1.23555962E+02 1.27774567E+02 + 1.31412079E+02 1.36709747E+02 1.43341873E+02 1.48159698E+02 + 1.52154633E+02 1.55798019E+02 1.58822708E+02 1.63242477E+02 + 1.67837097E+02 1.71531296E+02 1.74289124E+02 1.76552887E+02 + 1.79809799E+02 1.82484283E+02 1.84831268E+02 1.86297806E+02 + 1.87115891E+02 1.88279678E+02 1.90000366E+02 1.92288025E+02 + 1.94068008E+02 1.97320892E+02 2.00569519E+02 2.04556702E+02 + 2.14496216E+02 2.22828796E+02 2.31534424E+02 2.38720795E+02 + 2.46832657E+02 2.53633713E+02 2.55437805E+02 2.57027283E+02 + 2.56701904E+02 2.55776459E+02 2.54235184E+02 2.55320374E+02 + 8.50077591E+01 8.50663223E+01 8.51353149E+01 8.53241577E+01 + 8.60094986E+01 8.77701797E+01 9.07448196E+01 9.30570602E+01 + 9.57809830E+01 9.89427490E+01 1.02536209E+02 1.05209869E+02 + 1.07103065E+02 1.07976585E+02 1.09803307E+02 1.12205635E+02 + 1.13403214E+02 1.14939568E+02 1.16879112E+02 1.18713448E+02 + 1.20015785E+02 1.21609001E+02 1.23845520E+02 1.27028519E+02 + 1.30454468E+02 1.36305954E+02 1.42909851E+02 1.47660599E+02 + 1.52942123E+02 1.56510239E+02 1.58430511E+02 1.61725754E+02 + 1.66939163E+02 1.71703064E+02 1.74503815E+02 1.77054565E+02 + 1.80609863E+02 1.83801910E+02 1.86183960E+02 1.87569656E+02 + 1.89060440E+02 1.90127228E+02 1.92056717E+02 1.93994308E+02 + 1.96548264E+02 1.99857758E+02 2.04312668E+02 2.12237488E+02 + 2.23308243E+02 2.36630188E+02 2.48938080E+02 2.57165802E+02 + 2.63113251E+02 2.66749756E+02 2.68757568E+02 2.70530670E+02 + 2.69094910E+02 2.68805634E+02 2.68039124E+02 2.68166992E+02 + 8.47939148E+01 8.48726120E+01 8.50046082E+01 8.52563782E+01 + 8.58979721E+01 8.67863235E+01 8.88628998E+01 9.15597458E+01 + 9.43670578E+01 9.71799088E+01 1.00325165E+02 1.03004372E+02 + 1.04611382E+02 1.05826790E+02 1.07295586E+02 1.10183197E+02 + 1.11964508E+02 1.13719910E+02 1.16605743E+02 1.18961563E+02 + 1.20585945E+02 1.22311081E+02 1.24186737E+02 1.27258102E+02 + 1.30355316E+02 1.35011383E+02 1.41431915E+02 1.46038544E+02 + 1.51344971E+02 1.56071991E+02 1.58739517E+02 1.61708694E+02 + 1.65846680E+02 1.70853317E+02 1.74149918E+02 1.77331329E+02 + 1.81670288E+02 1.85566711E+02 1.88226212E+02 1.89954315E+02 + 1.91130920E+02 1.92486694E+02 1.94602142E+02 1.96897186E+02 + 1.99532104E+02 2.03434601E+02 2.09788681E+02 2.20017349E+02 + 2.34730698E+02 2.50950546E+02 2.61084991E+02 2.68233734E+02 + 2.73247162E+02 2.76247101E+02 2.79759766E+02 2.81128265E+02 + 2.81030731E+02 2.82353210E+02 2.82307800E+02 2.80941925E+02 + 8.45704803E+01 8.46346893E+01 8.48080063E+01 8.50799103E+01 + 8.55754776E+01 8.61712723E+01 8.73316498E+01 8.92885361E+01 + 9.21118011E+01 9.52832260E+01 9.83852234E+01 1.01156754E+02 + 1.03174622E+02 1.04189529E+02 1.05203209E+02 1.07788002E+02 + 1.10773170E+02 1.13458717E+02 1.16585114E+02 1.19242203E+02 + 1.20992393E+02 1.22874565E+02 1.25658363E+02 1.28514297E+02 + 1.31026627E+02 1.33929352E+02 1.39224609E+02 1.44641571E+02 + 1.48698959E+02 1.53430450E+02 1.57557617E+02 1.61588181E+02 + 1.65965820E+02 1.70798050E+02 1.74320145E+02 1.77542572E+02 + 1.83173019E+02 1.88184784E+02 1.90494812E+02 1.91753845E+02 + 1.92816406E+02 1.94917358E+02 1.97443329E+02 2.00406342E+02 + 2.03088852E+02 2.07227158E+02 2.16031418E+02 2.31369659E+02 + 2.48226761E+02 2.60384186E+02 2.69441101E+02 2.76637390E+02 + 2.81986389E+02 2.84131866E+02 2.86560516E+02 2.87259186E+02 + 2.89018402E+02 2.90283112E+02 2.90981293E+02 2.90954071E+02 + 8.43629990E+01 8.43272018E+01 8.44070129E+01 8.45731125E+01 + 8.49607010E+01 8.55341492E+01 8.65373077E+01 8.82116852E+01 + 9.02804337E+01 9.27313004E+01 9.67057953E+01 9.99866333E+01 + 1.02182098E+02 1.03429878E+02 1.04437218E+02 1.06357567E+02 + 1.09645134E+02 1.13266197E+02 1.17064171E+02 1.19593498E+02 + 1.21720482E+02 1.24425072E+02 1.27334740E+02 1.29434814E+02 + 1.31829346E+02 1.34403976E+02 1.38204987E+02 1.42418655E+02 + 1.45816788E+02 1.50798798E+02 1.55412781E+02 1.60659622E+02 + 1.65687531E+02 1.69831909E+02 1.74235184E+02 1.79344955E+02 + 1.85283005E+02 1.89206192E+02 1.91559479E+02 1.93128708E+02 + 1.95124207E+02 1.97590271E+02 2.00884125E+02 2.03540833E+02 + 2.06309097E+02 2.13157410E+02 2.25539932E+02 2.43788513E+02 + 2.58748688E+02 2.69494904E+02 2.80357513E+02 2.89337738E+02 + 2.94197998E+02 2.95000122E+02 2.94547943E+02 2.93875458E+02 + 2.94530670E+02 2.94442566E+02 2.95141479E+02 2.96038849E+02 + 8.36771164E+01 8.36195984E+01 8.33540649E+01 8.32127151E+01 + 8.32914581E+01 8.40259247E+01 8.53715591E+01 8.71094894E+01 + 8.89644394E+01 9.03477478E+01 9.36673584E+01 9.79548798E+01 + 1.00562508E+02 1.02631897E+02 1.04142479E+02 1.06199310E+02 + 1.09536926E+02 1.13347206E+02 1.16830475E+02 1.20275040E+02 + 1.22961311E+02 1.25204071E+02 1.27938591E+02 1.30611511E+02 + 1.32820923E+02 1.34672256E+02 1.37974579E+02 1.41542526E+02 + 1.43902023E+02 1.47668518E+02 1.51902298E+02 1.57551971E+02 + 1.63652603E+02 1.68686340E+02 1.74664856E+02 1.80922256E+02 + 1.86099472E+02 1.90420975E+02 1.93667221E+02 1.96122726E+02 + 1.98807129E+02 2.01865540E+02 2.04233475E+02 2.06932785E+02 + 2.11451813E+02 2.21807922E+02 2.36413376E+02 2.52975922E+02 + 2.63552643E+02 2.76358276E+02 2.90745880E+02 3.00986145E+02 + 3.08302979E+02 3.10628418E+02 3.07304504E+02 3.03912109E+02 + 3.01252106E+02 2.99938324E+02 2.99403259E+02 2.99478027E+02 + 8.27134628E+01 8.24999466E+01 8.20449905E+01 8.17103577E+01 + 8.13248215E+01 8.16315460E+01 8.33441620E+01 8.54956741E+01 + 8.75442047E+01 8.92322006E+01 9.08629608E+01 9.43755569E+01 + 9.72187653E+01 1.01452591E+02 1.03460999E+02 1.05823174E+02 + 1.08918373E+02 1.12905022E+02 1.17026779E+02 1.20634750E+02 + 1.23360016E+02 1.25965851E+02 1.28842316E+02 1.31496033E+02 + 1.33324387E+02 1.35113861E+02 1.37802338E+02 1.41163254E+02 + 1.44083313E+02 1.46719742E+02 1.49728729E+02 1.54416519E+02 + 1.60702255E+02 1.66871246E+02 1.74172607E+02 1.81094955E+02 + 1.87246048E+02 1.92281860E+02 1.95612534E+02 2.00904922E+02 + 2.04562241E+02 2.07531555E+02 2.09667419E+02 2.12731766E+02 + 2.19363068E+02 2.29515518E+02 2.40376694E+02 2.53996933E+02 + 2.65482605E+02 2.80857513E+02 2.96518372E+02 3.10747833E+02 + 3.22282379E+02 3.27955597E+02 3.24328583E+02 3.18481812E+02 + 3.10689819E+02 3.06640747E+02 3.04656006E+02 3.03397858E+02 + 8.21067352E+01 8.17489929E+01 8.13148499E+01 8.05983658E+01 + 7.97005157E+01 7.88542633E+01 8.14183884E+01 8.37116699E+01 + 8.55913391E+01 8.73417130E+01 8.90921097E+01 9.15116272E+01 + 9.33664093E+01 9.72806244E+01 1.01940849E+02 1.05033897E+02 + 1.08167442E+02 1.12371887E+02 1.16875298E+02 1.20602104E+02 + 1.23886307E+02 1.26861389E+02 1.28862350E+02 1.31517868E+02 + 1.34129501E+02 1.36023270E+02 1.38496353E+02 1.41265854E+02 + 1.43896881E+02 1.46290161E+02 1.49366989E+02 1.53893555E+02 + 1.60978653E+02 1.67499146E+02 1.73492493E+02 1.80125427E+02 + 1.86478882E+02 1.92699539E+02 2.00349106E+02 2.06887985E+02 + 2.09949265E+02 2.12185928E+02 2.14309265E+02 2.16169373E+02 + 2.23409698E+02 2.33405426E+02 2.41784042E+02 2.53467407E+02 + 2.67815582E+02 2.83004791E+02 3.00143829E+02 3.20475708E+02 + 3.37196747E+02 3.52053162E+02 3.45243835E+02 3.34470306E+02 + 3.24049774E+02 3.17878784E+02 3.12512726E+02 3.10623444E+02 + 8.15878983E+01 8.11646042E+01 8.05143661E+01 7.91186371E+01 + 7.60702896E+01 6.87804031E+01 7.98132706E+01 8.28380051E+01 + 8.45154800E+01 8.58175430E+01 8.75179901E+01 8.98479767E+01 + 9.20713882E+01 9.50413589E+01 9.95578613E+01 1.03460747E+02 + 1.07226234E+02 1.12544846E+02 1.17389381E+02 1.20456207E+02 + 1.23603073E+02 1.26490379E+02 1.28736694E+02 1.31897705E+02 + 1.34776047E+02 1.36724899E+02 1.39303940E+02 1.41718964E+02 + 1.43952789E+02 1.46551605E+02 1.49881607E+02 1.55107376E+02 + 1.61464783E+02 1.67031601E+02 1.72309875E+02 1.80419876E+02 + 1.88070969E+02 1.96413681E+02 2.05261200E+02 2.09877441E+02 + 2.12817642E+02 2.14375046E+02 2.15944107E+02 2.18587463E+02 + 2.24665710E+02 2.33065384E+02 2.42448929E+02 2.53170700E+02 + 2.66609467E+02 2.82271057E+02 3.00093872E+02 3.27468170E+02 + 3.56949738E+02 4.13022705E+02 3.69487701E+02 3.50730591E+02 + 3.38473755E+02 3.31279114E+02 3.24928650E+02 3.21521790E+02 + 8.12495117E+01 8.09451141E+01 8.04108429E+01 7.95241470E+01 + 7.85611191E+01 7.81650085E+01 8.09747162E+01 8.27554855E+01 + 8.38188705E+01 8.50358810E+01 8.64946213E+01 8.85650864E+01 + 9.09155426E+01 9.43666687E+01 9.84351959E+01 1.02532867E+02 + 1.06728371E+02 1.12008766E+02 1.16581825E+02 1.19858742E+02 + 1.23149513E+02 1.25725517E+02 1.28416977E+02 1.32136459E+02 + 1.35506149E+02 1.38054642E+02 1.40351700E+02 1.41997253E+02 + 1.44443695E+02 1.47234146E+02 1.50960556E+02 1.55771423E+02 + 1.61293945E+02 1.66625015E+02 1.73329727E+02 1.82035675E+02 + 1.90786789E+02 2.00031219E+02 2.06639160E+02 2.11088120E+02 + 2.13534714E+02 2.15102356E+02 2.16756958E+02 2.18913986E+02 + 2.24811905E+02 2.32706055E+02 2.40031799E+02 2.51939957E+02 + 2.64231537E+02 2.80513367E+02 3.03779266E+02 3.29959839E+02 + 3.49210236E+02 3.70277954E+02 3.62824127E+02 3.51927795E+02 + 3.45324402E+02 3.40083588E+02 3.35682281E+02 3.32621613E+02 + 8.12832336E+01 8.10646591E+01 8.08237534E+01 8.04921799E+01 + 8.05226440E+01 8.06814423E+01 8.17218552E+01 8.25658493E+01 + 8.34572144E+01 8.46154480E+01 8.59376907E+01 8.77611160E+01 + 9.01120071E+01 9.30025330E+01 9.72078247E+01 1.02513893E+02 + 1.06986237E+02 1.11544685E+02 1.15624123E+02 1.18004433E+02 + 1.21804123E+02 1.25171951E+02 1.28376724E+02 1.32175461E+02 + 1.35883759E+02 1.38973557E+02 1.40706940E+02 1.42752121E+02 + 1.45799255E+02 1.48096313E+02 1.51512939E+02 1.56976227E+02 + 1.62604614E+02 1.66753967E+02 1.74959000E+02 1.84070480E+02 + 1.93030411E+02 2.00647903E+02 2.06792694E+02 2.11339539E+02 + 2.13280670E+02 2.15154587E+02 2.16919006E+02 2.19158630E+02 + 2.23493423E+02 2.31369675E+02 2.41518417E+02 2.52452698E+02 + 2.63408936E+02 2.79640076E+02 3.03113159E+02 3.27358612E+02 + 3.42939575E+02 3.51226135E+02 3.53736053E+02 3.49774353E+02 + 3.45950836E+02 3.42816803E+02 3.40729736E+02 3.39363190E+02 + 8.14994812E+01 8.14146729E+01 8.13378143E+01 8.12876434E+01 + 8.14087296E+01 8.16087418E+01 8.19951248E+01 8.26337738E+01 + 8.32328873E+01 8.40502853E+01 8.52204514E+01 8.67688446E+01 + 9.00662994E+01 9.40071487E+01 9.76261597E+01 1.01911369E+02 + 1.05748558E+02 1.09480331E+02 1.13587822E+02 1.16267159E+02 + 1.19619591E+02 1.23752960E+02 1.27498550E+02 1.31511032E+02 + 1.36142273E+02 1.39308502E+02 1.41513733E+02 1.44497910E+02 + 1.46834045E+02 1.48669388E+02 1.52057037E+02 1.56730118E+02 + 1.63090408E+02 1.70699371E+02 1.77992310E+02 1.84571594E+02 + 1.93506012E+02 2.01222198E+02 2.06891724E+02 2.10445297E+02 + 2.12541901E+02 2.14777267E+02 2.16940735E+02 2.19627640E+02 + 2.23623199E+02 2.31608368E+02 2.41082199E+02 2.50517807E+02 + 2.63674530E+02 2.80711029E+02 3.04954742E+02 3.27397247E+02 + 3.39389954E+02 3.43861267E+02 3.46510437E+02 3.46902405E+02 + 3.45213867E+02 3.43210876E+02 3.41743500E+02 3.41053986E+02 + 8.16406708E+01 8.16557007E+01 8.17046509E+01 8.18051376E+01 + 8.18614502E+01 8.19457474E+01 8.22162781E+01 8.26370316E+01 + 8.30830002E+01 8.38093719E+01 8.46760788E+01 8.63436813E+01 + 8.98171158E+01 9.46729431E+01 9.92689896E+01 1.02952332E+02 + 1.05780807E+02 1.07457558E+02 1.10126015E+02 1.13432777E+02 + 1.17030640E+02 1.21259850E+02 1.24797272E+02 1.29431793E+02 + 1.35574631E+02 1.39322433E+02 1.41984360E+02 1.44881058E+02 + 1.47257080E+02 1.49381104E+02 1.52390686E+02 1.56840637E+02 + 1.64184662E+02 1.73681580E+02 1.80239578E+02 1.86065369E+02 + 1.92907166E+02 1.99386047E+02 2.05796082E+02 2.10151047E+02 + 2.12270370E+02 2.14559189E+02 2.16741562E+02 2.19933762E+02 + 2.24706863E+02 2.30892792E+02 2.39573853E+02 2.47909973E+02 + 2.62607574E+02 2.88059479E+02 3.14099121E+02 3.28419403E+02 + 3.36193268E+02 3.39952881E+02 3.41840881E+02 3.43617371E+02 + 3.43771942E+02 3.42585602E+02 3.41762390E+02 3.41665436E+02 + 8.17062454E+01 8.17343445E+01 8.18126526E+01 8.19035339E+01 + 8.19756317E+01 8.20803299E+01 8.23374405E+01 8.26429062E+01 + 8.30499344E+01 8.35727768E+01 8.42507629E+01 8.65319672E+01 + 9.00698242E+01 9.50235519E+01 9.96949310E+01 1.02748497E+02 + 1.05721710E+02 1.07605537E+02 1.09209671E+02 1.11969215E+02 + 1.17152008E+02 1.21734543E+02 1.24796776E+02 1.28499878E+02 + 1.34076691E+02 1.39180710E+02 1.42058334E+02 1.44662308E+02 + 1.47152771E+02 1.49557816E+02 1.52912323E+02 1.56714859E+02 + 1.64597488E+02 1.75495575E+02 1.82128265E+02 1.86328506E+02 + 1.91620605E+02 1.98891754E+02 2.05942032E+02 2.10115845E+02 + 2.12434448E+02 2.14813492E+02 2.16808548E+02 2.19510040E+02 + 2.23742081E+02 2.29847580E+02 2.38573334E+02 2.46690475E+02 + 2.61314056E+02 2.88697693E+02 3.15514984E+02 3.30219055E+02 + 3.36488556E+02 3.38625732E+02 3.40593262E+02 3.42134735E+02 + 3.42554535E+02 3.42055664E+02 3.41791321E+02 3.41709412E+02 +/ + +SWAT + 9.57589969E-02 9.57636759E-02 9.57741886E-02 9.57876667E-02 + 9.58034024E-02 1.27476081E-01 2.99228519E-01 3.89760792E-01 + 4.00011539E-01 3.34763706E-01 1.50121689E-01 1.33109033E-01 + 2.22282633E-01 2.73647219E-01 3.18593651E-01 3.65026385E-01 + 4.00318265E-01 4.78752255E-01 5.00747085E-01 5.06020129E-01 + 5.03594637E-01 5.10045946E-01 5.25072932E-01 5.23109019E-01 + 5.20291924E-01 5.08304358E-01 3.42998892E-01 1.26928970E-01 + 9.88743976E-02 9.77680758E-02 9.77638736E-02 9.77703556E-02 + 9.77753922E-02 9.77755934E-02 9.77805406E-02 9.77900773E-02 + 9.78014171E-02 9.78110209E-02 9.78161544E-02 9.78194848E-02 + 9.78222266E-02 9.78237763E-02 9.78245139E-02 9.78253111E-02 + 9.78261530E-02 9.78271142E-02 9.78283733E-02 9.78299081E-02 + 9.78317410E-02 9.78343040E-02 9.78373960E-02 9.78403166E-02 + 9.78430584E-02 9.78466049E-02 9.78498757E-02 9.78538170E-02 + 9.78571698E-02 9.78592560E-02 9.78613049E-02 9.78627354E-02 + 9.57554504E-02 9.57588404E-02 9.57655683E-02 9.57797915E-02 + 1.10057428E-01 4.32249010E-01 5.49803615E-01 5.79840720E-01 + 6.12964451E-01 6.14925325E-01 6.01583958E-01 5.95591962E-01 + 6.18655622E-01 6.15784407E-01 6.20388985E-01 6.15598142E-01 + 6.14408493E-01 6.34346306E-01 6.39232099E-01 6.37389839E-01 + 6.15274131E-01 6.13449574E-01 6.11553252E-01 6.01088405E-01 + 5.79951644E-01 5.62486053E-01 4.98962700E-01 3.51263165E-01 + 1.96864665E-01 1.14332914E-01 1.04728147E-01 1.18082449E-01 + 1.24028936E-01 1.12710141E-01 9.78489965E-02 9.77905989E-02 + 9.78005975E-02 9.78103802E-02 9.78164822E-02 9.78183299E-02 + 9.78210345E-02 9.78234485E-02 9.78244245E-02 9.78252366E-02 + 9.78259966E-02 9.78269279E-02 9.78280902E-02 9.78299901E-02 + 9.78326052E-02 9.78354514E-02 9.78379920E-02 9.78407860E-02 + 9.78438109E-02 9.78471339E-02 9.78509784E-02 9.78548899E-02 + 9.78576839E-02 9.78597999E-02 9.78626832E-02 9.78641510E-02 + 9.57506970E-02 9.57518443E-02 9.57565382E-02 1.02226093E-01 + 3.91505718E-01 5.95936656E-01 6.55411124E-01 6.95727706E-01 + 7.07467318E-01 7.11778283E-01 7.08553910E-01 7.08079875E-01 + 7.02200294E-01 6.97105885E-01 6.90853179E-01 6.76810861E-01 + 6.76071465E-01 6.86356127E-01 6.94122255E-01 6.95771933E-01 + 6.78569138E-01 6.63963139E-01 6.58014119E-01 6.44875944E-01 + 6.23172998E-01 5.95838189E-01 5.69360495E-01 5.35648942E-01 + 4.63500112E-01 3.31907898E-01 2.77537405E-01 3.28174502E-01 + 3.55724752E-01 3.30827713E-01 1.62296802E-01 9.93255749E-02 + 9.78027359E-02 9.78100449E-02 9.78159755E-02 9.78178754E-02 + 9.78200808E-02 9.78226736E-02 9.78240892E-02 9.78248417E-02 + 9.78256240E-02 9.78265181E-02 9.78275612E-02 9.78302285E-02 + 9.78341773E-02 9.78369564E-02 9.78393853E-02 9.78422612E-02 + 9.78449658E-02 9.78478193E-02 9.78525728E-02 9.78571400E-02 + 9.78600830E-02 9.78636220E-02 9.78676826E-02 9.78699923E-02 + 9.57421437E-02 9.57765207E-02 1.08344518E-01 3.37238848E-01 + 6.19036853E-01 6.97701097E-01 7.25286245E-01 7.51274168E-01 + 7.55973935E-01 7.58655965E-01 7.58235514E-01 7.54151702E-01 + 7.45671213E-01 7.36958504E-01 7.31962085E-01 7.27864981E-01 + 7.26159751E-01 7.24451303E-01 7.23239422E-01 7.22009897E-01 + 7.12812483E-01 6.94712698E-01 6.80674136E-01 6.66071713E-01 + 6.56970441E-01 6.48697555E-01 6.36401176E-01 6.36535347E-01 + 6.31344140E-01 6.09780908E-01 6.07290626E-01 6.12509549E-01 + 6.01306856E-01 5.73470175E-01 5.07261455E-01 2.84208894E-01 + 1.10047057E-01 9.78207141E-02 9.78129953E-02 9.78165045E-02 + 9.78197455E-02 9.78223905E-02 9.78237465E-02 9.78244096E-02 + 9.78251770E-02 9.78260413E-02 9.78271812E-02 9.78295729E-02 + 9.78344083E-02 9.78385955E-02 9.78410318E-02 9.78435352E-02 + 9.78463963E-02 9.78499651E-02 9.78567004E-02 9.78610292E-02 + 9.78646725E-02 9.78698879E-02 9.78742391E-02 9.78777334E-02 + 9.57397372E-02 1.63453847E-01 3.86403084E-01 6.03183746E-01 + 7.23162174E-01 7.75213003E-01 7.81652451E-01 7.80217826E-01 + 7.77389407E-01 7.79119492E-01 7.77886987E-01 7.72432506E-01 + 7.64838457E-01 7.58818448E-01 7.50867784E-01 7.45886981E-01 + 7.40092516E-01 7.33926058E-01 7.31696248E-01 7.28911102E-01 + 7.24753857E-01 7.15500593E-01 7.11621583E-01 7.07310617E-01 + 6.98930860E-01 6.90914154E-01 6.84380710E-01 6.83233440E-01 + 6.80283368E-01 6.76799834E-01 6.76597655E-01 6.73339188E-01 + 6.60798252E-01 6.30853653E-01 5.94695091E-01 5.20941973E-01 + 2.99058557E-01 1.16113983E-01 9.78301913E-02 9.78139266E-02 + 9.78179872E-02 9.78213921E-02 9.78232622E-02 9.78238583E-02 + 9.78245959E-02 9.78254080E-02 9.78266075E-02 9.78293717E-02 + 9.78343561E-02 9.78394598E-02 9.78425443E-02 9.78454500E-02 + 9.78486612E-02 9.78549048E-02 9.78632718E-02 9.78667960E-02 + 9.78717953E-02 9.78785008E-02 9.78829935E-02 9.78845954E-02 + 1.04487181E-01 3.68432581E-01 5.70549786E-01 6.82715058E-01 + 7.71331906E-01 8.12640667E-01 8.16744030E-01 8.11867535E-01 + 8.08175087E-01 8.02775264E-01 7.96638489E-01 7.89151847E-01 + 7.76886940E-01 7.64725268E-01 7.55513549E-01 7.51602590E-01 + 7.46560931E-01 7.41169631E-01 7.35267222E-01 7.31818259E-01 + 7.30209589E-01 7.28470504E-01 7.22736895E-01 7.17064440E-01 + 7.13871539E-01 7.10052848E-01 7.06895530E-01 7.03675926E-01 + 6.99708104E-01 6.97038770E-01 6.96719468E-01 6.92570686E-01 + 6.80833161E-01 6.51099920E-01 6.31325722E-01 5.83027720E-01 + 4.40671921E-01 1.70159996E-01 9.81360003E-02 9.78133380E-02 + 9.78164300E-02 9.78201851E-02 9.78226066E-02 9.78231505E-02 + 9.78238285E-02 9.78247076E-02 9.78258029E-02 9.78289619E-02 + 9.78335068E-02 9.78390649E-02 9.78445113E-02 9.78484005E-02 + 9.78519917E-02 9.78612453E-02 9.78690460E-02 9.78725031E-02 + 9.78792831E-02 9.78886187E-02 9.78930891E-02 9.78918523E-02 + 1.83231473E-01 5.05179167E-01 6.68698490E-01 7.34611392E-01 + 8.07270348E-01 8.57708991E-01 8.50883126E-01 8.36820543E-01 + 8.21766615E-01 8.10225070E-01 8.03380847E-01 7.96472490E-01 + 7.86583185E-01 7.77473927E-01 7.64869750E-01 7.61224687E-01 + 7.59206414E-01 7.57446349E-01 7.57090330E-01 7.57749379E-01 + 7.56807089E-01 7.55183876E-01 7.53056645E-01 7.43775487E-01 + 7.36196280E-01 7.32028306E-01 7.28634417E-01 7.23354399E-01 + 7.19134271E-01 7.16350257E-01 7.13450193E-01 7.08031058E-01 + 6.96003795E-01 6.62278533E-01 6.17268026E-01 5.73659897E-01 + 4.70947742E-01 1.89692959E-01 9.84531194E-02 9.78128538E-02 + 9.78146270E-02 9.78179201E-02 9.78210494E-02 9.78222936E-02 + 9.78229642E-02 9.78238657E-02 9.78249907E-02 9.78280231E-02 + 9.78324041E-02 9.78385657E-02 9.78463739E-02 9.78533328E-02 + 9.78607833E-02 9.78701413E-02 9.78743732E-02 9.78787392E-02 + 9.78892669E-02 9.78984684E-02 9.79005918E-02 9.78997275E-02 + 4.84064847E-01 6.76654994E-01 7.64597356E-01 8.16307724E-01 + 8.54848683E-01 8.76579404E-01 8.62223089E-01 8.52679670E-01 + 8.34911227E-01 8.18244696E-01 8.09248269E-01 8.04100811E-01 + 7.98697650E-01 7.91843891E-01 7.79782116E-01 7.73518622E-01 + 7.67634034E-01 7.65470684E-01 7.65808940E-01 7.64935911E-01 + 7.63675570E-01 7.62692988E-01 7.61103928E-01 7.57164061E-01 + 7.52680361E-01 7.50214100E-01 7.46980667E-01 7.41330028E-01 + 7.35649109E-01 7.31395423E-01 7.26143003E-01 7.17907369E-01 + 7.09297061E-01 6.91780627E-01 6.69277251E-01 6.45005941E-01 + 5.91043472E-01 3.91668290E-01 1.23939343E-01 9.78321955E-02 + 9.78148207E-02 9.78163928E-02 9.78187770E-02 9.78211015E-02 + 9.78221372E-02 9.78232548E-02 9.78249907E-02 9.78331119E-02 + 9.78489444E-02 9.78452116E-02 9.79057923E-02 9.78625044E-02 + 9.78741944E-02 9.78797451E-02 9.78843272E-02 9.78906527E-02 + 9.79011953E-02 9.79057178E-02 9.79067683E-02 9.79096293E-02 + 4.92950112E-01 6.88326538E-01 7.51450002E-01 7.98428178E-01 + 8.33250105E-01 8.59054506E-01 8.56930673E-01 8.45487535E-01 + 8.26759458E-01 8.13987195E-01 8.07273984E-01 8.02946925E-01 + 7.98116863E-01 7.94198275E-01 7.88975894E-01 7.82784462E-01 + 7.78573751E-01 7.75458515E-01 7.71884859E-01 7.69229293E-01 + 7.66271293E-01 7.64027536E-01 7.59973466E-01 7.54542649E-01 + 7.47948647E-01 7.45793521E-01 7.43773222E-01 7.40916967E-01 + 7.37207890E-01 7.33747542E-01 7.28626728E-01 7.21563995E-01 + 7.13153899E-01 7.04040289E-01 6.91063166E-01 6.72029614E-01 + 6.25778019E-01 4.74566281E-01 1.83042064E-01 9.82158706E-02 + 9.78144631E-02 9.78154242E-02 9.78447497E-02 9.82544869E-02 + 9.78847817E-02 9.78644267E-02 9.94457528E-02 1.13426201E-01 + 1.18912905E-01 1.12743951E-01 1.55875206E-01 1.53008342E-01 + 1.46693096E-01 1.01537891E-01 9.79106128E-02 9.79018286E-02 + 9.79110301E-02 9.79151726E-02 9.79168862E-02 9.79198739E-02 + 5.20814478E-01 6.73158765E-01 7.19234347E-01 7.71683514E-01 + 8.11190426E-01 8.50334048E-01 8.50727379E-01 8.39216769E-01 + 8.21679533E-01 8.08598399E-01 8.00622046E-01 7.93056726E-01 + 7.83589184E-01 7.77657092E-01 7.74198174E-01 7.71256387E-01 + 7.65598714E-01 7.63532102E-01 7.62344778E-01 7.61170387E-01 + 7.60169625E-01 7.58467078E-01 7.51350105E-01 7.46505082E-01 + 7.42651701E-01 7.38967657E-01 7.37390578E-01 7.35632062E-01 + 7.33666003E-01 7.31077492E-01 7.27031887E-01 7.22033441E-01 + 7.13757753E-01 6.98424101E-01 6.67748511E-01 6.23653531E-01 + 5.50226629E-01 3.99519563E-01 1.58688575E-01 9.80937257E-02 + 9.78105217E-02 9.78739709E-02 1.11848690E-01 1.56588092E-01 + 1.30980462E-01 1.33495748E-01 1.94445148E-01 2.88620740E-01 + 2.73364782E-01 2.96733677E-01 3.78324211E-01 4.00070310E-01 + 3.64734143E-01 2.92625725E-01 1.47683889E-01 9.80387777E-02 + 9.79261771E-02 9.79274511E-02 9.79256928E-02 9.79252160E-02 + 4.79524374E-01 6.55864298E-01 7.05413163E-01 7.57889867E-01 + 7.87253618E-01 8.29627991E-01 8.38151991E-01 8.28259706E-01 + 8.15881550E-01 8.08699012E-01 8.00301731E-01 7.89438963E-01 + 7.79214621E-01 7.70320714E-01 7.63585091E-01 7.57654011E-01 + 7.50211895E-01 7.42290080E-01 7.48107851E-01 7.49490798E-01 + 7.49588251E-01 7.46968150E-01 7.44318068E-01 7.40597486E-01 + 7.35893428E-01 7.30315566E-01 7.27880299E-01 7.28632569E-01 + 7.28297591E-01 7.26782143E-01 7.24070013E-01 7.20348716E-01 + 7.15190887E-01 7.05264449E-01 6.86314702E-01 6.60526931E-01 + 6.18083000E-01 5.50047815E-01 4.05981630E-01 1.62278906E-01 + 9.83368158E-02 1.24420814E-01 2.44818658E-01 3.48646849E-01 + 3.58367294E-01 3.84369344E-01 4.28274721E-01 4.95084047E-01 + 5.08067787E-01 5.21046221E-01 5.32286108E-01 5.66374540E-01 + 5.96945941E-01 5.03695786E-01 4.05357420E-01 1.97319284E-01 + 9.79514495E-02 9.79391634E-02 9.79328156E-02 9.79291648E-02 + 4.60595101E-01 6.33113086E-01 6.93416715E-01 7.41080284E-01 + 7.72300780E-01 8.11445355E-01 8.23552728E-01 8.15946877E-01 + 8.09572756E-01 8.04481626E-01 7.97201931E-01 7.88439393E-01 + 7.79057145E-01 7.70232677E-01 7.62564063E-01 7.56318331E-01 + 7.48416662E-01 7.40728736E-01 7.35668778E-01 7.34772980E-01 + 7.27524698E-01 7.19658315E-01 7.21041918E-01 7.23176301E-01 + 7.21774042E-01 7.18612075E-01 7.16082573E-01 7.15666890E-01 + 7.19491839E-01 7.19947577E-01 7.18814135E-01 7.16565669E-01 + 7.13517189E-01 7.07344234E-01 6.94725513E-01 6.80496991E-01 + 6.60604894E-01 6.17602587E-01 5.36859930E-01 3.52374136E-01 + 1.48670882E-01 2.67014116E-01 4.20290053E-01 4.97669905E-01 + 5.35029411E-01 5.54698586E-01 5.77066660E-01 6.06678069E-01 + 6.20200396E-01 6.33049607E-01 6.48190856E-01 6.56248808E-01 + 6.60535097E-01 6.11986041E-01 5.20601928E-01 3.63277525E-01 + 2.15960473E-01 9.79476646E-02 9.79356691E-02 9.79306623E-02 + 4.61335480E-01 6.15002692E-01 6.84981823E-01 7.27918804E-01 + 7.63270736E-01 8.06565285E-01 8.13058197E-01 8.08164239E-01 + 8.03600907E-01 7.97256470E-01 7.88493872E-01 7.79491484E-01 + 7.70818174E-01 7.65452981E-01 7.59838283E-01 7.52671182E-01 + 7.45190918E-01 7.38005102E-01 7.32700825E-01 7.27601290E-01 + 7.22255588E-01 7.15371609E-01 7.09547102E-01 7.08287835E-01 + 7.07568586E-01 7.06167996E-01 7.02189565E-01 6.97902679E-01 + 7.05349267E-01 7.08886147E-01 7.10818768E-01 7.10366905E-01 + 7.07486153E-01 7.01092660E-01 6.88806772E-01 6.69117510E-01 + 6.41370416E-01 5.73920369E-01 4.45255339E-01 2.44062826E-01 + 2.65734732E-01 4.38620448E-01 5.29260933E-01 5.76812267E-01 + 6.05166793E-01 6.21945977E-01 6.33403778E-01 6.46786809E-01 + 6.57440603E-01 6.66603208E-01 6.77508116E-01 6.85213625E-01 + 6.89763367E-01 6.91421092E-01 6.75471306E-01 5.81760228E-01 + 4.86227304E-01 1.00540221E-01 9.79285315E-02 9.79251042E-02 + 4.06658053E-01 6.14233911E-01 6.79813027E-01 7.29916811E-01 + 7.63936520E-01 8.00430000E-01 8.06187630E-01 7.99070179E-01 + 7.95124888E-01 7.87620306E-01 7.79012144E-01 7.71399975E-01 + 7.61986494E-01 7.55850017E-01 7.46369958E-01 7.35586107E-01 + 7.26049662E-01 7.20253766E-01 7.15156555E-01 7.14171290E-01 + 7.11916804E-01 7.04940856E-01 6.96251929E-01 6.89895928E-01 + 6.84937298E-01 6.84808075E-01 6.78318381E-01 6.70211732E-01 + 6.87487304E-01 6.91073716E-01 6.97852850E-01 6.96001709E-01 + 6.91413105E-01 6.83045030E-01 6.64484203E-01 6.31530404E-01 + 5.70060551E-01 4.21834081E-01 2.35927507E-01 2.65859991E-01 + 4.20587093E-01 5.34168839E-01 5.93941331E-01 6.28403902E-01 + 6.48657620E-01 6.61280930E-01 6.66838944E-01 6.73360705E-01 + 6.81312203E-01 6.88866675E-01 6.93736732E-01 7.00022042E-01 + 7.00399637E-01 6.96852982E-01 6.87887073E-01 6.46126390E-01 + 5.87152302E-01 2.39209175E-01 9.81135964E-02 9.79065374E-02 + 2.05703959E-01 5.90092123E-01 6.77812457E-01 7.36581147E-01 + 7.61919558E-01 7.92046607E-01 7.97191560E-01 7.91196048E-01 + 7.86095977E-01 7.78780937E-01 7.72946775E-01 7.68373072E-01 + 7.61893809E-01 7.53355443E-01 7.38353968E-01 7.20452785E-01 + 7.14159548E-01 7.09850311E-01 7.02166319E-01 6.96955919E-01 + 6.96916282E-01 6.87439561E-01 6.78005397E-01 6.60944819E-01 + 6.40981436E-01 6.64279342E-01 6.55266345E-01 6.38719380E-01 + 6.59699976E-01 6.57843888E-01 6.75613701E-01 6.65776849E-01 + 6.47947729E-01 6.47683740E-01 6.12593412E-01 5.39030015E-01 + 3.70778739E-01 1.80664554E-01 2.04974174E-01 4.18959945E-01 + 5.45026004E-01 6.14030600E-01 6.48106694E-01 6.66005909E-01 + 6.79738402E-01 6.87927306E-01 6.90622926E-01 6.93317115E-01 + 6.96963966E-01 7.02488124E-01 7.06229746E-01 7.07882583E-01 + 7.04957604E-01 6.95779085E-01 6.83045387E-01 6.57427430E-01 + 6.06845438E-01 4.22349095E-01 1.12155318E-01 9.78837535E-02 + 1.22394353E-01 5.56297243E-01 6.71560407E-01 7.33578622E-01 + 7.56856203E-01 7.80152380E-01 7.91190684E-01 7.84275234E-01 + 7.78842509E-01 7.72742867E-01 7.67796278E-01 7.64364004E-01 + 7.60150492E-01 7.52380252E-01 7.41291344E-01 7.28704154E-01 + 7.15787947E-01 7.05500066E-01 6.92793846E-01 6.82903469E-01 + 6.78621471E-01 6.72606766E-01 6.40142083E-01 5.98754346E-01 + 4.94073361E-01 6.07270360E-01 5.97068667E-01 5.83089292E-01 + 6.25735700E-01 6.26017928E-01 6.41582727E-01 6.13759875E-01 + 4.89299208E-01 5.74255288E-01 4.54469651E-01 2.83727556E-01 + 1.57726541E-01 2.68084705E-01 4.01328444E-01 5.16290545E-01 + 6.22755170E-01 6.55241370E-01 6.78180814E-01 6.90805674E-01 + 6.99883342E-01 7.04507411E-01 7.04969704E-01 7.05649734E-01 + 7.07596838E-01 7.11770296E-01 7.12211788E-01 7.11080015E-01 + 7.06303000E-01 6.91878438E-01 6.76432908E-01 6.57910764E-01 + 6.09457254E-01 4.68092591E-01 1.62820831E-01 9.79015306E-02 + 9.93632451E-02 4.92841125E-01 6.72180593E-01 7.28726566E-01 + 7.47614443E-01 7.72069216E-01 7.83831179E-01 7.77181029E-01 + 7.72076488E-01 7.67469704E-01 7.63719916E-01 7.60633826E-01 + 7.56726265E-01 7.50671685E-01 7.43224859E-01 7.32794642E-01 + 7.22704947E-01 7.10954785E-01 6.94097996E-01 6.74485445E-01 + 6.65907264E-01 6.45645559E-01 5.85522771E-01 4.17806685E-01 + 1.96919635E-01 4.31090683E-01 3.84262621E-01 4.22121972E-01 + 5.45583844E-01 5.43038607E-01 5.27803481E-01 4.40076500E-01 + 2.32336521E-01 3.81284654E-01 1.96879208E-01 2.09509701E-01 + 3.27658355E-01 4.77363765E-01 5.69377780E-01 6.27733111E-01 + 6.68431878E-01 6.83088839E-01 6.97581112E-01 7.05447316E-01 + 7.12159753E-01 7.14745462E-01 7.14416862E-01 7.13650107E-01 + 7.16327012E-01 7.17853010E-01 7.15676486E-01 7.13243961E-01 + 7.07553208E-01 6.86647356E-01 6.75647914E-01 6.63126767E-01 + 6.05470419E-01 4.50630069E-01 1.65718973E-01 9.79274437E-02 + 9.81043428E-02 4.17208701E-01 6.74490333E-01 7.23829806E-01 + 7.41810024E-01 7.65965283E-01 7.75825620E-01 7.69759357E-01 + 7.65597880E-01 7.63279498E-01 7.59915113E-01 7.54472256E-01 + 7.50819385E-01 7.46470451E-01 7.41225719E-01 7.33105123E-01 + 7.24384665E-01 7.13833988E-01 7.01362669E-01 6.79389179E-01 + 6.59785509E-01 6.27573788E-01 5.13730884E-01 2.07101613E-01 + 9.85138938E-02 1.46989733E-01 1.21194661E-01 1.83104575E-01 + 2.58709341E-01 3.07421386E-01 3.28801751E-01 2.06640169E-01 + 1.05803423E-01 1.68881357E-01 2.15232998E-01 3.99141788E-01 + 5.29105186E-01 6.06184542E-01 6.43317163E-01 6.66621685E-01 + 6.87121212E-01 6.99877858E-01 7.09065437E-01 7.15008318E-01 + 7.20209181E-01 7.22458422E-01 7.20409691E-01 7.21556962E-01 + 7.22944379E-01 7.21782923E-01 7.17921793E-01 7.14811742E-01 + 7.08920419E-01 6.87272549E-01 6.80672824E-01 6.66490197E-01 + 6.02284849E-01 3.44344735E-01 1.07493982E-01 9.78252962E-02 + 1.32718027E-01 4.63543892E-01 6.71763897E-01 7.21321642E-01 + 7.38067567E-01 7.60631144E-01 7.67227888E-01 7.63159990E-01 + 7.60639429E-01 7.58374393E-01 7.54039168E-01 7.46742547E-01 + 7.42701590E-01 7.40377486E-01 7.37312198E-01 7.31196940E-01 + 7.25714326E-01 7.17271328E-01 7.06639588E-01 6.89917743E-01 + 6.70125723E-01 6.31079614E-01 4.80263054E-01 1.37855306E-01 + 9.78082195E-02 9.78479534E-02 9.78202000E-02 9.89436358E-02 + 1.11194640E-01 1.17607847E-01 1.39813676E-01 1.02058344E-01 + 1.04809903E-01 2.12668046E-01 4.19121146E-01 5.53742349E-01 + 6.19204044E-01 6.57703280E-01 6.75191641E-01 6.89764559E-01 + 7.03605115E-01 7.10645854E-01 7.16828942E-01 7.22609639E-01 + 7.26485193E-01 7.28446543E-01 7.26903915E-01 7.28337705E-01 + 7.27387846E-01 7.25515068E-01 7.20335126E-01 7.16633677E-01 + 7.09770143E-01 6.92775667E-01 6.84607923E-01 6.70050204E-01 + 5.99899828E-01 3.31130952E-01 1.07395463E-01 9.78065357E-02 + 2.68265903E-01 5.54878712E-01 6.81904197E-01 7.18621373E-01 + 7.31661260E-01 7.53199518E-01 7.58152544E-01 7.57693172E-01 + 7.55008042E-01 7.52269030E-01 7.45501876E-01 7.37490058E-01 + 7.32869148E-01 7.31544733E-01 7.31265426E-01 7.24743247E-01 + 7.20397651E-01 7.14499533E-01 7.01884449E-01 6.85785949E-01 + 6.67744994E-01 6.21892750E-01 4.17536765E-01 1.16066769E-01 + 9.78027210E-02 9.78004485E-02 9.77997109E-02 9.77992266E-02 + 9.78074744E-02 9.78245065E-02 9.79259908E-02 9.94712263E-02 + 1.78392708E-01 3.95552605E-01 5.61638176E-01 6.30443990E-01 + 6.63261056E-01 6.82290614E-01 6.93475544E-01 7.03151524E-01 + 7.12217569E-01 7.17498541E-01 7.24233687E-01 7.29276955E-01 + 7.32156634E-01 7.33476520E-01 7.33738244E-01 7.33882844E-01 + 7.31539547E-01 7.28531718E-01 7.22357213E-01 7.18533695E-01 + 7.09185362E-01 6.97994709E-01 6.88486397E-01 6.74554050E-01 + 6.13206625E-01 4.60123599E-01 1.61329910E-01 9.79105085E-02 + 3.19887877E-01 5.50481617E-01 6.84604466E-01 7.15976894E-01 + 7.27940142E-01 7.47844040E-01 7.51256406E-01 7.51845419E-01 + 7.49085069E-01 7.45769799E-01 7.37471998E-01 7.29617476E-01 + 7.22830772E-01 7.23168433E-01 7.25084901E-01 7.20599949E-01 + 7.15747118E-01 7.08692968E-01 6.96283937E-01 6.76704824E-01 + 6.43990278E-01 5.85923791E-01 2.83831775E-01 9.95966718E-02 + 9.78041887E-02 9.78032500E-02 9.78017971E-02 9.78011265E-02 + 9.77997035E-02 9.77994129E-02 9.80954617E-02 1.47765085E-01 + 3.21717739E-01 5.10423779E-01 6.12973630E-01 6.61693454E-01 + 6.84332728E-01 6.97783947E-01 7.06012726E-01 7.11999059E-01 + 7.19073474E-01 7.25497246E-01 7.31431127E-01 7.35993683E-01 + 7.38212347E-01 7.39232957E-01 7.39921212E-01 7.39058912E-01 + 7.35608220E-01 7.31192231E-01 7.23352551E-01 7.20821321E-01 + 7.09763944E-01 7.01209128E-01 6.93531096E-01 6.83535755E-01 + 6.47379100E-01 5.76939821E-01 3.73148412E-01 1.47447079E-01 + 3.24458539E-01 5.51357448E-01 6.84604943E-01 7.14922667E-01 + 7.27821290E-01 7.42300391E-01 7.43825555E-01 7.45185852E-01 + 7.42714822E-01 7.40417361E-01 7.32744575E-01 7.23369122E-01 + 7.13569701E-01 7.12520063E-01 7.15963602E-01 7.14783370E-01 + 7.09028065E-01 7.00538695E-01 6.88048184E-01 6.58221781E-01 + 5.66939950E-01 4.04538512E-01 1.18359096E-01 9.78109315E-02 + 9.78070349E-02 9.78050530E-02 9.78037938E-02 9.78023708E-02 + 9.78013724E-02 9.79172736E-02 1.38302743E-01 3.36130768E-01 + 5.20795047E-01 6.00976527E-01 6.44793212E-01 6.77617848E-01 + 6.96003556E-01 7.08787024E-01 7.15064704E-01 7.20284700E-01 + 7.26305544E-01 7.32658088E-01 7.38426208E-01 7.42493689E-01 + 7.44720280E-01 7.45871305E-01 7.46244311E-01 7.44131267E-01 + 7.38914669E-01 7.33930945E-01 7.24800348E-01 7.23436773E-01 + 7.11108744E-01 7.05018640E-01 6.99398339E-01 6.92414403E-01 + 6.72025681E-01 6.21977627E-01 5.41573048E-01 3.55954856E-01 + 3.76058519E-01 5.67247212E-01 6.81117475E-01 7.10164189E-01 + 7.23780990E-01 7.35045969E-01 7.34181464E-01 7.35734463E-01 + 7.34390497E-01 7.34697580E-01 7.28163898E-01 7.18601048E-01 + 7.06739366E-01 7.00185239E-01 7.00477183E-01 7.03904688E-01 + 6.98266864E-01 6.89109623E-01 6.70228899E-01 6.13139033E-01 + 3.78863245E-01 1.35147765E-01 9.78323892E-02 9.78150144E-02 + 9.78109986E-02 9.78067517E-02 9.78054851E-02 9.78042185E-02 + 9.78072211E-02 1.02684677E-01 2.50708759E-01 5.02784669E-01 + 6.12245500E-01 6.49946034E-01 6.73896730E-01 6.91573322E-01 + 7.06442058E-01 7.15362191E-01 7.22610176E-01 7.28489518E-01 + 7.34346747E-01 7.39309788E-01 7.45021999E-01 7.48170137E-01 + 7.50707448E-01 7.51223207E-01 7.51344323E-01 7.48257697E-01 + 7.42745042E-01 7.36436486E-01 7.31366456E-01 7.25521445E-01 + 7.14589953E-01 7.09503472E-01 7.07554221E-01 6.99627459E-01 + 6.78409159E-01 6.43848062E-01 5.96739054E-01 4.95604008E-01 + 4.49378461E-01 5.64967930E-01 6.69997871E-01 7.07046688E-01 + 7.18137383E-01 7.21102178E-01 7.23529577E-01 7.23334610E-01 + 7.26116240E-01 7.26509452E-01 7.21641064E-01 7.13389814E-01 + 7.00018764E-01 6.87856555E-01 6.78473353E-01 6.86908185E-01 + 6.81372344E-01 6.66617155E-01 6.27014935E-01 5.12949467E-01 + 1.58922851E-01 9.78857726E-02 9.78253335E-02 9.78187248E-02 + 9.78145748E-02 9.78101045E-02 9.78073180E-02 9.78234634E-02 + 1.12735942E-01 1.96116686E-01 4.06288296E-01 5.77915430E-01 + 6.46775901E-01 6.70829833E-01 6.89627647E-01 7.03876793E-01 + 7.13479400E-01 7.21777618E-01 7.29600251E-01 7.35927880E-01 + 7.41307557E-01 7.46151388E-01 7.50196159E-01 7.53191531E-01 + 7.55581200E-01 7.55465746E-01 7.55800009E-01 7.52862930E-01 + 7.47845531E-01 7.41403461E-01 7.35639691E-01 7.28253067E-01 + 7.18126833E-01 7.12767839E-01 7.10741103E-01 7.00577140E-01 + 6.83496535E-01 6.54863954E-01 6.14654183E-01 5.41765273E-01 + 2.98662454E-01 5.48187792E-01 6.68794334E-01 7.02279925E-01 + 7.08195746E-01 7.12338924E-01 7.09598362E-01 7.07302988E-01 + 7.13649511E-01 7.16710687E-01 7.11255193E-01 7.03386903E-01 + 6.88096404E-01 6.73941016E-01 6.54011965E-01 6.58048272E-01 + 6.41608477E-01 6.08168185E-01 5.28067529E-01 2.65901238E-01 + 9.85126048E-02 9.78351906E-02 9.78328064E-02 9.78269577E-02 + 9.78214145E-02 9.78171527E-02 9.78279412E-02 1.17065825E-01 + 2.80780673E-01 4.68570828E-01 5.52833378E-01 6.38536990E-01 + 6.71365499E-01 6.88848794E-01 7.03430474E-01 7.13327646E-01 + 7.21050382E-01 7.29148388E-01 7.35756278E-01 7.42029190E-01 + 7.47085452E-01 7.52466679E-01 7.55000114E-01 7.57849157E-01 + 7.59793639E-01 7.60122359E-01 7.59684503E-01 7.57131755E-01 + 7.52586603E-01 7.45716989E-01 7.40176201E-01 7.31451571E-01 + 7.21982002E-01 7.16163337E-01 7.11501718E-01 6.97112024E-01 + 6.81552768E-01 6.54945135E-01 6.19900644E-01 5.63410699E-01 + 1.13510996E-01 4.85549867E-01 6.64418459E-01 6.95154428E-01 + 6.93992734E-01 7.01348007E-01 6.93369031E-01 6.82456732E-01 + 6.86685741E-01 7.03374207E-01 6.99152052E-01 6.88672483E-01 + 6.64863050E-01 6.37001157E-01 5.93269229E-01 5.76309383E-01 + 5.18112004E-01 4.48835522E-01 2.30698720E-01 1.01834744E-01 + 9.78518873E-02 9.78460684E-02 9.78406370E-02 9.78359431E-02 + 9.78297368E-02 9.78900567E-02 1.29318565E-01 2.98030406E-01 + 4.70140815E-01 5.95700145E-01 6.49367332E-01 6.72965288E-01 + 6.87330961E-01 7.02168405E-01 7.12340534E-01 7.20262587E-01 + 7.27411330E-01 7.34624624E-01 7.40882635E-01 7.48063326E-01 + 7.52681077E-01 7.56631076E-01 7.59622157E-01 7.61257648E-01 + 7.62417972E-01 7.63041079E-01 7.62763619E-01 7.61067271E-01 + 7.58002400E-01 7.50756502E-01 7.44814932E-01 7.35752583E-01 + 7.23974228E-01 7.17732728E-01 7.12724864E-01 6.98171318E-01 + 6.79418504E-01 6.50902033E-01 6.18815184E-01 5.74308753E-01 + 1.00853540E-01 3.80972862E-01 6.42761528E-01 6.76856160E-01 + 6.72478735E-01 6.79441452E-01 6.66500032E-01 6.55562937E-01 + 6.46628618E-01 6.68342412E-01 6.76067233E-01 6.70090139E-01 + 6.13292813E-01 5.07990777E-01 3.64001483E-01 2.69290060E-01 + 1.88587949E-01 1.49296120E-01 9.93000716E-02 9.78629366E-02 + 9.78583023E-02 9.78542268E-02 9.78484154E-02 9.78468657E-02 + 1.01989001E-01 1.71729460E-01 3.76669109E-01 4.99585569E-01 + 5.80750406E-01 6.38564110E-01 6.70919716E-01 6.89354241E-01 + 7.01571941E-01 7.11600482E-01 7.18599677E-01 7.26051331E-01 + 7.33160555E-01 7.39495277E-01 7.45988488E-01 7.52622187E-01 + 7.56742179E-01 7.60446668E-01 7.62453496E-01 7.63556123E-01 + 7.64506340E-01 7.65285850E-01 7.64946878E-01 7.63946593E-01 + 7.63132691E-01 7.57338345E-01 7.52841055E-01 7.44249403E-01 + 7.28921175E-01 7.19752133E-01 7.14415908E-01 7.00646698E-01 + 6.80018544E-01 6.49719059E-01 6.12579346E-01 5.82284331E-01 + 9.77455452E-02 1.65082023E-01 5.50004721E-01 6.31715894E-01 + 6.35407865E-01 6.33671582E-01 6.13304913E-01 6.00029111E-01 + 5.82817316E-01 5.89233935E-01 6.29071832E-01 6.42261446E-01 + 5.10702848E-01 1.72159418E-01 1.10631704E-01 9.93985981E-02 + 9.81139690E-02 9.79352221E-02 9.78668928E-02 9.78649035E-02 + 9.78634581E-02 9.78596881E-02 9.78660956E-02 1.11652739E-01 + 2.87313432E-01 4.38239247E-01 5.26098430E-01 5.77648401E-01 + 6.28026187E-01 6.63340330E-01 6.84428751E-01 6.99046075E-01 + 7.09316313E-01 7.16570258E-01 7.23203659E-01 7.30229914E-01 + 7.36704290E-01 7.43100703E-01 7.49282062E-01 7.54789472E-01 + 7.59523332E-01 7.62181938E-01 7.64194846E-01 7.65538573E-01 + 7.66755998E-01 7.67993808E-01 7.67340660E-01 7.66356468E-01 + 7.65878856E-01 7.61201024E-01 7.58949637E-01 7.51336455E-01 + 7.36021876E-01 7.25771904E-01 7.16993749E-01 7.02547848E-01 + 6.81901157E-01 6.48698807E-01 6.09882414E-01 5.88957846E-01 + 9.77486297E-02 9.78744403E-02 2.33695000E-01 5.12395084E-01 + 5.38227379E-01 5.26001573E-01 4.41340506E-01 4.08371985E-01 + 3.28416169E-01 3.49827081E-01 5.46678364E-01 5.91386318E-01 + 3.08536708E-01 9.93916690E-02 9.78813544E-02 9.78743285E-02 + 9.78727415E-02 9.78710428E-02 9.78691205E-02 9.78674740E-02 + 9.78655368E-02 9.78628471E-02 9.83313918E-02 1.74432889E-01 + 4.05068487E-01 5.27633786E-01 5.83597481E-01 6.16645217E-01 + 6.58545434E-01 6.81904852E-01 6.96805060E-01 7.07577229E-01 + 7.15779662E-01 7.22048700E-01 7.27879107E-01 7.33325243E-01 + 7.38635361E-01 7.44503975E-01 7.50772834E-01 7.56486595E-01 + 7.60703027E-01 7.63153076E-01 7.65595078E-01 7.67620265E-01 + 7.69699335E-01 7.71319211E-01 7.70480454E-01 7.68978834E-01 + 7.68927157E-01 7.65966952E-01 7.63024569E-01 7.55403876E-01 + 7.46225536E-01 7.38496840E-01 7.21224606E-01 7.04062402E-01 + 6.81603253E-01 6.51896715E-01 6.20315790E-01 5.98322213E-01 + 9.77691859E-02 9.77815539E-02 9.89749655E-02 2.22425520E-01 + 2.35506043E-01 2.19326735E-01 1.38499215E-01 1.20571233E-01 + 1.03046365E-01 1.07161619E-01 3.12041759E-01 4.55582678E-01 + 1.44119322E-01 9.79102999E-02 9.78944525E-02 9.78856310E-02 + 9.78799611E-02 9.78752673E-02 9.78743806E-02 9.78721231E-02 + 9.78695825E-02 9.78659093E-02 9.89868492E-02 1.93339303E-01 + 4.22461301E-01 5.46547592E-01 5.93845367E-01 6.37421727E-01 + 6.76007152E-01 6.93420768E-01 7.04616427E-01 7.12429821E-01 + 7.18484163E-01 7.23591864E-01 7.29028404E-01 7.33578026E-01 + 7.38686264E-01 7.44638264E-01 7.50285268E-01 7.56537855E-01 + 7.60764658E-01 7.63301373E-01 7.66626120E-01 7.69441783E-01 + 7.72390187E-01 7.74848521E-01 7.74208128E-01 7.72255003E-01 + 7.72598863E-01 7.70096779E-01 7.66048670E-01 7.58672535E-01 + 7.52015173E-01 7.50976920E-01 7.25258291E-01 7.07532763E-01 + 6.86107159E-01 6.58451140E-01 6.33191109E-01 6.04803503E-01 + 9.78051797E-02 9.78167281E-02 9.78326499E-02 9.86427218E-02 + 9.88848209E-02 9.86156687E-02 9.78811160E-02 9.78779271E-02 + 9.78762582E-02 9.78917405E-02 1.03519149E-01 1.67349249E-01 + 9.80207399E-02 9.79161039E-02 9.79131684E-02 9.79047045E-02 + 9.78957787E-02 9.78895202E-02 9.78842750E-02 9.78799909E-02 + 9.78768170E-02 9.78711918E-02 9.78679061E-02 1.03783168E-01 + 2.44096875E-01 4.67325985E-01 5.65860868E-01 6.32903337E-01 + 6.76270008E-01 6.91416204E-01 7.04815567E-01 7.13476241E-01 + 7.18721628E-01 7.23082423E-01 7.27532804E-01 7.32112586E-01 + 7.36760259E-01 7.42161453E-01 7.47769415E-01 7.54630685E-01 + 7.59888411E-01 7.63367176E-01 7.67218173E-01 7.71117032E-01 + 7.74947703E-01 7.78302968E-01 7.78604865E-01 7.75992155E-01 + 7.76732326E-01 7.73765028E-01 7.68950999E-01 7.62092054E-01 + 7.56286979E-01 7.53869712E-01 7.33392537E-01 7.13588417E-01 + 6.93250775E-01 6.62965477E-01 6.38808548E-01 6.08414948E-01 + 9.78462398E-02 9.78465602E-02 9.78531316E-02 9.78560597E-02 + 9.78640765E-02 9.78725851E-02 9.78756994E-02 9.78776067E-02 + 9.78887603E-02 9.79096293E-02 9.79241729E-02 9.80517343E-02 + 9.79282781E-02 9.79266241E-02 9.79240835E-02 9.79166254E-02 + 9.79080647E-02 9.79030579E-02 9.78965834E-02 9.78898183E-02 + 9.78855714E-02 9.78819653E-02 9.78820175E-02 1.10220797E-01 + 2.64838934E-01 5.02889156E-01 6.13681853E-01 6.60678625E-01 + 6.82806373E-01 6.98151469E-01 7.09027231E-01 7.13643849E-01 + 7.17519939E-01 7.21358955E-01 7.25566626E-01 7.30888844E-01 + 7.34807849E-01 7.39697218E-01 7.44855762E-01 7.51862526E-01 + 7.58282006E-01 7.62694240E-01 7.67389536E-01 7.72570550E-01 + 7.76819587E-01 7.80963957E-01 7.82018006E-01 7.79941916E-01 + 7.80641437E-01 7.78357625E-01 7.72602499E-01 7.67801523E-01 + 7.60662377E-01 7.55414307E-01 7.37727880E-01 7.19918966E-01 + 6.99956238E-01 6.68563724E-01 6.42392457E-01 6.06906354E-01 + 9.78863314E-02 9.78824645E-02 9.78771821E-02 9.78835896E-02 + 9.78873521E-02 9.78909731E-02 9.78948697E-02 9.79023352E-02 + 9.79193524E-02 9.79349315E-02 9.79397669E-02 9.79393497E-02 + 9.79367942E-02 9.79356989E-02 9.79318768E-02 9.79235247E-02 + 9.79143083E-02 9.79091078E-02 9.79042724E-02 9.78979170E-02 + 9.78930891E-02 9.81756821E-02 1.56007141E-01 3.73334616E-01 + 5.69185376E-01 6.33557796E-01 6.59845412E-01 6.74353480E-01 + 6.88653767E-01 7.00438559E-01 7.07217455E-01 7.11960733E-01 + 7.15248406E-01 7.18601465E-01 7.22658277E-01 7.26970792E-01 + 7.31584191E-01 7.36820281E-01 7.43443310E-01 7.49628186E-01 + 7.57505715E-01 7.62796283E-01 7.68110693E-01 7.74111927E-01 + 7.78696120E-01 7.83619165E-01 7.85464108E-01 7.84500539E-01 + 7.85372615E-01 7.84161866E-01 7.78058112E-01 7.72803247E-01 + 7.67618775E-01 7.60654509E-01 7.41938293E-01 7.26086676E-01 + 7.02965438E-01 6.74319744E-01 6.45600438E-01 6.11285985E-01 + 9.79332253E-02 9.79223251E-02 9.79091376E-02 9.79120731E-02 + 9.79128182E-02 9.79120284E-02 9.79186222E-02 9.79326516E-02 + 9.79472920E-02 9.79548097E-02 9.79538858E-02 9.79530439E-02 + 9.79477391E-02 9.79443491E-02 9.79382172E-02 9.79299396E-02 + 9.79204923E-02 9.79154259E-02 9.79124233E-02 9.79053304E-02 + 9.79114249E-02 1.08036980E-01 3.03852409E-01 5.13922393E-01 + 5.91542840E-01 6.28051996E-01 6.55771077E-01 6.76408768E-01 + 6.89067304E-01 6.97094977E-01 7.01090217E-01 7.03867018E-01 + 7.06908584E-01 7.10494161E-01 7.15013385E-01 7.24248409E-01 + 7.32152402E-01 7.37744808E-01 7.43602157E-01 7.48231351E-01 + 7.53394961E-01 7.60436237E-01 7.66909361E-01 7.74085045E-01 + 7.79877603E-01 7.86325037E-01 7.89108336E-01 7.89481044E-01 + 7.90384769E-01 7.89151669E-01 7.85059094E-01 7.77703345E-01 + 7.73911536E-01 7.66502321E-01 7.46588528E-01 7.31424510E-01 + 7.06304610E-01 6.77895963E-01 6.48694932E-01 6.15788400E-01 + 9.79827046E-02 9.79656279E-02 9.79488045E-02 9.79374051E-02 + 9.79316086E-02 9.79305357E-02 9.79405791E-02 9.79503766E-02 + 9.79623348E-02 9.79687497E-02 9.79685783E-02 9.79663804E-02 + 9.79603007E-02 9.79535952E-02 9.79489759E-02 9.79392901E-02 + 9.79264379E-02 9.79218110E-02 9.79203656E-02 9.79138091E-02 + 9.80170593E-02 1.53047934E-01 4.40095395E-01 5.60947955E-01 + 6.17549896E-01 6.47083044E-01 6.66404843E-01 6.77517056E-01 + 6.85540915E-01 6.90642416E-01 6.93813145E-01 6.99018240E-01 + 7.06357718E-01 7.12448835E-01 7.17078388E-01 7.23522484E-01 + 7.31315911E-01 7.39427447E-01 7.45936930E-01 7.50657499E-01 + 7.55128264E-01 7.60571301E-01 7.65694082E-01 7.70887733E-01 + 7.78943479E-01 7.88414657E-01 7.92152584E-01 7.93668151E-01 + 7.94612169E-01 7.93860674E-01 7.92255461E-01 7.86419034E-01 + 7.82037318E-01 7.76211381E-01 7.58233845E-01 7.38164306E-01 + 7.16397524E-01 6.85531378E-01 6.53484523E-01 6.21050894E-01 + 9.80248600E-02 9.80138928E-02 9.79886651E-02 9.79720503E-02 + 9.79592055E-02 9.79528800E-02 9.79615077E-02 9.79690030E-02 + 9.79754105E-02 9.79769155E-02 9.79778990E-02 9.79766771E-02 + 9.79722366E-02 9.79660079E-02 9.79626253E-02 9.79552567E-02 + 9.79414955E-02 9.79307443E-02 9.79289263E-02 9.84242037E-02 + 1.76971674E-01 4.32040274E-01 5.49311519E-01 5.99840224E-01 + 6.29930317E-01 6.52585924E-01 6.66619480E-01 6.75816357E-01 + 6.83857799E-01 6.90550804E-01 6.98571742E-01 7.04802930E-01 + 7.10691869E-01 7.14906096E-01 7.18540907E-01 7.22697496E-01 + 7.30049908E-01 7.39540219E-01 7.47326374E-01 7.52578139E-01 + 7.57266879E-01 7.62136281E-01 7.67021894E-01 7.71415293E-01 + 7.78554916E-01 7.89950907E-01 7.95171499E-01 7.97465205E-01 + 7.99059153E-01 7.98908055E-01 7.97292829E-01 7.92067468E-01 + 7.86488116E-01 7.80013800E-01 7.74957418E-01 7.58000374E-01 + 7.34208465E-01 6.98409081E-01 6.69079602E-01 6.26141429E-01 + 9.80842784E-02 9.80722234E-02 9.80337560E-02 9.80081260E-02 + 9.79947597E-02 9.79871824E-02 9.79882255E-02 9.79946479E-02 + 9.79910120E-02 9.79888886E-02 9.79876369E-02 9.79858860E-02 + 9.79845375E-02 9.79802236E-02 9.79735851E-02 9.79656205E-02 + 9.79556590E-02 9.79443267E-02 9.79544893E-02 1.17924772E-01 + 3.14734459E-01 5.09890556E-01 5.74075043E-01 6.10209405E-01 + 6.36661053E-01 6.55357778E-01 6.67718410E-01 6.77586794E-01 + 6.85842633E-01 6.94256783E-01 7.02824712E-01 7.10885108E-01 + 7.16001689E-01 7.20273554E-01 7.22793281E-01 7.22864985E-01 + 7.28334904E-01 7.39258707E-01 7.47512877E-01 7.52671957E-01 + 7.57554531E-01 7.62470961E-01 7.67439127E-01 7.72682965E-01 + 7.80636787E-01 7.90886939E-01 7.96904266E-01 8.00135136E-01 + 8.02370548E-01 8.03378701E-01 8.02507162E-01 7.97498286E-01 + 7.91255355E-01 7.83820689E-01 7.78547406E-01 7.70350873E-01 + 7.54351139E-01 7.29321241E-01 6.83888912E-01 6.29751801E-01 + 9.81569439E-02 9.81413722E-02 9.81082395E-02 9.80723277E-02 + 9.80523080E-02 9.80408490E-02 9.80289727E-02 9.80230644E-02 + 9.80103835E-02 9.80030671E-02 9.80023444E-02 9.79990959E-02 + 9.79967415E-02 9.79949161E-02 9.79843959E-02 9.79743302E-02 + 9.79638025E-02 9.79547501E-02 9.79660451E-02 1.12349480E-01 + 2.90509641E-01 5.15724540E-01 5.85027933E-01 6.18453681E-01 + 6.38246596E-01 6.51044250E-01 6.60063803E-01 6.66811645E-01 + 6.69071078E-01 6.92870975E-01 7.08971858E-01 7.16364622E-01 + 7.21912205E-01 7.26720631E-01 7.29963064E-01 7.29460359E-01 + 7.30316043E-01 7.40832329E-01 7.50061274E-01 7.54111230E-01 + 7.58359909E-01 7.62133181E-01 7.66353905E-01 7.71009982E-01 + 7.80783415E-01 7.90911376E-01 7.97889948E-01 8.02128315E-01 + 8.05171728E-01 8.06775570E-01 8.07226300E-01 8.02458346E-01 + 7.95377135E-01 7.90253937E-01 7.82060087E-01 7.74705172E-01 + 7.59852350E-01 7.42521524E-01 6.94507420E-01 6.32378578E-01 + 9.82341543E-02 9.82191041E-02 9.82013419E-02 9.81602594E-02 + 9.81164053E-02 9.80924144E-02 9.80724096E-02 9.80599374E-02 + 9.80424508E-02 9.80250537E-02 9.80212241E-02 9.80139822E-02 + 9.80100483E-02 9.80064645E-02 9.80014652E-02 9.79892388E-02 + 9.79771167E-02 9.80075523E-02 1.29262432E-01 3.27769250E-01 + 4.92374152E-01 5.80620885E-01 6.14678919E-01 6.43963516E-01 + 6.58962309E-01 6.69805527E-01 6.83093011E-01 6.96206212E-01 + 7.05180645E-01 7.11241186E-01 7.17465699E-01 7.23260045E-01 + 7.28301108E-01 7.33456492E-01 7.38290787E-01 7.39082098E-01 + 7.33733237E-01 7.38315940E-01 7.52718747E-01 7.57338464E-01 + 7.60472476E-01 7.62555003E-01 7.66280591E-01 7.70561755E-01 + 7.76918292E-01 7.91138232E-01 7.99177170E-01 8.03663075E-01 + 8.06488454E-01 8.08397055E-01 8.09014320E-01 8.06629002E-01 + 7.98193872E-01 7.94269204E-01 7.88853049E-01 7.80809879E-01 + 7.69058645E-01 7.44778991E-01 6.98897004E-01 6.34924948E-01 + 9.83072817E-02 9.82949063E-02 9.82821956E-02 9.82458815E-02 + 9.81874540E-02 9.81357768E-02 9.81115997E-02 9.80959013E-02 + 9.80800912E-02 9.80562866E-02 9.80423316E-02 9.80328768E-02 + 9.80254635E-02 9.80211049E-02 9.80198383E-02 9.80129167E-02 + 9.80002433E-02 9.83932987E-02 1.73334643E-01 3.96559507E-01 + 5.46431839E-01 6.04322076E-01 6.40799284E-01 6.63322628E-01 + 6.81263030E-01 6.97224081E-01 7.05609560E-01 7.11264133E-01 + 7.15301812E-01 7.18955457E-01 7.22414315E-01 7.27421284E-01 + 7.32543826E-01 7.37558663E-01 7.43585169E-01 7.46852338E-01 + 7.41249263E-01 7.43594110E-01 7.55344510E-01 7.60110497E-01 + 7.62611508E-01 7.64321625E-01 7.68745661E-01 7.72283375E-01 + 7.76845455E-01 7.90053844E-01 8.00299525E-01 8.04837108E-01 + 8.07442427E-01 8.09154212E-01 8.09519291E-01 8.07648897E-01 + 8.00982296E-01 7.96306491E-01 7.91780651E-01 7.87430763E-01 + 7.78576374E-01 7.46682823E-01 6.95594668E-01 6.37048125E-01 + 9.83461142E-02 9.83410552E-02 9.83327404E-02 9.83009562E-02 + 9.82505754E-02 9.81923789E-02 9.81472135E-02 9.81296375E-02 + 9.81113240E-02 9.80905145E-02 9.80724618E-02 9.80594531E-02 + 9.80485380E-02 9.80432481E-02 9.80370566E-02 9.80313867E-02 + 9.80282426E-02 1.03308916E-01 2.36613199E-01 4.43580091E-01 + 5.55292249E-01 6.13402307E-01 6.48867905E-01 6.68016970E-01 + 6.81957066E-01 6.91257715E-01 6.99070811E-01 7.08361208E-01 + 7.15732396E-01 7.21072733E-01 7.26572931E-01 7.32694089E-01 + 7.38519073E-01 7.43586004E-01 7.48556614E-01 7.52374291E-01 + 7.49590516E-01 7.49753177E-01 7.57667542E-01 7.61794567E-01 + 7.64385939E-01 7.67081857E-01 7.72641957E-01 7.75026977E-01 + 7.79319227E-01 7.89829850E-01 8.01205456E-01 8.06132197E-01 + 8.08693528E-01 8.09768975E-01 8.10008526E-01 8.08453202E-01 + 8.03534150E-01 7.98970103E-01 7.94528425E-01 7.90193617E-01 + 7.81211317E-01 7.45001674E-01 6.96611822E-01 6.38375640E-01 + 9.83620211E-02 9.83617529E-02 9.83575284E-02 9.83445570E-02 + 9.83024985E-02 9.82434601E-02 9.81869251E-02 9.81481373E-02 + 9.81329679E-02 9.81145948E-02 9.81022492E-02 9.80870426E-02 + 9.80755910E-02 9.80656072E-02 9.80549082E-02 9.80441123E-02 + 9.80349481E-02 9.87627804E-02 1.85321480E-01 4.36935455E-01 + 5.59489369E-01 6.18583798E-01 6.42774165E-01 6.53536201E-01 + 6.57874763E-01 6.68068290E-01 6.86953902E-01 7.05720127E-01 + 7.16076314E-01 7.23212004E-01 7.29205966E-01 7.35063732E-01 + 7.42071152E-01 7.47838795E-01 7.52341151E-01 7.56317735E-01 + 7.56094813E-01 7.57168651E-01 7.60481775E-01 7.63543308E-01 + 7.66820967E-01 7.70504177E-01 7.76760578E-01 7.79019356E-01 + 7.82566428E-01 7.90392756E-01 7.99893022E-01 8.06110859E-01 + 8.09494317E-01 8.10792506E-01 8.11541378E-01 8.10043454E-01 + 8.06914568E-01 8.02033424E-01 7.97426283E-01 7.93223083E-01 + 7.83528745E-01 7.47008801E-01 6.98597729E-01 6.36440992E-01 + 9.83743742E-02 9.83752236E-02 9.83736292E-02 9.83698592E-02 + 9.83591080E-02 9.83050987E-02 9.82328877E-02 9.81704071E-02 + 9.81446877E-02 9.81281698E-02 9.81175005E-02 9.81076211E-02 + 9.80937257E-02 9.80828479E-02 9.80717763E-02 9.80590433E-02 + 9.80481282E-02 9.80546176E-02 1.14095643E-01 3.56266618E-01 + 5.31216145E-01 6.00081623E-01 6.13057911E-01 6.04272664E-01 + 6.10359669E-01 6.43418849E-01 6.82135761E-01 7.02562630E-01 + 7.15621233E-01 7.25346982E-01 7.32042968E-01 7.38158286E-01 + 7.44812667E-01 7.51410544E-01 7.55954921E-01 7.59764433E-01 + 7.61313915E-01 7.62191176E-01 7.63807833E-01 7.66828597E-01 + 7.70008683E-01 7.74163663E-01 7.81097353E-01 7.85435736E-01 + 7.88528860E-01 7.93983221E-01 7.99103022E-01 8.05124283E-01 + 8.09560239E-01 8.11839283E-01 8.13361168E-01 8.12557697E-01 + 8.10762346E-01 8.05904508E-01 8.01431477E-01 7.96236277E-01 + 7.89055943E-01 7.54625976E-01 7.00601935E-01 6.25427186E-01 + 9.83815268E-02 9.83825698E-02 9.83849540E-02 9.83889550E-02 + 9.83952209E-02 9.83972549E-02 9.82984379E-02 9.82130170E-02 + 9.81671363E-02 9.81435850E-02 9.81294662E-02 9.81255621E-02 + 9.81125906E-02 9.81007367E-02 9.80906412E-02 9.80767757E-02 + 9.80679244E-02 9.80590656E-02 9.81552005E-02 1.55040696E-01 + 4.36530888E-01 5.50789714E-01 5.32596767E-01 5.34041166E-01 + 5.94933987E-01 6.42091632E-01 6.79076195E-01 6.99001193E-01 + 7.13048935E-01 7.26186574E-01 7.34403789E-01 7.41539061E-01 + 7.47837245E-01 7.53531456E-01 7.58239806E-01 7.61830747E-01 + 7.63635814E-01 7.65128791E-01 7.67115593E-01 7.70201147E-01 + 7.73232222E-01 7.77466774E-01 7.85170317E-01 7.91349471E-01 + 7.96020687E-01 8.00102234E-01 8.03830683E-01 8.07837367E-01 + 8.10407519E-01 8.13350081E-01 8.16330075E-01 8.17193210E-01 + 8.18054199E-01 8.14943433E-01 8.09573472E-01 8.01544189E-01 + 7.92293847E-01 7.59942055E-01 7.02650070E-01 6.23485148E-01 + 9.83849466E-02 9.83874202E-02 9.83909667E-02 9.83986109E-02 + 9.84312743E-02 9.84915346E-02 9.83712450E-02 9.82611924E-02 + 9.81950313E-02 9.81690958E-02 9.81490240E-02 9.81375054E-02 + 9.81279090E-02 9.81171057E-02 9.81076285E-02 9.80965868E-02 + 9.80865061E-02 9.80752185E-02 9.80691910E-02 9.86924395E-02 + 1.97139740E-01 4.15112048E-01 3.09555769E-01 4.27572906E-01 + 5.90361357E-01 6.46333992E-01 6.79251909E-01 6.98678672E-01 + 7.11595833E-01 7.24674046E-01 7.34537303E-01 7.41667390E-01 + 7.48305500E-01 7.53853619E-01 7.58578122E-01 7.62427986E-01 + 7.65122414E-01 7.67695010E-01 7.69612551E-01 7.73155451E-01 + 7.76028335E-01 7.79761910E-01 7.86087513E-01 7.93554783E-01 + 7.99927235E-01 8.04624975E-01 8.07675064E-01 8.10150146E-01 + 8.12357426E-01 8.16239119E-01 8.20359707E-01 8.22428048E-01 + 8.23973775E-01 8.23942542E-01 8.21584880E-01 8.08440149E-01 + 7.99149752E-01 7.61956394E-01 7.07812011E-01 6.26286864E-01 + 9.83891264E-02 9.83912498E-02 9.83932763E-02 9.83970463E-02 + 9.84067842E-02 9.84151736E-02 9.83506739E-02 9.82946381E-02 + 9.82442424E-02 9.82031748E-02 9.81735140E-02 9.81532633E-02 + 9.81437266E-02 9.81301144E-02 9.81184244E-02 9.81111303E-02 + 9.81019586E-02 9.80891585E-02 9.80801955E-02 9.80708748E-02 + 9.90833193E-02 1.39557004E-01 1.88829049E-01 4.98085678E-01 + 6.35046184E-01 6.74803317E-01 6.95245922E-01 7.05959916E-01 + 7.13837087E-01 7.22577691E-01 7.32975960E-01 7.41013706E-01 + 7.48279452E-01 7.54799426E-01 7.59746313E-01 7.63233483E-01 + 7.66757846E-01 7.70624816E-01 7.74069548E-01 7.77310669E-01 + 7.79067457E-01 7.82357693E-01 7.87143111E-01 7.94270098E-01 + 8.01948488E-01 8.06846619E-01 8.09272051E-01 8.10571790E-01 + 8.13621223E-01 8.19184661E-01 8.25755298E-01 8.28014195E-01 + 8.30811918E-01 8.31304073E-01 8.28963280E-01 8.12574565E-01 + 8.01302969E-01 7.64759123E-01 7.06862271E-01 6.15213990E-01 + 9.83925387E-02 9.83927101E-02 9.83933434E-02 9.83940214E-02 + 9.83924270E-02 9.83804017E-02 9.83409211E-02 9.83060002E-02 + 9.82761979E-02 9.82379168E-02 9.82012525E-02 9.81766433E-02 + 9.81642902E-02 9.81530473E-02 9.81359407E-02 9.81225818E-02 + 9.81151685E-02 9.81022343E-02 9.80925635E-02 1.01212621E-01 + 1.51131794E-01 3.13411206E-01 5.30260563E-01 6.16237879E-01 + 6.49361074E-01 6.74896598E-01 6.89998567E-01 7.00565100E-01 + 7.11807728E-01 7.19202459E-01 7.28928626E-01 7.40070343E-01 + 7.47981608E-01 7.54827023E-01 7.60018945E-01 7.63912320E-01 + 7.67739892E-01 7.72419095E-01 7.77437866E-01 7.81919181E-01 + 7.83305407E-01 7.84308255E-01 7.86097646E-01 7.91612387E-01 + 7.98615992E-01 8.05809200E-01 8.10046494E-01 8.12747657E-01 + 8.16432893E-01 8.22660625E-01 8.31223249E-01 8.34835052E-01 + 8.37002575E-01 8.37970912E-01 8.36205661E-01 8.18650305E-01 + 8.02809060E-01 7.62564659E-01 6.99173629E-01 6.07731223E-01 + 9.83947366E-02 9.83941928E-02 9.83935446E-02 9.83917266E-02 + 9.83849391E-02 9.83668044E-02 9.83390957E-02 9.83170494E-02 + 9.82908458E-02 9.82606933E-02 9.82278138E-02 9.82033610E-02 + 9.81860012E-02 9.81772617E-02 9.81602222E-02 9.81384888E-02 + 9.81274098E-02 9.81854200E-02 1.26081675E-01 3.07433367E-01 + 4.75460559E-01 5.62973022E-01 5.85939348E-01 6.09048665E-01 + 6.38207793E-01 6.83215082E-01 7.00464487E-01 7.10898519E-01 + 7.18160450E-01 7.23762155E-01 7.28964031E-01 7.37509906E-01 + 7.44414508E-01 7.51596570E-01 7.57665753E-01 7.61981964E-01 + 7.66306639E-01 7.72488475E-01 7.79657781E-01 7.86594689E-01 + 7.89826274E-01 7.89458752E-01 7.89509177E-01 7.92286694E-01 + 7.97396541E-01 8.04490089E-01 8.10189784E-01 8.14928412E-01 + 8.19559276E-01 8.27538013E-01 8.35964978E-01 8.41590285E-01 + 8.43485415E-01 8.43155563E-01 8.42317641E-01 8.23005795E-01 + 8.03572595E-01 7.61157393E-01 7.00085282E-01 6.10390782E-01 + 9.83967409E-02 9.83960032E-02 9.83947515E-02 9.83923301E-02 + 9.83861983E-02 9.83771533E-02 9.83568355E-02 9.83313993E-02 + 9.83048603E-02 9.82782766E-02 9.82490703E-02 9.82245058E-02 + 9.82091427E-02 9.81971174E-02 9.81814340E-02 9.81584191E-02 + 9.94852930E-02 1.93042666E-01 4.34639513E-01 5.79358101E-01 + 6.25165462E-01 6.42387211E-01 6.52140379E-01 6.59351110E-01 + 6.68354511E-01 6.89754128E-01 7.00145304E-01 7.08765626E-01 + 7.15400994E-01 7.21167207E-01 7.26550519E-01 7.31405258E-01 + 7.36818969E-01 7.41688251E-01 7.46654868E-01 7.54732966E-01 + 7.62350917E-01 7.69657254E-01 7.79408157E-01 7.89617121E-01 + 7.95283854E-01 7.97241867E-01 7.96811819E-01 7.97700584E-01 + 7.99536526E-01 8.05152595E-01 8.10398340E-01 8.15558732E-01 + 8.22443724E-01 8.30521941E-01 8.40919614E-01 8.47231030E-01 + 8.51507246E-01 8.48719597E-01 8.47896457E-01 8.28055799E-01 + 8.03536832E-01 7.62197375E-01 7.00581849E-01 6.13372445E-01 + 9.83988270E-02 9.83982161E-02 9.83965620E-02 9.83939171E-02 + 9.83891115E-02 9.83829275E-02 9.83710811E-02 9.83517841E-02 + 9.83249620E-02 9.82945934E-02 9.82656032E-02 9.82405692E-02 + 9.82228667E-02 9.82124805E-02 9.82049033E-02 1.00241758E-01 + 2.03780144E-01 4.54099983E-01 5.76866269E-01 6.17685616E-01 + 6.38249755E-01 6.50441945E-01 6.58459783E-01 6.63921952E-01 + 6.71347797E-01 6.81430936E-01 6.94719851E-01 7.02035129E-01 + 7.07450509E-01 7.10846186E-01 7.08474994E-01 7.11097836E-01 + 7.20035970E-01 7.28783488E-01 7.38268256E-01 7.47575283E-01 + 7.58668721E-01 7.69915283E-01 7.81468987E-01 7.91658640E-01 + 7.99642980E-01 8.03510725E-01 8.04577589E-01 8.04492712E-01 + 8.03729296E-01 8.05987954E-01 8.10320020E-01 8.15613389E-01 + 8.23244810E-01 8.32184136E-01 8.42685819E-01 8.51734579E-01 + 8.55773866E-01 8.54031801E-01 8.54310215E-01 8.33354712E-01 + 8.08302879E-01 7.64553964E-01 7.03238189E-01 6.06915295E-01 + 9.84007642E-02 9.84010845E-02 9.84002873E-02 9.83986259E-02 + 9.83947963E-02 9.83888954E-02 9.83788297E-02 9.83624607E-02 + 9.83417556E-02 9.83140469E-02 9.82779860E-02 9.82499421E-02 + 9.82316434E-02 9.82898697E-02 1.15275152E-01 1.85210973E-01 + 3.66541237E-01 5.74440479E-01 6.27623379E-01 6.50077164E-01 + 6.57323778E-01 6.56304717E-01 6.60474718E-01 6.63676083E-01 + 6.64755404E-01 6.70374095E-01 6.82426155E-01 6.90799236E-01 + 6.96629047E-01 6.99190378E-01 7.04584002E-01 7.12270975E-01 + 7.20846176E-01 7.29229867E-01 7.39524066E-01 7.50686646E-01 + 7.58510947E-01 7.66621590E-01 7.78260410E-01 7.91170180E-01 + 8.00260603E-01 8.06037784E-01 8.08582723E-01 8.09386909E-01 + 8.09437335E-01 8.09860349E-01 8.12348723E-01 8.17587674E-01 + 8.27334046E-01 8.39700460E-01 8.49522054E-01 8.55330944E-01 + 8.57816041E-01 8.57461572E-01 8.57552290E-01 8.46930444E-01 + 8.30175340E-01 7.79721856E-01 7.06080794E-01 6.10213399E-01 + 9.84071568E-02 9.84076262E-02 9.84099731E-02 9.84109938E-02 + 9.84097943E-02 9.84017625E-02 9.83893871E-02 9.83723328E-02 + 9.83544141E-02 9.83363539E-02 9.83036906E-02 9.82721820E-02 + 9.99745876E-02 1.92573220E-01 4.15875256E-01 5.59673250E-01 + 6.32311523E-01 6.55393064E-01 6.63510442E-01 6.70615435E-01 + 6.73479438E-01 6.75042450E-01 6.75272107E-01 6.74742222E-01 + 6.71096444E-01 6.66795373E-01 6.67369664E-01 6.74116135E-01 + 6.80589557E-01 6.86297238E-01 6.96546197E-01 7.05304027E-01 + 7.14230537E-01 7.23783910E-01 7.35289156E-01 7.48442233E-01 + 7.57928610E-01 7.65719771E-01 7.76390016E-01 7.89233029E-01 + 7.99782038E-01 8.06463659E-01 8.09836507E-01 8.12807679E-01 + 8.14698815E-01 8.15703273E-01 8.17446947E-01 8.24845910E-01 + 8.37132692E-01 8.48460972E-01 8.54494512E-01 8.57272744E-01 + 8.59292626E-01 8.60287189E-01 8.58474374E-01 8.53892326E-01 + 8.37507546E-01 8.03487539E-01 7.33760655E-01 6.13032579E-01 + 9.84161571E-02 9.84180644E-02 9.84221548E-02 9.84249562E-02 + 9.84278247E-02 9.84220654E-02 9.84065533E-02 9.83861834E-02 + 9.83664691E-02 9.83508006E-02 9.83332470E-02 9.83284935E-02 + 1.18884526E-01 3.09276581E-01 5.16065478E-01 6.13617063E-01 + 6.50298417E-01 6.67666376E-01 6.77073538E-01 6.82497740E-01 + 6.86850190E-01 6.89671993E-01 6.90312207E-01 6.92893088E-01 + 6.95120454E-01 6.91259682E-01 6.85231507E-01 6.83084249E-01 + 6.90662682E-01 6.97342992E-01 7.03785479E-01 7.12245345E-01 + 7.18858004E-01 7.30952740E-01 7.43174791E-01 7.55287409E-01 + 7.63962209E-01 7.71771848E-01 7.81881273E-01 7.91501701E-01 + 8.01170588E-01 8.07267845E-01 8.10567260E-01 8.15657079E-01 + 8.20915341E-01 8.25543106E-01 8.28958988E-01 8.36102307E-01 + 8.46103132E-01 8.52772295E-01 8.56270730E-01 8.58340859E-01 + 8.62613201E-01 8.67737293E-01 8.60369682E-01 8.56125176E-01 + 8.40794981E-01 8.02978396E-01 7.36024737E-01 6.15991771E-01 + 9.84218717E-02 9.84251648E-02 9.84291360E-02 9.84355360E-02 + 9.84424129E-02 9.84418392E-02 9.84211266E-02 9.84009355E-02 + 9.83840004E-02 9.83682573E-02 9.83528197E-02 9.83403027E-02 + 1.07316703E-01 2.99093306E-01 5.36803126E-01 6.16421223E-01 + 6.44618034E-01 6.61153674E-01 6.72750354E-01 6.83275700E-01 + 6.93564773E-01 6.98616445E-01 7.01691210E-01 7.04659224E-01 + 7.06733108E-01 7.08645046E-01 7.10018694E-01 7.10970163E-01 + 7.12215960E-01 7.16163039E-01 7.23827422E-01 7.31250644E-01 + 7.40005255E-01 7.47034371E-01 7.53960669E-01 7.58819520E-01 + 7.64067054E-01 7.71921873E-01 7.84248173E-01 7.95029700E-01 + 8.03428471E-01 8.08741271E-01 8.11876059E-01 8.18594754E-01 + 8.26991856E-01 8.35705757E-01 8.42613816E-01 8.49439323E-01 + 8.55031073E-01 8.57208014E-01 8.58339906E-01 8.61019731E-01 + 8.69500995E-01 8.77307892E-01 8.65478694E-01 8.56958568E-01 + 8.37648392E-01 7.85636783E-01 7.18176067E-01 5.86852849E-01 + 9.84267443E-02 9.84306857E-02 9.84366685E-02 9.84492674E-02 + 9.84726623E-02 9.84601155E-02 9.84329954E-02 9.84111950E-02 + 9.83956978E-02 9.83827189E-02 9.83672291E-02 9.95146260E-02 + 1.86205357E-01 4.39342201E-01 5.61432362E-01 6.15924299E-01 + 6.50618374E-01 6.73864961E-01 6.84749782E-01 6.90816760E-01 + 6.95857108E-01 6.99512482E-01 7.02545226E-01 7.05124080E-01 + 7.07218945E-01 7.10169017E-01 7.14257181E-01 7.18575835E-01 + 7.22341835E-01 7.27250993E-01 7.33196318E-01 7.38902032E-01 + 7.44890869E-01 7.50772417E-01 7.56464601E-01 7.62365997E-01 + 7.67714620E-01 7.76931405E-01 7.86787868E-01 7.98066437E-01 + 8.05194199E-01 8.09449792E-01 8.13686430E-01 8.24214339E-01 + 8.32386017E-01 8.40235889E-01 8.47201228E-01 8.51559162E-01 + 8.55431437E-01 8.57094884E-01 8.58128786E-01 8.64748836E-01 + 8.76419485E-01 8.79960537E-01 8.72950792E-01 8.56848598E-01 + 8.20159435E-01 7.73184121E-01 7.01504469E-01 5.58003068E-01 + 9.84299183E-02 9.84327570E-02 9.84377339E-02 9.84458849E-02 + 9.84541848E-02 9.84476879E-02 9.84273851E-02 9.84131098E-02 + 9.84025598E-02 9.83910486E-02 9.83769894E-02 9.87778679E-02 + 1.68813646E-01 4.34103668E-01 5.58134377E-01 6.11161351E-01 + 6.43214583E-01 6.66363120E-01 6.77121520E-01 6.83693767E-01 + 6.87753975E-01 6.91795588E-01 6.94368422E-01 6.98023021E-01 + 7.01916516E-01 7.05639541E-01 7.11114109E-01 7.14581609E-01 + 7.20098197E-01 7.25870907E-01 7.35376060E-01 7.39003897E-01 + 7.45959282E-01 7.54982769E-01 7.60392249E-01 7.66000450E-01 + 7.73670614E-01 7.82789767E-01 7.92204380E-01 8.00381064E-01 + 8.06805372E-01 8.09263468E-01 8.11703086E-01 8.18265498E-01 + 8.26389074E-01 8.31075430E-01 8.36233139E-01 8.41982126E-01 + 8.47216189E-01 8.52079332E-01 8.55977833E-01 8.57797205E-01 + 8.61504674E-01 8.67796719E-01 8.52104068E-01 8.29966903E-01 + 8.04117680E-01 7.61432588E-01 6.72219038E-01 5.10215402E-01 + 9.84295979E-02 9.84316319E-02 9.84338596E-02 9.84369144E-02 + 9.84364450E-02 9.84330699E-02 9.84240696E-02 9.84163657E-02 + 9.84076038E-02 9.83962938E-02 9.83830914E-02 9.83656943E-02 + 9.85537842E-02 1.26673132E-01 3.14841807E-01 5.20081639E-01 + 5.96614242E-01 6.34002209E-01 6.46563292E-01 6.50037944E-01 + 6.40808821E-01 6.38819933E-01 6.46483362E-01 6.63446069E-01 + 6.77183390E-01 6.87413752E-01 6.94191635E-01 6.99669361E-01 + 7.07650959E-01 7.15314686E-01 7.23182499E-01 7.27595508E-01 + 7.29716897E-01 7.32594311E-01 7.48974979E-01 7.62857437E-01 + 7.67726421E-01 7.72770107E-01 7.81186163E-01 7.88558304E-01 + 7.94024646E-01 7.96262205E-01 7.99682200E-01 8.03267241E-01 + 8.09629023E-01 8.11099648E-01 8.11248243E-01 8.13226819E-01 + 8.16229284E-01 8.20866525E-01 8.31157744E-01 8.43324304E-01 + 8.50228727E-01 8.50770235E-01 8.22949946E-01 7.98569739E-01 + 7.69969881E-01 7.33360112E-01 6.24263644E-01 4.19718593E-01 + 9.84275788E-02 9.84283611E-02 9.84290615E-02 9.84295160E-02 + 9.84283164E-02 9.84261855E-02 9.84224007E-02 9.84163880E-02 + 9.84106064E-02 9.84026343E-02 9.83914807E-02 9.83768255E-02 + 9.83463824E-02 9.83111262E-02 9.85313132E-02 1.12644896E-01 + 2.41803393E-01 4.71573800E-01 5.37230372E-01 5.09626389E-01 + 4.59784687E-01 4.48061168E-01 5.10466635E-01 5.97859025E-01 + 6.41177475E-01 6.67811990E-01 6.83089495E-01 6.91069305E-01 + 6.96246147E-01 7.01505899E-01 7.09759891E-01 7.13306844E-01 + 7.15007842E-01 7.19464600E-01 7.26522207E-01 7.49368191E-01 + 7.58143842E-01 7.60735989E-01 7.62466550E-01 7.64919758E-01 + 7.61688113E-01 7.50154674E-01 7.47693121E-01 7.52019048E-01 + 7.55718410E-01 7.63577640E-01 7.67325640E-01 7.69514799E-01 + 7.64265537E-01 7.67852485E-01 7.79628813E-01 8.06855440E-01 + 8.22713315E-01 8.24495494E-01 7.91268706E-01 7.60116458E-01 + 7.14356303E-01 6.52219474E-01 4.68029827E-01 1.33531347E-01 + 9.84262526E-02 9.84261110E-02 9.84256417E-02 9.84247029E-02 + 9.84241664E-02 9.84232873E-02 9.84206647E-02 9.84167233E-02 + 9.84124988E-02 9.84055698E-02 9.83972177E-02 9.83813256E-02 + 9.83486399E-02 9.83034298E-02 9.82607752E-02 9.82267410E-02 + 9.84890684E-02 1.30807713E-01 2.40719527E-01 2.10050002E-01 + 1.36501223E-01 1.21579677E-01 1.60365611E-01 3.48539948E-01 + 5.54381669E-01 6.17953122E-01 6.51092947E-01 6.66250825E-01 + 6.73572659E-01 6.79298580E-01 6.87248588E-01 6.95383012E-01 + 6.99450135E-01 7.03109026E-01 7.09325671E-01 7.25367546E-01 + 7.30086088E-01 7.31056094E-01 7.25866973E-01 7.20238626E-01 + 7.18971670E-01 7.18084633E-01 7.27242589E-01 7.36816108E-01 + 7.41732240E-01 7.45943487E-01 7.48716235E-01 7.48620570E-01 + 7.47005641E-01 7.50473499E-01 7.54075289E-01 7.59716272E-01 + 7.81163573E-01 7.72176445E-01 7.35945165E-01 7.19336689E-01 + 6.26889288E-01 4.56469536E-01 1.47384316E-01 9.60825682E-02 + 9.84256417E-02 9.84253734E-02 9.84246358E-02 9.84237790E-02 + 9.84231010E-02 9.84220579E-02 9.84195918E-02 9.84167010E-02 + 9.84128267E-02 9.84078869E-02 9.84013155E-02 9.83795896E-02 + 9.83464047E-02 9.83001143E-02 9.82569531E-02 9.82284099E-02 + 9.82009023E-02 9.81857404E-02 9.92517471E-02 9.85905230E-02 + 9.80946571E-02 9.80515108E-02 9.80363116E-02 1.08633034E-01 + 3.30932617E-01 5.06503761E-01 5.69697380E-01 5.95366180E-01 + 6.03861690E-01 6.17742777E-01 6.33467317E-01 6.43559456E-01 + 6.51953876E-01 6.59581900E-01 6.64684653E-01 6.67765498E-01 + 6.71189427E-01 6.57669306E-01 6.56489253E-01 6.61100209E-01 + 6.65078580E-01 6.69525087E-01 6.74154639E-01 6.79696083E-01 + 6.80854797E-01 6.71146631E-01 6.64936006E-01 6.60561740E-01 + 6.46997392E-01 6.47713304E-01 6.51796460E-01 6.56071126E-01 + 6.62768722E-01 6.73304260E-01 6.48055255E-01 6.04371428E-01 + 3.74238402E-01 1.29519314E-01 9.60596949E-02 9.60221440E-02 +/ + +SGAS + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 + 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 +/ \ No newline at end of file diff --git a/examples/ADGPRS/5spot/include/output_spec.in b/examples/ADGPRS/5spot/include/output_spec.in new file mode 100644 index 000000000..cf3349945 --- /dev/null +++ b/examples/ADGPRS/5spot/include/output_spec.in @@ -0,0 +1,4 @@ +OUTPUT + HDF5 TIME 5SPOT/ + #ASCII REPORT "prefix" / +/ diff --git a/examples/ADGPRS/5spot/include/permx.in b/examples/ADGPRS/5spot/include/permx.in new file mode 100644 index 000000000..190c7c216 --- /dev/null +++ b/examples/ADGPRS/5spot/include/permx.in @@ -0,0 +1,3602 @@ +PERMX +1.689380 +1.000000 +1.000000 +2.355020 +2.069750 +3.325630 +8.336200 +16.573400 +7.983790 +3.925630 +3.103330 +1.127350 +2.951120 +2.101170 +2.370590 +2.014860 +1.000000 +6.425090 +7.853040 +18.041700 +22.128800 +7.655520 +24.171000 +24.577400 +27.158200 +18.706400 +37.687500 +55.394600 +101.874000 +150.281000 +155.992000 +114.668000 +63.256300 +66.068200 +25.420900 +22.696800 +16.201300 +48.838100 +48.330500 +109.483000 +210.441000 +1000.000000 +889.638000 +918.264000 +1000.000000 +1000.000000 +812.203000 +1000.000000 +545.739000 +222.580000 +114.680000 +142.766000 +89.738500 +51.275900 +76.303100 +21.196900 +41.803700 +27.900000 +21.920600 +21.912500 +1.775090 +1.000000 +1.000000 +1.000000 +1.899890 +2.971990 +20.853900 +15.890300 +9.806230 +6.516030 +7.405960 +4.815990 +9.370370 +14.042400 +6.658660 +12.188800 +2.202860 +8.593170 +11.098900 +15.752600 +26.498500 +18.288900 +11.331400 +13.112200 +17.654300 +25.426500 +85.590700 +212.952000 +212.543000 +68.371300 +83.629500 +95.607500 +78.306100 +123.407000 +44.115000 +33.213800 +29.119600 +23.949800 +171.530000 +237.961000 +74.897800 +315.365000 +401.521000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +585.848000 +504.710000 +379.104000 +249.992000 +129.494000 +84.904400 +61.433800 +51.153400 +64.112300 +46.971600 +39.377000 +8.570850 +19.904600 +3.100750 +1.143150 +2.497050 +1.107660 +2.352710 +4.467240 +8.329110 +14.966600 +34.393000 +6.030440 +16.690100 +21.725800 +22.864200 +8.571660 +10.606400 +2.390000 +4.407000 +3.887770 +3.067070 +11.182100 +13.435600 +16.278200 +8.271400 +8.418890 +10.873600 +30.296500 +48.824700 +147.774000 +144.606000 +86.432700 +60.041300 +130.243000 +213.789000 +123.509000 +69.552100 +42.279000 +35.750000 +33.093600 +319.473000 +453.334000 +251.223000 +263.758000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +825.981000 +164.790000 +405.464000 +1000.000000 +254.984000 +185.817000 +181.774000 +91.608600 +27.472400 +36.586800 +26.425700 +11.014400 +6.990540 +4.835070 +1.000000 +1.159330 +2.089040 +5.702310 +3.712710 +10.355600 +9.719000 +23.609000 +40.650000 +24.648100 +20.245000 +46.953500 +16.594300 +37.885700 +21.621500 +6.625130 +13.734600 +10.035800 +4.666560 +5.687600 +8.447120 +7.830740 +6.300870 +23.632700 +37.103200 +46.291700 +127.654000 +73.101300 +148.073000 +132.561000 +270.618000 +512.190000 +842.583000 +624.618000 +90.427400 +74.928300 +101.377000 +75.333000 +77.496900 +75.371900 +130.700000 +263.403000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +800.523000 +294.209000 +148.991000 +768.924000 +1000.000000 +464.242000 +200.027000 +86.517600 +26.822700 +44.868700 +23.212100 +17.338500 +12.444000 +16.014400 +1.326120 +1.000000 +1.000000 +2.580000 +4.686460 +49.616600 +67.007900 +81.248900 +36.986600 +25.800400 +9.333400 +23.669800 +20.178900 +28.880700 +13.713600 +3.996750 +6.843330 +21.106400 +9.021560 +9.998440 +7.925860 +43.653800 +54.197600 +45.813400 +60.795700 +96.558300 +194.447000 +495.278000 +176.385000 +235.794000 +731.916000 +532.023000 +461.963000 +207.532000 +87.513100 +118.195000 +436.466000 +478.761000 +314.129000 +109.132000 +132.968000 +142.437000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +455.417000 +212.318000 +131.011000 +334.460000 +715.384000 +648.225000 +401.560000 +54.608600 +58.525200 +25.204300 +13.072900 +12.200700 +6.009190 +14.570800 +1.000000 +1.000000 +1.746730 +2.832080 +19.268000 +21.827200 +93.653100 +73.687100 +118.848000 +104.819000 +25.013800 +9.086640 +10.459700 +8.140620 +23.410200 +9.163370 +5.975610 +5.108610 +13.648400 +24.125500 +30.005000 +18.781600 +49.503600 +212.983000 +135.805000 +195.549000 +918.261000 +482.774000 +276.157000 +226.162000 +694.925000 +350.511000 +161.948000 +478.507000 +95.170300 +161.898000 +333.824000 +200.523000 +259.940000 +107.208000 +86.595800 +106.628000 +808.458000 +1000.000000 +661.958000 +692.752000 +539.489000 +123.789000 +206.646000 +107.650000 +202.709000 +434.340000 +527.497000 +96.481200 +347.917000 +76.869500 +20.185400 +27.048400 +18.883000 +17.872200 +4.022040 +5.004090 +1.711990 +4.416640 +6.925160 +15.656200 +45.484700 +98.615600 +77.045800 +45.140700 +20.359900 +10.836000 +14.583400 +13.113700 +49.184800 +16.889100 +16.267800 +7.812330 +12.520900 +54.234800 +33.158400 +44.710900 +57.808900 +182.775000 +323.074000 +457.349000 +1000.000000 +772.414000 +635.086000 +588.219000 +646.382000 +529.500000 +136.228000 +69.367100 +72.756900 +75.069800 +154.301000 +152.794000 +408.965000 +181.889000 +204.370000 +99.790200 +296.520000 +1000.000000 +1000.000000 +864.827000 +434.415000 +126.887000 +203.245000 +81.743200 +115.981000 +121.185000 +112.756000 +101.339000 +200.704000 +53.194600 +8.153860 +31.897300 +54.897800 +8.642530 +8.834100 +5.617410 +4.709260 +15.051500 +15.193200 +20.470400 +49.963000 +87.779600 +54.014300 +58.647200 +16.957500 +20.231500 +17.545600 +14.210500 +57.183700 +18.507300 +14.968500 +29.512700 +23.219800 +112.073000 +35.568400 +42.415700 +72.076400 +273.445000 +704.424000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +880.110000 +1000.000000 +337.102000 +254.120000 +132.360000 +412.905000 +181.026000 +203.287000 +109.815000 +105.929000 +276.135000 +210.205000 +194.431000 +280.524000 +451.749000 +1000.000000 +630.379000 +1000.000000 +228.580000 +160.923000 +80.917400 +61.520700 +80.931100 +233.719000 +189.186000 +115.350000 +45.053300 +23.452000 +78.014800 +44.621200 +7.052000 +4.774810 +23.990500 +14.217100 +12.416900 +24.947900 +87.655100 +232.120000 +78.139000 +94.517100 +38.910400 +17.225100 +10.613200 +43.842800 +29.042000 +28.259800 +23.618900 +43.469500 +30.337100 +54.786400 +17.453700 +20.174500 +16.043100 +67.336500 +38.355200 +323.127000 +446.714000 +693.139000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +325.405000 +289.087000 +344.324000 +545.266000 +323.805000 +244.416000 +127.362000 +93.586200 +104.578000 +130.135000 +207.405000 +703.351000 +612.340000 +1000.000000 +1000.000000 +1000.000000 +243.844000 +447.390000 +141.588000 +81.092900 +185.355000 +379.980000 +496.191000 +719.516000 +83.265400 +43.342900 +31.154700 +24.813900 +22.475200 +9.495290 +13.366000 +12.279800 +51.823600 +32.408600 +116.916000 +434.220000 +137.605000 +71.394300 +26.127800 +19.819700 +5.877500 +18.335100 +15.168500 +42.071600 +17.580800 +36.867000 +35.228600 +45.189300 +16.583900 +19.035000 +20.584000 +60.749900 +110.413000 +67.460500 +216.135000 +573.823000 +753.707000 +313.983000 +587.056000 +841.884000 +646.462000 +260.668000 +243.943000 +155.072000 +237.395000 +294.253000 +259.814000 +96.789800 +125.496000 +80.131100 +304.447000 +786.030000 +637.622000 +324.728000 +213.386000 +484.970000 +1000.000000 +1000.000000 +200.586000 +255.386000 +95.678900 +666.980000 +284.545000 +114.560000 +60.108700 +42.609500 +67.501600 +55.404900 +65.477700 +7.524570 +9.145700 +7.181910 +31.866400 +63.752300 +113.183000 +126.836000 +117.625000 +168.077000 +80.556600 +11.015900 +6.710080 +12.414600 +18.846300 +5.146490 +8.342510 +11.547700 +3.276540 +10.933900 +9.604730 +22.935600 +93.865400 +102.067000 +54.578500 +52.275300 +133.204000 +225.304000 +252.876000 +675.032000 +974.357000 +705.382000 +1000.000000 +1000.000000 +331.680000 +659.523000 +266.328000 +548.005000 +455.420000 +244.020000 +437.374000 +528.127000 +816.300000 +1000.000000 +813.196000 +182.911000 +171.015000 +809.513000 +692.607000 +632.230000 +1000.000000 +413.701000 +140.001000 +400.738000 +292.870000 +149.466000 +29.153600 +24.723100 +52.800800 +21.225200 +25.395900 +3.872130 +12.418900 +13.108300 +13.398000 +37.404000 +57.906100 +154.327000 +146.555000 +57.161500 +53.457400 +17.133900 +12.351100 +13.148700 +5.736230 +7.689380 +11.839100 +9.656700 +4.334280 +2.142850 +11.003000 +9.180740 +10.944900 +21.218700 +36.968400 +66.454500 +131.651000 +189.388000 +142.948000 +793.485000 +980.537000 +942.564000 +1000.000000 +961.693000 +803.214000 +966.170000 +1000.000000 +910.290000 +1000.000000 +1000.000000 +451.873000 +676.576000 +1000.000000 +1000.000000 +840.867000 +618.940000 +286.526000 +252.114000 +843.931000 +572.444000 +1000.000000 +989.635000 +912.575000 +416.031000 +121.328000 +23.109200 +50.500600 +46.431700 +94.482400 +86.869000 +57.772900 +3.315120 +4.256650 +11.429900 +10.270700 +30.640800 +80.424300 +84.175400 +49.548200 +50.891700 +29.233000 +16.511300 +12.018800 +11.133300 +6.157210 +11.716300 +8.394780 +6.354800 +3.787790 +5.590350 +20.572400 +14.262700 +6.552050 +10.207200 +15.282600 +39.100800 +135.900000 +164.581000 +101.228000 +366.074000 +329.985000 +506.197000 +826.133000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +908.185000 +1000.000000 +1000.000000 +811.797000 +587.383000 +736.891000 +1000.000000 +1000.000000 +892.564000 +938.272000 +694.994000 +620.231000 +968.559000 +704.720000 +1000.000000 +416.060000 +179.812000 +56.239500 +64.672500 +29.499800 +27.566300 +20.612300 +63.108200 +58.500500 +14.762700 +4.539220 +13.397800 +20.552800 +39.495900 +97.508000 +43.237700 +23.484000 +22.941400 +18.398700 +13.394500 +3.593400 +1.197860 +2.347890 +4.442110 +4.315970 +5.870670 +1.524020 +2.195280 +7.352370 +11.223400 +3.952580 +5.061480 +27.198900 +91.686800 +226.176000 +67.947000 +43.921100 +229.678000 +162.602000 +760.621000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +627.045000 +609.212000 +822.567000 +617.222000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +626.730000 +1000.000000 +1000.000000 +543.739000 +296.314000 +110.150000 +69.718100 +37.502700 +59.363900 +33.324700 +15.176500 +18.124400 +5.608740 +5.179060 +7.658320 +13.567800 +36.417300 +37.272100 +56.331300 +11.340600 +16.735300 +10.851400 +5.496540 +7.215940 +10.524600 +13.181200 +3.988020 +2.096920 +2.042510 +2.149460 +1.783750 +6.056130 +8.753140 +9.138920 +6.327950 +14.158200 +16.433000 +141.279000 +104.182000 +112.991000 +266.159000 +405.663000 +485.339000 +376.057000 +228.546000 +838.268000 +973.016000 +526.478000 +461.522000 +413.333000 +220.461000 +910.765000 +540.471000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +557.111000 +429.396000 +703.977000 +270.068000 +200.978000 +112.803000 +33.767000 +43.774900 +26.526000 +58.713600 +31.847400 +1.048480 +2.305030 +4.932990 +11.958900 +6.144620 +4.540620 +13.055300 +12.957900 +12.591300 +7.524540 +4.996070 +10.254000 +12.365600 +14.784300 +15.881800 +9.087480 +1.961930 +2.756330 +3.699030 +4.517190 +8.162750 +3.044270 +4.761060 +16.955500 +42.242700 +43.436700 +49.007900 +127.054000 +293.118000 +203.405000 +180.433000 +163.452000 +68.744800 +560.611000 +252.347000 +332.285000 +298.836000 +587.049000 +571.284000 +745.229000 +909.220000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +827.206000 +675.195000 +714.201000 +850.663000 +195.182000 +90.456700 +119.864000 +58.524700 +26.771800 +22.592600 +30.389700 +1.185910 +1.766420 +3.856410 +12.180300 +7.851540 +7.916640 +16.115000 +21.805800 +12.454700 +13.131100 +4.773180 +8.684460 +25.069400 +26.268500 +13.808500 +8.593120 +3.042910 +2.047700 +1.920710 +5.767820 +6.327420 +12.255000 +11.574800 +27.789400 +30.539300 +61.490900 +60.738100 +537.068000 +158.827000 +352.987000 +1000.000000 +471.635000 +407.330000 +960.612000 +394.698000 +681.625000 +489.443000 +449.165000 +319.148000 +346.126000 +1000.000000 +733.585000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +754.175000 +1000.000000 +519.895000 +812.313000 +619.096000 +607.999000 +651.510000 +319.163000 +226.215000 +196.911000 +144.584000 +69.776200 +14.811000 +22.796100 +1.155930 +3.554360 +18.479200 +10.658300 +31.755900 +27.794200 +16.000800 +14.639100 +13.319100 +6.288760 +6.321050 +11.188900 +9.934380 +10.191500 +9.836010 +5.368670 +3.404070 +7.403330 +7.438650 +12.102200 +17.467600 +28.198500 +25.689200 +30.031600 +35.065000 +82.187100 +231.664000 +669.979000 +1000.000000 +407.831000 +1000.000000 +1000.000000 +533.636000 +784.849000 +358.759000 +1000.000000 +951.324000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +724.040000 +1000.000000 +1000.000000 +1000.000000 +624.448000 +438.444000 +199.059000 +345.092000 +572.194000 +549.684000 +369.080000 +673.767000 +289.043000 +458.986000 +484.447000 +152.313000 +30.807600 +18.972300 +20.122700 +1.774450 +3.328130 +11.143300 +36.471400 +18.074800 +25.391800 +16.240100 +13.678200 +5.360840 +6.600570 +6.931610 +6.450090 +10.548700 +3.926700 +11.793900 +8.870520 +12.498500 +9.896960 +13.697800 +30.536000 +27.214700 +33.829900 +14.422000 +26.304300 +33.567400 +82.813700 +278.977000 +896.920000 +1000.000000 +1000.000000 +854.674000 +1000.000000 +735.154000 +941.535000 +392.984000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +694.543000 +240.696000 +331.043000 +503.688000 +474.453000 +834.236000 +629.984000 +388.992000 +124.151000 +789.586000 +346.390000 +207.170000 +58.235400 +59.384400 +28.536000 +1.532270 +18.585600 +13.659000 +22.177700 +36.496600 +18.689100 +9.738980 +7.698560 +3.385680 +6.290010 +16.691000 +5.650510 +1.949870 +11.462500 +8.961630 +1.799600 +11.211800 +9.638740 +12.424100 +19.824300 +29.401400 +32.522400 +37.246000 +47.661200 +26.487300 +99.494300 +364.627000 +141.281000 +194.152000 +760.310000 +1000.000000 +1000.000000 +576.349000 +397.334000 +654.318000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +896.168000 +850.996000 +1000.000000 +1000.000000 +744.261000 +557.773000 +251.873000 +375.471000 +817.917000 +722.695000 +186.423000 +71.669400 +62.925800 +51.347300 +1.034790 +3.739800 +3.199910 +4.831420 +3.696120 +4.788150 +5.141720 +4.966120 +10.447500 +11.982600 +3.378630 +4.717740 +2.137090 +6.555980 +16.956200 +16.394000 +11.271900 +39.057800 +24.220700 +7.517440 +37.495400 +69.787200 +58.337900 +45.582300 +118.658000 +223.476000 +431.422000 +865.621000 +323.918000 +520.087000 +1000.000000 +970.860000 +282.219000 +469.202000 +427.896000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +553.311000 +1000.000000 +307.319000 +212.699000 +208.347000 +288.809000 +121.995000 +160.533000 +122.214000 +337.625000 +1.152970 +3.493600 +8.830530 +2.977410 +4.204740 +6.454460 +2.835620 +4.378630 +4.668230 +12.014000 +4.932670 +3.105500 +5.273490 +6.945930 +8.525370 +17.981800 +15.918900 +12.590100 +7.659860 +22.909300 +22.980900 +97.168500 +72.501500 +53.658100 +89.985300 +1000.000000 +363.928000 +664.411000 +528.538000 +634.120000 +536.991000 +609.505000 +802.796000 +458.569000 +369.189000 +727.520000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +847.544000 +122.856000 +562.277000 +153.296000 +154.949000 +214.746000 +443.398000 +605.122000 +497.254000 +223.132000 +279.139000 +3.729490 +10.173200 +6.863500 +19.685100 +12.246300 +2.809340 +8.091660 +18.247300 +10.240900 +5.686690 +9.511240 +9.940220 +12.466500 +17.308500 +8.193120 +32.139800 +25.435000 +15.769200 +35.871900 +68.092100 +79.299400 +55.651300 +85.014600 +207.669000 +120.859000 +404.159000 +633.804000 +476.259000 +469.688000 +187.490000 +182.089000 +726.058000 +539.304000 +1000.000000 +531.787000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +983.443000 +1000.000000 +886.458000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +712.015000 +186.205000 +66.765900 +415.587000 +313.797000 +142.581000 +287.042000 +189.148000 +7.480240 +17.640700 +17.559100 +17.104800 +9.872400 +18.829200 +6.898000 +3.220170 +7.004510 +9.156170 +8.720640 +20.686100 +23.468300 +16.044500 +8.632570 +25.351800 +19.866300 +32.938100 +204.615000 +86.744400 +71.921000 +205.270000 +73.592300 +147.039000 +221.576000 +194.871000 +480.942000 +451.272000 +677.178000 +187.102000 +294.294000 +232.275000 +553.913000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +989.776000 +1000.000000 +1000.000000 +803.528000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +286.967000 +661.255000 +641.646000 +159.725000 +185.045000 +325.864000 +253.017000 +417.494000 +20.193200 +3.045170 +10.157500 +21.717000 +10.287500 +12.488900 +4.903890 +3.368160 +5.280240 +20.880500 +13.717100 +13.683200 +18.186600 +15.500600 +21.808300 +25.862600 +30.105200 +86.817500 +65.820100 +68.688800 +69.035200 +92.723600 +177.386000 +61.805300 +70.905900 +68.525800 +91.499200 +253.130000 +751.616000 +855.485000 +1000.000000 +306.204000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +481.566000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +737.638000 +730.901000 +425.396000 +178.641000 +503.270000 +286.901000 +167.944000 +104.434000 +168.005000 +176.814000 +5.774720 +7.352810 +23.524100 +19.369800 +16.438800 +20.271800 +13.669600 +17.955700 +14.755100 +33.724600 +32.290200 +40.780500 +21.184900 +24.702600 +28.989800 +111.259000 +54.995500 +104.096000 +81.517900 +384.331000 +135.918000 +52.298400 +93.832000 +57.720800 +92.398800 +238.651000 +246.876000 +578.512000 +450.347000 +723.676000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +967.958000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +374.131000 +332.734000 +212.370000 +196.230000 +173.264000 +271.835000 +10.272400 +19.336000 +26.233400 +22.603900 +22.058100 +17.503800 +20.571000 +27.050200 +32.262100 +22.292200 +52.669000 +79.448400 +31.548300 +17.896000 +40.983100 +17.071000 +45.029200 +129.279000 +377.862000 +162.684000 +102.387000 +121.509000 +155.587000 +206.882000 +229.164000 +419.657000 +300.405000 +659.825000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +943.923000 +479.927000 +699.898000 +1000.000000 +1000.000000 +637.001000 +486.607000 +557.741000 +606.903000 +848.519000 +1000.000000 +731.560000 +824.269000 +360.954000 +488.327000 +448.739000 +176.902000 +279.701000 +38.584300 +26.053600 +35.660800 +36.785600 +40.977000 +18.149200 +14.692200 +34.885200 +38.250700 +25.100800 +84.205300 +116.646000 +29.784600 +7.637140 +50.025900 +121.620000 +103.660000 +265.046000 +436.365000 +310.665000 +780.080000 +258.724000 +246.392000 +194.622000 +718.157000 +871.425000 +734.579000 +828.050000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +908.896000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +858.224000 +1000.000000 +543.531000 +524.118000 +838.858000 +622.490000 +504.991000 +950.472000 +632.909000 +326.810000 +267.196000 +236.059000 +128.940000 +17.536700 +38.967300 +19.285600 +27.721900 +19.874100 +30.643900 +36.466000 +23.140200 +12.085400 +25.358900 +64.130600 +103.533000 +25.211000 +14.383000 +41.150200 +152.714000 +152.996000 +273.614000 +259.108000 +686.361000 +754.130000 +333.709000 +234.333000 +571.407000 +400.766000 +855.372000 +1000.000000 +1000.000000 +436.144000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +938.272000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +852.852000 +1000.000000 +990.593000 +245.626000 +368.166000 +511.781000 +202.685000 +171.391000 +625.048000 +342.201000 +90.299500 +90.049800 +42.621900 +71.011600 +5.994520 +6.959330 +11.838100 +26.185600 +29.851900 +45.038900 +37.858600 +24.661900 +21.350700 +12.126600 +60.117200 +135.620000 +41.274600 +34.644000 +15.571600 +20.121300 +51.437700 +223.670000 +171.477000 +259.026000 +303.617000 +339.432000 +377.571000 +1000.000000 +1000.000000 +490.182000 +903.576000 +273.964000 +258.499000 +1000.000000 +988.171000 +1000.000000 +973.583000 +1000.000000 +964.212000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +776.764000 +1000.000000 +1000.000000 +1000.000000 +793.076000 +710.446000 +446.120000 +326.217000 +311.742000 +381.758000 +203.959000 +89.996100 +415.169000 +198.473000 +78.584400 +39.798800 +23.531900 +75.871700 +1.735630 +4.413860 +12.749100 +30.440600 +49.669800 +47.985500 +19.496700 +35.842400 +21.700600 +11.933000 +16.451300 +47.382500 +52.097900 +58.777200 +29.761600 +24.927000 +48.336700 +33.956400 +114.150000 +251.621000 +385.810000 +129.973000 +343.624000 +819.683000 +634.276000 +389.383000 +214.820000 +155.944000 +420.667000 +533.267000 +246.102000 +1000.000000 +769.634000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +580.774000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +405.522000 +278.702000 +391.628000 +499.662000 +486.856000 +115.348000 +49.138100 +70.601800 +83.573900 +91.616200 +54.504000 +52.893600 +36.284300 +28.552500 +1.497290 +3.317890 +12.906900 +8.881180 +13.178700 +47.875400 +32.830100 +30.362400 +10.009700 +12.423300 +13.596800 +39.394500 +136.667000 +84.573500 +91.632400 +112.061000 +81.328900 +523.005000 +185.891000 +214.023000 +276.637000 +213.294000 +73.454100 +353.569000 +253.111000 +411.117000 +202.089000 +445.448000 +1000.000000 +538.799000 +1000.000000 +942.603000 +673.818000 +940.291000 +1000.000000 +796.395000 +1000.000000 +844.027000 +1000.000000 +512.443000 +418.934000 +378.020000 +347.079000 +703.052000 +230.132000 +554.403000 +704.399000 +524.839000 +1000.000000 +429.475000 +326.339000 +74.318300 +23.867700 +113.056000 +84.044700 +72.712500 +59.406000 +36.731300 +40.688600 +19.299100 +1.715080 +1.592960 +9.926200 +3.585720 +5.810680 +32.963400 +13.565800 +4.081950 +2.619700 +13.183100 +62.491600 +39.705500 +157.422000 +83.512600 +225.697000 +58.629700 +140.333000 +227.302000 +163.393000 +270.005000 +518.891000 +631.888000 +239.674000 +325.765000 +351.920000 +1000.000000 +925.753000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +606.695000 +527.709000 +1000.000000 +1000.000000 +976.344000 +423.526000 +253.970000 +476.355000 +352.398000 +269.083000 +551.419000 +1000.000000 +660.372000 +372.675000 +401.699000 +702.557000 +355.917000 +343.255000 +200.869000 +108.725000 +98.411400 +24.629700 +54.766200 +84.276900 +79.389500 +87.955000 +45.016500 +46.407700 +58.549600 +1.298750 +3.089030 +5.295150 +11.992700 +7.501080 +33.163800 +21.057100 +8.835900 +8.646800 +16.321300 +25.411200 +58.163300 +82.708400 +267.783000 +191.754000 +121.551000 +109.089000 +460.460000 +269.377000 +362.501000 +492.021000 +432.460000 +170.216000 +647.421000 +837.903000 +942.208000 +229.559000 +438.386000 +1000.000000 +1000.000000 +1000.000000 +597.958000 +411.744000 +369.838000 +623.478000 +99.298400 +261.037000 +540.942000 +275.561000 +195.374000 +95.787900 +193.861000 +357.619000 +609.428000 +463.393000 +668.875000 +355.654000 +146.038000 +132.264000 +166.756000 +68.655300 +63.528100 +85.060600 +254.507000 +184.133000 +353.153000 +233.628000 +193.771000 +117.849000 +20.908800 +2.888370 +2.281890 +2.854270 +4.649250 +13.150900 +24.712700 +15.029100 +20.086200 +12.401400 +100.554000 +57.497000 +96.742300 +132.103000 +186.757000 +76.152100 +21.797300 +79.553200 +236.686000 +470.351000 +286.636000 +313.038000 +101.328000 +283.446000 +424.531000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +448.806000 +323.128000 +351.075000 +277.644000 +968.345000 +106.456000 +171.439000 +368.698000 +251.930000 +220.735000 +91.964300 +86.608100 +146.761000 +102.525000 +290.417000 +657.146000 +353.627000 +153.907000 +130.713000 +123.677000 +85.008600 +39.544900 +109.098000 +209.112000 +211.924000 +829.097000 +330.152000 +144.132000 +82.174900 +131.187000 +3.374630 +2.372830 +4.935260 +5.057580 +3.486870 +9.841820 +28.109600 +7.220940 +19.267700 +50.069800 +90.448900 +290.293000 +145.108000 +90.008000 +69.615100 +40.140700 +28.373200 +193.613000 +648.883000 +225.917000 +329.217000 +324.984000 +454.606000 +852.807000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +353.012000 +673.594000 +274.465000 +189.918000 +156.517000 +93.185100 +142.250000 +194.131000 +241.518000 +264.158000 +281.618000 +300.027000 +211.764000 +225.033000 +157.848000 +411.064000 +186.053000 +80.938900 +57.477500 +47.999300 +75.129400 +141.691000 +334.636000 +359.646000 +63.343000 +102.975000 +167.088000 +221.267000 +234.003000 +112.646000 +2.235620 +3.353540 +2.384910 +3.030370 +3.859400 +2.915210 +11.896300 +9.980300 +11.067900 +38.000200 +87.095500 +199.749000 +105.114000 +65.728100 +183.050000 +69.926400 +196.921000 +105.224000 +685.285000 +668.336000 +427.654000 +388.853000 +854.944000 +553.548000 +607.718000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +561.646000 +383.036000 +147.409000 +112.008000 +88.610500 +59.653700 +39.393400 +66.915300 +178.266000 +116.518000 +252.002000 +280.742000 +172.202000 +194.700000 +287.572000 +369.685000 +158.306000 +177.434000 +200.736000 +266.441000 +100.710000 +286.639000 +336.846000 +150.314000 +139.331000 +109.597000 +53.390600 +88.818800 +51.979800 +88.278900 +89.398400 +3.235800 +3.483910 +1.000000 +1.224620 +1.243840 +1.864170 +7.786740 +12.849500 +11.013300 +38.878000 +53.865600 +137.191000 +194.600000 +159.077000 +84.524200 +105.272000 +116.533000 +398.838000 +448.292000 +705.715000 +518.960000 +218.041000 +458.630000 +450.410000 +613.066000 +883.123000 +1000.000000 +916.543000 +70.562200 +156.689000 +123.514000 +97.670000 +47.343300 +71.809700 +116.721000 +47.492800 +140.820000 +153.687000 +334.724000 +124.401000 +222.902000 +109.945000 +88.441900 +162.079000 +221.293000 +284.827000 +277.693000 +215.035000 +143.524000 +185.555000 +155.441000 +106.643000 +100.432000 +63.820600 +155.543000 +90.887100 +63.683800 +49.185100 +75.027900 +73.453900 +3.056940 +2.696800 +1.000000 +1.000000 +2.099550 +4.886360 +11.840300 +9.797500 +3.892980 +13.623500 +75.638200 +180.937000 +83.218200 +253.270000 +47.291000 +43.742900 +129.789000 +221.660000 +243.016000 +685.518000 +714.560000 +521.067000 +588.790000 +512.513000 +840.229000 +1000.000000 +1000.000000 +1000.000000 +397.846000 +269.011000 +132.754000 +74.081600 +80.742900 +146.483000 +80.280900 +61.866200 +62.854300 +43.384700 +191.681000 +92.515600 +30.977300 +28.005900 +49.406000 +174.974000 +131.455000 +485.773000 +296.357000 +93.659200 +70.577000 +90.922800 +70.068800 +38.783600 +60.138800 +43.154400 +33.286900 +45.269000 +34.477200 +73.003800 +58.497100 +60.068000 +5.393330 +3.092330 +1.980350 +2.146310 +1.202550 +4.529020 +9.135050 +11.142800 +7.183560 +13.178100 +105.542000 +75.975300 +121.503000 +105.247000 +104.964000 +54.002200 +81.947700 +162.328000 +337.356000 +305.747000 +402.755000 +896.826000 +303.791000 +635.296000 +348.181000 +556.246000 +1000.000000 +656.469000 +610.611000 +235.109000 +215.345000 +44.099400 +53.952900 +32.116500 +85.267200 +85.518600 +55.423700 +42.717300 +90.293300 +59.932500 +28.986500 +36.892100 +33.978600 +101.593000 +109.527000 +70.840500 +97.734000 +41.686000 +18.112000 +25.164600 +135.071000 +92.453200 +36.807900 +48.958500 +27.012600 +18.348400 +35.111400 +72.523800 +36.607400 +47.061700 +23.503100 +7.606810 +6.125060 +2.701090 +4.123350 +4.230200 +16.280400 +9.852020 +10.952400 +17.421500 +61.303000 +68.533300 +35.314600 +67.972700 +75.491600 +154.485000 +248.737000 +276.812000 +622.623000 +556.632000 +494.930000 +183.991000 +348.595000 +192.272000 +194.376000 +345.847000 +334.957000 +409.543000 +163.940000 +169.308000 +70.312400 +44.245900 +117.235000 +70.466100 +65.760700 +169.931000 +39.577800 +21.770800 +54.118800 +24.779100 +88.940800 +73.151900 +49.268600 +87.254500 +47.590900 +47.531500 +61.956000 +83.592100 +54.505400 +86.894600 +253.906000 +108.137000 +61.602000 +42.941400 +49.334400 +37.076400 +22.643800 +20.455500 +16.626000 +21.212500 +26.818800 +13.434900 +15.006900 +8.481070 +3.392110 +11.430100 +5.357990 +86.728900 +32.277900 +84.713300 +201.322000 +49.181600 +37.328100 +139.546000 +106.429000 +246.061000 +596.980000 +361.819000 +214.007000 +364.731000 +498.201000 +343.176000 +299.568000 +124.037000 +44.599700 +159.459000 +115.622000 +94.442000 +110.378000 +196.014000 +47.889900 +44.997200 +50.805100 +59.174000 +37.766100 +100.400000 +66.906000 +55.027800 +25.506000 +73.888300 +109.810000 +154.019000 +226.100000 +81.809600 +39.728100 +55.666800 +42.033700 +57.681800 +92.818900 +139.539000 +129.410000 +122.796000 +52.068900 +87.393200 +73.661100 +49.946300 +14.410500 +32.078400 +28.290200 +23.242200 +40.869600 +30.324300 +22.983100 +11.050300 +12.867000 +4.707560 +8.270690 +16.431000 +61.636900 +92.544200 +175.532000 +35.365800 +124.606000 +191.522000 +112.565000 +335.529000 +170.164000 +302.291000 +205.006000 +124.735000 +362.052000 +454.463000 +183.027000 +66.270200 +26.303000 +22.176900 +58.469300 +54.358300 +70.620800 +230.149000 +50.177100 +32.584600 +30.596300 +46.026300 +153.887000 +373.558000 +132.817000 +71.899900 +98.079100 +290.781000 +628.438000 +425.740000 +564.812000 +148.980000 +49.110100 +53.354800 +15.395100 +37.445100 +20.794200 +72.769300 +256.550000 +240.352000 +151.042000 +117.850000 +80.579500 +83.885000 +60.343200 +28.519800 +55.762200 +18.209600 +73.499300 +77.198300 +32.774100 +27.173200 +19.831300 +5.776140 +8.465680 +11.766500 +35.347900 +69.445300 +175.370000 +132.430000 +78.120100 +131.210000 +130.657000 +257.425000 +100.291000 +261.896000 +125.645000 +173.592000 +76.976800 +361.309000 +95.494800 +39.952200 +20.878800 +39.585400 +27.774700 +59.640400 +32.912700 +47.184400 +38.070600 +51.551100 +68.671100 +107.468000 +196.310000 +163.611000 +181.376000 +167.599000 +176.477000 +333.979000 +663.856000 +494.132000 +397.778000 +280.019000 +134.224000 +80.657300 +54.311500 +25.139000 +36.669700 +320.947000 +309.471000 +196.713000 +252.641000 +41.442600 +33.510400 +80.744700 +93.465100 +46.295200 +49.146700 +43.364400 +108.267000 +46.577500 +107.193000 +26.744600 +14.183300 +19.575700 +11.066000 +10.793000 +66.409600 +52.186600 +34.637900 +148.287000 +224.858000 +272.005000 +379.404000 +180.582000 +192.424000 +268.222000 +200.757000 +127.984000 +288.064000 +153.066000 +112.536000 +38.050100 +10.738100 +23.360100 +21.627700 +28.103000 +32.598500 +21.619800 +60.396600 +57.472600 +71.957800 +121.807000 +127.412000 +83.639900 +167.206000 +253.321000 +91.960700 +507.573000 +598.816000 +426.510000 +201.772000 +176.363000 +167.749000 +61.641900 +88.721000 +38.711400 +89.713300 +288.600000 +286.499000 +111.528000 +100.452000 +84.645600 +41.010000 +39.811600 +70.606600 +67.262200 +46.577500 +38.368300 +17.844600 +72.272300 +74.420400 +110.481000 +29.129500 +29.007300 +16.499600 +64.169100 +20.560300 +16.754800 +39.442400 +185.502000 +128.670000 +232.107000 +247.827000 +436.965000 +200.176000 +225.358000 +199.357000 +83.161700 +526.408000 +113.911000 +21.082900 +11.860800 +15.333600 +13.089400 +25.166200 +51.717800 +85.691100 +42.133600 +32.445200 +51.888800 +58.528200 +81.295900 +138.305000 +127.170000 +80.930700 +342.403000 +168.792000 +382.016000 +564.177000 +362.217000 +239.476000 +154.549000 +169.872000 +182.079000 +255.081000 +72.900200 +23.879200 +121.608000 +79.741400 +65.370900 +46.917500 +45.411900 +107.933000 +63.562000 +97.524300 +42.505400 +53.934100 +20.398100 +21.914700 +115.193000 +56.975800 +49.726300 +35.709000 +24.475200 +22.496600 +55.250900 +43.873400 +29.913700 +83.256400 +81.361200 +257.885000 +127.012000 +83.862300 +262.862000 +401.719000 +176.299000 +172.076000 +334.518000 +473.714000 +248.149000 +37.095100 +39.696800 +58.078800 +21.099100 +16.920500 +28.835700 +20.750800 +42.026900 +27.773600 +23.431200 +53.142700 +57.710100 +182.778000 +123.291000 +108.505000 +201.961000 +168.804000 +524.046000 +208.337000 +194.597000 +100.549000 +168.363000 +213.359000 +68.565700 +140.692000 +82.801600 +16.889200 +21.492200 +31.549800 +22.135300 +33.515200 +43.909400 +70.091800 +47.286800 +81.337100 +36.676200 +20.731400 +10.706000 +37.141600 +38.378700 +59.547100 +55.362200 +32.697200 +34.249800 +106.605000 +116.276000 +73.725000 +92.460500 +64.537300 +83.070300 +128.106000 +246.986000 +81.440400 +223.958000 +337.562000 +172.907000 +247.708000 +267.583000 +307.974000 +86.612100 +111.416000 +35.362800 +36.485200 +7.503120 +26.007200 +18.585300 +33.884100 +110.550000 +193.841000 +37.594100 +25.970800 +49.520600 +159.774000 +85.655800 +91.795700 +115.985000 +218.812000 +401.157000 +183.334000 +232.235000 +96.641600 +142.022000 +58.210000 +70.593400 +36.535700 +24.523700 +38.335100 +12.266900 +39.397400 +28.400500 +36.376600 +97.473400 +60.153400 +48.669100 +58.089100 +21.996000 +12.022700 +16.759600 +44.765500 +81.723900 +79.894100 +91.917200 +42.711300 +124.536000 +33.699700 +36.223900 +69.329500 +58.843800 +55.166400 +149.168000 +166.097000 +229.598000 +199.513000 +245.606000 +387.977000 +190.252000 +125.722000 +204.935000 +253.610000 +222.675000 +205.424000 +53.571200 +57.717600 +15.149100 +25.562400 +31.607500 +21.712300 +106.605000 +87.357800 +144.019000 +53.710400 +56.698700 +88.534200 +38.481600 +40.655000 +67.775900 +69.544600 +176.079000 +410.888000 +102.717000 +87.572400 +67.249700 +99.286100 +35.228900 +34.385600 +23.034500 +17.848900 +21.067900 +53.526000 +148.257000 +105.433000 +77.493200 +129.445000 +170.003000 +71.820400 +33.016500 +15.523100 +10.924000 +87.544300 +58.559400 +135.787000 +159.575000 +229.553000 +284.430000 +118.586000 +103.952000 +61.003300 +77.174700 +201.344000 +145.229000 +419.101000 +840.613000 +546.490000 +113.100000 +197.279000 +124.738000 +113.872000 +117.965000 +248.847000 +114.799000 +89.104500 +123.371000 +89.178100 +76.325100 +20.245600 +36.791300 +51.361400 +35.032300 +18.300400 +47.742500 +18.322800 +39.946800 +46.190700 +52.383700 +11.691200 +54.763800 +152.428000 +450.648000 +296.755000 +242.710000 +89.251900 +59.235500 +44.751800 +41.844000 +14.368400 +10.345000 +19.088100 +24.714400 +24.330200 +33.037500 +97.722500 +116.373000 +183.817000 +154.119000 +109.289000 +124.781000 +52.354300 +22.714400 +83.607500 +150.237000 +97.438400 +134.580000 +92.889500 +199.573000 +143.073000 +124.903000 +113.188000 +143.881000 +150.429000 +345.042000 +554.873000 +1000.000000 +552.730000 +161.693000 +140.323000 +45.753400 +71.071100 +183.606000 +63.391400 +41.737700 +105.560000 +146.655000 +66.075600 +70.125000 +35.192400 +38.889100 +29.525900 +11.706400 +26.831500 +16.498300 +34.082100 +38.764500 +23.951800 +21.458700 +25.586700 +64.845300 +73.265900 +178.132000 +118.689000 +193.501000 +130.283000 +212.340000 +66.228300 +14.959600 +12.087800 +7.975630 +18.918400 +27.622600 +28.219100 +27.643900 +60.939900 +36.744000 +137.417000 +112.078000 +164.770000 +110.508000 +75.625700 +38.428500 +11.534500 +33.957600 +35.542900 +49.072300 +52.091000 +135.999000 +130.624000 +138.183000 +269.652000 +488.271000 +112.638000 +182.739000 +174.405000 +434.005000 +286.286000 +189.185000 +92.969500 +151.143000 +128.819000 +122.639000 +330.570000 +167.241000 +139.525000 +121.758000 +201.513000 +124.615000 +48.319000 +91.423700 +78.168600 +14.852300 +20.639500 +7.139740 +19.393900 +13.792000 +13.023700 +15.344100 +34.092700 +18.261500 +33.195700 +46.614600 +63.721300 +65.833400 +135.607000 +91.412500 +45.597000 +14.446100 +8.494320 +23.076500 +28.836300 +19.857400 +35.329900 +60.979100 +97.491400 +49.997100 +81.732800 +47.802200 +93.221700 +51.791500 +49.857300 +97.250900 +16.001700 +23.338500 +59.485700 +132.814000 +201.520000 +176.740000 +88.119900 +176.703000 +228.755000 +739.489000 +170.572000 +66.859800 +72.520400 +259.229000 +183.900000 +144.193000 +120.043000 +87.867600 +99.909700 +132.035000 +223.310000 +166.293000 +159.095000 +372.552000 +448.532000 +233.176000 +105.028000 +65.134400 +94.476500 +101.561000 +88.151500 +35.408500 +33.372500 +15.564000 +9.321380 +18.303600 +17.865500 +84.424400 +40.285400 +27.218600 +32.061100 +77.891900 +43.073600 +66.261500 +35.522100 +80.629300 +24.500000 +34.434300 +38.894700 +17.645200 +44.428000 +24.989700 +107.976000 +66.884800 +70.989500 +39.145500 +61.557900 +43.070800 +34.760500 +32.856900 +13.455700 +30.243300 +67.030500 +43.970200 +152.824000 +192.551000 +314.432000 +319.362000 +338.449000 +168.307000 +133.660000 +71.597700 +195.105000 +49.174800 +68.772700 +153.095000 +91.770500 +70.053100 +53.517900 +63.640900 +69.990300 +170.119000 +517.426000 +130.006000 +377.229000 +265.928000 +238.768000 +177.978000 +190.159000 +181.713000 +80.889800 +46.684200 +19.260000 +50.478400 +27.673900 +53.599600 +23.136200 +22.629400 +9.548830 +57.792900 +51.780400 +105.376000 +145.212000 +114.130000 +21.774700 +58.727300 +86.041700 +34.214400 +44.900200 +48.131700 +45.176600 +48.614200 +81.295200 +69.851000 +55.529800 +49.248100 +28.140600 +8.727590 +15.744500 +13.064300 +2.531590 +9.367480 +21.521200 +27.633300 +33.508200 +93.592200 +189.577000 +363.825000 +249.672000 +510.674000 +161.417000 +149.975000 +452.196000 +132.189000 +103.588000 +116.789000 +59.466100 +37.489000 +100.088000 +149.279000 +118.640000 +223.766000 +226.050000 +122.569000 +367.924000 +280.060000 +161.071000 +206.822000 +188.131000 +106.530000 +70.182200 +33.315000 +44.567600 +48.093000 +47.133800 +13.704700 +30.652100 +9.068320 +19.862100 +46.508500 +149.620000 +213.226000 +301.488000 +91.696800 +90.506100 +53.792800 +67.779700 +84.063600 +50.394600 +69.906500 +41.505100 +22.834200 +49.553600 +40.873200 +58.599000 +21.613200 +9.877470 +10.624400 +7.437880 +6.908620 +1.123870 +5.751700 +4.743980 +16.302800 +22.873900 +237.667000 +245.643000 +731.546000 +630.978000 +433.441000 +180.170000 +123.273000 +110.610000 +132.652000 +122.315000 +106.137000 +64.964400 +42.757600 +86.500100 +92.239400 +159.231000 +143.599000 +88.408700 +54.744100 +138.751000 +169.904000 +399.217000 +447.169000 +183.873000 +241.995000 +75.525900 +132.533000 +46.258300 +60.142800 +25.882600 +28.338400 +19.059600 +26.655600 +46.460100 +69.914000 +348.885000 +309.808000 +602.517000 +318.937000 +93.884900 +188.360000 +113.038000 +42.127300 +63.679500 +21.278800 +19.509600 +25.494300 +58.090300 +14.040800 +17.810900 +21.459900 +26.744300 +12.139400 +8.420560 +4.889690 +1.442810 +4.947920 +14.049900 +28.673800 +63.209400 +212.460000 +704.939000 +450.685000 +322.161000 +193.686000 +200.928000 +97.612900 +87.792600 +44.322700 +55.436300 +38.886200 +100.128000 +48.834400 +192.164000 +87.724600 +32.794000 +56.511100 +25.972400 +48.352900 +31.257200 +106.868000 +190.756000 +103.609000 +70.375000 +360.462000 +70.203300 +74.125700 +124.043000 +156.478000 +20.529800 +30.845400 +28.398300 +61.694500 +35.633400 +179.823000 +309.861000 +282.562000 +440.878000 +230.148000 +120.654000 +45.924200 +36.238900 +64.252100 +45.724500 +24.578200 +16.325300 +17.666500 +29.524400 +25.299000 +9.130160 +23.368500 +17.312600 +23.446900 +11.462400 +4.872230 +7.764680 +6.040600 +14.800000 +11.009300 +53.991200 +331.927000 +438.609000 +277.258000 +714.263000 +143.671000 +83.620300 +49.509300 +7.861560 +23.357200 +16.073700 +10.579400 +22.956800 +16.673800 +26.856100 +28.314700 +13.445200 +12.627100 +23.378400 +17.206400 +17.078400 +72.351900 +37.902200 +68.059900 +338.916000 +131.055000 +89.810100 +74.021300 +44.165700 +46.486300 +133.354000 +28.426500 +30.074200 +54.943800 +142.594000 +167.953000 +248.672000 +78.099600 +157.675000 +67.785900 +77.462000 +17.951800 +51.152800 +20.632000 +20.768400 +14.144300 +7.555700 +6.345210 +57.106700 +21.700600 +3.616970 +8.614710 +11.076900 +8.894920 +12.020400 +5.305880 +7.738640 +12.814800 +31.334500 +67.527300 +139.226000 +337.472000 +287.175000 +303.422000 +252.102000 +64.439300 +142.373000 +23.844000 +10.806700 +8.465250 +16.803800 +21.915100 +55.380600 +67.378500 +31.045100 +25.740700 +13.931400 +10.271300 +11.828200 +9.937300 +13.171000 +44.122300 +20.968800 +46.446900 +47.406000 +130.597000 +52.836400 +50.344700 +23.938800 +33.567400 +127.204000 +64.404400 +98.171900 +79.050300 +65.529400 +103.487000 +246.393000 +57.674300 +135.800000 +24.622300 +47.947800 +36.193300 +24.991800 +26.968800 +7.403680 +5.517220 +16.432700 +28.556600 +43.878300 +13.323400 +17.049200 +6.368860 +7.068120 +5.557690 +46.527100 +45.709600 +97.619200 +19.849800 +43.963800 +139.899000 +408.707000 +337.750000 +317.367000 +522.753000 +212.234000 +229.227000 +95.492500 +10.390300 +16.817600 +6.965780 +26.504700 +15.762700 +24.129600 +36.572700 +41.068800 +9.391830 +3.877460 +18.143200 +8.560860 +11.937400 +14.380900 +31.801700 +36.480200 +37.677900 +30.897400 +34.148700 +19.718900 +35.240100 +6.621900 +11.108500 +46.926500 +78.182300 +36.052500 +19.461600 +28.891600 +65.668500 +74.225200 +74.646500 +131.413000 +49.419000 +35.853900 +15.226400 +9.595330 +11.396500 +2.477750 +1.567280 +2.754310 +7.622150 +37.458900 +44.965100 +18.103100 +12.434200 +6.343910 +9.615800 +18.028300 +49.959600 +/ \ No newline at end of file diff --git a/examples/ADGPRS/5spot/include/permy.in b/examples/ADGPRS/5spot/include/permy.in new file mode 100644 index 000000000..ae5c1e76d --- /dev/null +++ b/examples/ADGPRS/5spot/include/permy.in @@ -0,0 +1,3602 @@ +PERMY +1.689380 +1.000000 +1.000000 +2.355020 +2.069750 +3.325630 +8.336200 +16.573400 +7.983790 +3.925630 +3.103330 +1.127350 +2.951120 +2.101170 +2.370590 +2.014860 +1.000000 +6.425090 +7.853040 +18.041700 +22.128800 +7.655520 +24.171000 +24.577400 +27.158200 +18.706400 +37.687500 +55.394600 +101.874000 +150.281000 +155.992000 +114.668000 +63.256300 +66.068200 +25.420900 +22.696800 +16.201300 +48.838100 +48.330500 +109.483000 +210.441000 +1000.000000 +889.638000 +918.264000 +1000.000000 +1000.000000 +812.203000 +1000.000000 +545.739000 +222.580000 +114.680000 +142.766000 +89.738500 +51.275900 +76.303100 +21.196900 +41.803700 +27.900000 +21.920600 +21.912500 +1.775090 +1.000000 +1.000000 +1.000000 +1.899890 +2.971990 +20.853900 +15.890300 +9.806230 +6.516030 +7.405960 +4.815990 +9.370370 +14.042400 +6.658660 +12.188800 +2.202860 +8.593170 +11.098900 +15.752600 +26.498500 +18.288900 +11.331400 +13.112200 +17.654300 +25.426500 +85.590700 +212.952000 +212.543000 +68.371300 +83.629500 +95.607500 +78.306100 +123.407000 +44.115000 +33.213800 +29.119600 +23.949800 +171.530000 +237.961000 +74.897800 +315.365000 +401.521000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +585.848000 +504.710000 +379.104000 +249.992000 +129.494000 +84.904400 +61.433800 +51.153400 +64.112300 +46.971600 +39.377000 +8.570850 +19.904600 +3.100750 +1.143150 +2.497050 +1.107660 +2.352710 +4.467240 +8.329110 +14.966600 +34.393000 +6.030440 +16.690100 +21.725800 +22.864200 +8.571660 +10.606400 +2.390000 +4.407000 +3.887770 +3.067070 +11.182100 +13.435600 +16.278200 +8.271400 +8.418890 +10.873600 +30.296500 +48.824700 +147.774000 +144.606000 +86.432700 +60.041300 +130.243000 +213.789000 +123.509000 +69.552100 +42.279000 +35.750000 +33.093600 +319.473000 +453.334000 +251.223000 +263.758000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +825.981000 +164.790000 +405.464000 +1000.000000 +254.984000 +185.817000 +181.774000 +91.608600 +27.472400 +36.586800 +26.425700 +11.014400 +6.990540 +4.835070 +1.000000 +1.159330 +2.089040 +5.702310 +3.712710 +10.355600 +9.719000 +23.609000 +40.650000 +24.648100 +20.245000 +46.953500 +16.594300 +37.885700 +21.621500 +6.625130 +13.734600 +10.035800 +4.666560 +5.687600 +8.447120 +7.830740 +6.300870 +23.632700 +37.103200 +46.291700 +127.654000 +73.101300 +148.073000 +132.561000 +270.618000 +512.190000 +842.583000 +624.618000 +90.427400 +74.928300 +101.377000 +75.333000 +77.496900 +75.371900 +130.700000 +263.403000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +800.523000 +294.209000 +148.991000 +768.924000 +1000.000000 +464.242000 +200.027000 +86.517600 +26.822700 +44.868700 +23.212100 +17.338500 +12.444000 +16.014400 +1.326120 +1.000000 +1.000000 +2.580000 +4.686460 +49.616600 +67.007900 +81.248900 +36.986600 +25.800400 +9.333400 +23.669800 +20.178900 +28.880700 +13.713600 +3.996750 +6.843330 +21.106400 +9.021560 +9.998440 +7.925860 +43.653800 +54.197600 +45.813400 +60.795700 +96.558300 +194.447000 +495.278000 +176.385000 +235.794000 +731.916000 +532.023000 +461.963000 +207.532000 +87.513100 +118.195000 +436.466000 +478.761000 +314.129000 +109.132000 +132.968000 +142.437000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +455.417000 +212.318000 +131.011000 +334.460000 +715.384000 +648.225000 +401.560000 +54.608600 +58.525200 +25.204300 +13.072900 +12.200700 +6.009190 +14.570800 +1.000000 +1.000000 +1.746730 +2.832080 +19.268000 +21.827200 +93.653100 +73.687100 +118.848000 +104.819000 +25.013800 +9.086640 +10.459700 +8.140620 +23.410200 +9.163370 +5.975610 +5.108610 +13.648400 +24.125500 +30.005000 +18.781600 +49.503600 +212.983000 +135.805000 +195.549000 +918.261000 +482.774000 +276.157000 +226.162000 +694.925000 +350.511000 +161.948000 +478.507000 +95.170300 +161.898000 +333.824000 +200.523000 +259.940000 +107.208000 +86.595800 +106.628000 +808.458000 +1000.000000 +661.958000 +692.752000 +539.489000 +123.789000 +206.646000 +107.650000 +202.709000 +434.340000 +527.497000 +96.481200 +347.917000 +76.869500 +20.185400 +27.048400 +18.883000 +17.872200 +4.022040 +5.004090 +1.711990 +4.416640 +6.925160 +15.656200 +45.484700 +98.615600 +77.045800 +45.140700 +20.359900 +10.836000 +14.583400 +13.113700 +49.184800 +16.889100 +16.267800 +7.812330 +12.520900 +54.234800 +33.158400 +44.710900 +57.808900 +182.775000 +323.074000 +457.349000 +1000.000000 +772.414000 +635.086000 +588.219000 +646.382000 +529.500000 +136.228000 +69.367100 +72.756900 +75.069800 +154.301000 +152.794000 +408.965000 +181.889000 +204.370000 +99.790200 +296.520000 +1000.000000 +1000.000000 +864.827000 +434.415000 +126.887000 +203.245000 +81.743200 +115.981000 +121.185000 +112.756000 +101.339000 +200.704000 +53.194600 +8.153860 +31.897300 +54.897800 +8.642530 +8.834100 +5.617410 +4.709260 +15.051500 +15.193200 +20.470400 +49.963000 +87.779600 +54.014300 +58.647200 +16.957500 +20.231500 +17.545600 +14.210500 +57.183700 +18.507300 +14.968500 +29.512700 +23.219800 +112.073000 +35.568400 +42.415700 +72.076400 +273.445000 +704.424000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +880.110000 +1000.000000 +337.102000 +254.120000 +132.360000 +412.905000 +181.026000 +203.287000 +109.815000 +105.929000 +276.135000 +210.205000 +194.431000 +280.524000 +451.749000 +1000.000000 +630.379000 +1000.000000 +228.580000 +160.923000 +80.917400 +61.520700 +80.931100 +233.719000 +189.186000 +115.350000 +45.053300 +23.452000 +78.014800 +44.621200 +7.052000 +4.774810 +23.990500 +14.217100 +12.416900 +24.947900 +87.655100 +232.120000 +78.139000 +94.517100 +38.910400 +17.225100 +10.613200 +43.842800 +29.042000 +28.259800 +23.618900 +43.469500 +30.337100 +54.786400 +17.453700 +20.174500 +16.043100 +67.336500 +38.355200 +323.127000 +446.714000 +693.139000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +325.405000 +289.087000 +344.324000 +545.266000 +323.805000 +244.416000 +127.362000 +93.586200 +104.578000 +130.135000 +207.405000 +703.351000 +612.340000 +1000.000000 +1000.000000 +1000.000000 +243.844000 +447.390000 +141.588000 +81.092900 +185.355000 +379.980000 +496.191000 +719.516000 +83.265400 +43.342900 +31.154700 +24.813900 +22.475200 +9.495290 +13.366000 +12.279800 +51.823600 +32.408600 +116.916000 +434.220000 +137.605000 +71.394300 +26.127800 +19.819700 +5.877500 +18.335100 +15.168500 +42.071600 +17.580800 +36.867000 +35.228600 +45.189300 +16.583900 +19.035000 +20.584000 +60.749900 +110.413000 +67.460500 +216.135000 +573.823000 +753.707000 +313.983000 +587.056000 +841.884000 +646.462000 +260.668000 +243.943000 +155.072000 +237.395000 +294.253000 +259.814000 +96.789800 +125.496000 +80.131100 +304.447000 +786.030000 +637.622000 +324.728000 +213.386000 +484.970000 +1000.000000 +1000.000000 +200.586000 +255.386000 +95.678900 +666.980000 +284.545000 +114.560000 +60.108700 +42.609500 +67.501600 +55.404900 +65.477700 +7.524570 +9.145700 +7.181910 +31.866400 +63.752300 +113.183000 +126.836000 +117.625000 +168.077000 +80.556600 +11.015900 +6.710080 +12.414600 +18.846300 +5.146490 +8.342510 +11.547700 +3.276540 +10.933900 +9.604730 +22.935600 +93.865400 +102.067000 +54.578500 +52.275300 +133.204000 +225.304000 +252.876000 +675.032000 +974.357000 +705.382000 +1000.000000 +1000.000000 +331.680000 +659.523000 +266.328000 +548.005000 +455.420000 +244.020000 +437.374000 +528.127000 +816.300000 +1000.000000 +813.196000 +182.911000 +171.015000 +809.513000 +692.607000 +632.230000 +1000.000000 +413.701000 +140.001000 +400.738000 +292.870000 +149.466000 +29.153600 +24.723100 +52.800800 +21.225200 +25.395900 +3.872130 +12.418900 +13.108300 +13.398000 +37.404000 +57.906100 +154.327000 +146.555000 +57.161500 +53.457400 +17.133900 +12.351100 +13.148700 +5.736230 +7.689380 +11.839100 +9.656700 +4.334280 +2.142850 +11.003000 +9.180740 +10.944900 +21.218700 +36.968400 +66.454500 +131.651000 +189.388000 +142.948000 +793.485000 +980.537000 +942.564000 +1000.000000 +961.693000 +803.214000 +966.170000 +1000.000000 +910.290000 +1000.000000 +1000.000000 +451.873000 +676.576000 +1000.000000 +1000.000000 +840.867000 +618.940000 +286.526000 +252.114000 +843.931000 +572.444000 +1000.000000 +989.635000 +912.575000 +416.031000 +121.328000 +23.109200 +50.500600 +46.431700 +94.482400 +86.869000 +57.772900 +3.315120 +4.256650 +11.429900 +10.270700 +30.640800 +80.424300 +84.175400 +49.548200 +50.891700 +29.233000 +16.511300 +12.018800 +11.133300 +6.157210 +11.716300 +8.394780 +6.354800 +3.787790 +5.590350 +20.572400 +14.262700 +6.552050 +10.207200 +15.282600 +39.100800 +135.900000 +164.581000 +101.228000 +366.074000 +329.985000 +506.197000 +826.133000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +908.185000 +1000.000000 +1000.000000 +811.797000 +587.383000 +736.891000 +1000.000000 +1000.000000 +892.564000 +938.272000 +694.994000 +620.231000 +968.559000 +704.720000 +1000.000000 +416.060000 +179.812000 +56.239500 +64.672500 +29.499800 +27.566300 +20.612300 +63.108200 +58.500500 +14.762700 +4.539220 +13.397800 +20.552800 +39.495900 +97.508000 +43.237700 +23.484000 +22.941400 +18.398700 +13.394500 +3.593400 +1.197860 +2.347890 +4.442110 +4.315970 +5.870670 +1.524020 +2.195280 +7.352370 +11.223400 +3.952580 +5.061480 +27.198900 +91.686800 +226.176000 +67.947000 +43.921100 +229.678000 +162.602000 +760.621000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +627.045000 +609.212000 +822.567000 +617.222000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +626.730000 +1000.000000 +1000.000000 +543.739000 +296.314000 +110.150000 +69.718100 +37.502700 +59.363900 +33.324700 +15.176500 +18.124400 +5.608740 +5.179060 +7.658320 +13.567800 +36.417300 +37.272100 +56.331300 +11.340600 +16.735300 +10.851400 +5.496540 +7.215940 +10.524600 +13.181200 +3.988020 +2.096920 +2.042510 +2.149460 +1.783750 +6.056130 +8.753140 +9.138920 +6.327950 +14.158200 +16.433000 +141.279000 +104.182000 +112.991000 +266.159000 +405.663000 +485.339000 +376.057000 +228.546000 +838.268000 +973.016000 +526.478000 +461.522000 +413.333000 +220.461000 +910.765000 +540.471000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +557.111000 +429.396000 +703.977000 +270.068000 +200.978000 +112.803000 +33.767000 +43.774900 +26.526000 +58.713600 +31.847400 +1.048480 +2.305030 +4.932990 +11.958900 +6.144620 +4.540620 +13.055300 +12.957900 +12.591300 +7.524540 +4.996070 +10.254000 +12.365600 +14.784300 +15.881800 +9.087480 +1.961930 +2.756330 +3.699030 +4.517190 +8.162750 +3.044270 +4.761060 +16.955500 +42.242700 +43.436700 +49.007900 +127.054000 +293.118000 +203.405000 +180.433000 +163.452000 +68.744800 +560.611000 +252.347000 +332.285000 +298.836000 +587.049000 +571.284000 +745.229000 +909.220000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +827.206000 +675.195000 +714.201000 +850.663000 +195.182000 +90.456700 +119.864000 +58.524700 +26.771800 +22.592600 +30.389700 +1.185910 +1.766420 +3.856410 +12.180300 +7.851540 +7.916640 +16.115000 +21.805800 +12.454700 +13.131100 +4.773180 +8.684460 +25.069400 +26.268500 +13.808500 +8.593120 +3.042910 +2.047700 +1.920710 +5.767820 +6.327420 +12.255000 +11.574800 +27.789400 +30.539300 +61.490900 +60.738100 +537.068000 +158.827000 +352.987000 +1000.000000 +471.635000 +407.330000 +960.612000 +394.698000 +681.625000 +489.443000 +449.165000 +319.148000 +346.126000 +1000.000000 +733.585000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +754.175000 +1000.000000 +519.895000 +812.313000 +619.096000 +607.999000 +651.510000 +319.163000 +226.215000 +196.911000 +144.584000 +69.776200 +14.811000 +22.796100 +1.155930 +3.554360 +18.479200 +10.658300 +31.755900 +27.794200 +16.000800 +14.639100 +13.319100 +6.288760 +6.321050 +11.188900 +9.934380 +10.191500 +9.836010 +5.368670 +3.404070 +7.403330 +7.438650 +12.102200 +17.467600 +28.198500 +25.689200 +30.031600 +35.065000 +82.187100 +231.664000 +669.979000 +1000.000000 +407.831000 +1000.000000 +1000.000000 +533.636000 +784.849000 +358.759000 +1000.000000 +951.324000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +724.040000 +1000.000000 +1000.000000 +1000.000000 +624.448000 +438.444000 +199.059000 +345.092000 +572.194000 +549.684000 +369.080000 +673.767000 +289.043000 +458.986000 +484.447000 +152.313000 +30.807600 +18.972300 +20.122700 +1.774450 +3.328130 +11.143300 +36.471400 +18.074800 +25.391800 +16.240100 +13.678200 +5.360840 +6.600570 +6.931610 +6.450090 +10.548700 +3.926700 +11.793900 +8.870520 +12.498500 +9.896960 +13.697800 +30.536000 +27.214700 +33.829900 +14.422000 +26.304300 +33.567400 +82.813700 +278.977000 +896.920000 +1000.000000 +1000.000000 +854.674000 +1000.000000 +735.154000 +941.535000 +392.984000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +694.543000 +240.696000 +331.043000 +503.688000 +474.453000 +834.236000 +629.984000 +388.992000 +124.151000 +789.586000 +346.390000 +207.170000 +58.235400 +59.384400 +28.536000 +1.532270 +18.585600 +13.659000 +22.177700 +36.496600 +18.689100 +9.738980 +7.698560 +3.385680 +6.290010 +16.691000 +5.650510 +1.949870 +11.462500 +8.961630 +1.799600 +11.211800 +9.638740 +12.424100 +19.824300 +29.401400 +32.522400 +37.246000 +47.661200 +26.487300 +99.494300 +364.627000 +141.281000 +194.152000 +760.310000 +1000.000000 +1000.000000 +576.349000 +397.334000 +654.318000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +896.168000 +850.996000 +1000.000000 +1000.000000 +744.261000 +557.773000 +251.873000 +375.471000 +817.917000 +722.695000 +186.423000 +71.669400 +62.925800 +51.347300 +1.034790 +3.739800 +3.199910 +4.831420 +3.696120 +4.788150 +5.141720 +4.966120 +10.447500 +11.982600 +3.378630 +4.717740 +2.137090 +6.555980 +16.956200 +16.394000 +11.271900 +39.057800 +24.220700 +7.517440 +37.495400 +69.787200 +58.337900 +45.582300 +118.658000 +223.476000 +431.422000 +865.621000 +323.918000 +520.087000 +1000.000000 +970.860000 +282.219000 +469.202000 +427.896000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +553.311000 +1000.000000 +307.319000 +212.699000 +208.347000 +288.809000 +121.995000 +160.533000 +122.214000 +337.625000 +1.152970 +3.493600 +8.830530 +2.977410 +4.204740 +6.454460 +2.835620 +4.378630 +4.668230 +12.014000 +4.932670 +3.105500 +5.273490 +6.945930 +8.525370 +17.981800 +15.918900 +12.590100 +7.659860 +22.909300 +22.980900 +97.168500 +72.501500 +53.658100 +89.985300 +1000.000000 +363.928000 +664.411000 +528.538000 +634.120000 +536.991000 +609.505000 +802.796000 +458.569000 +369.189000 +727.520000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +847.544000 +122.856000 +562.277000 +153.296000 +154.949000 +214.746000 +443.398000 +605.122000 +497.254000 +223.132000 +279.139000 +3.729490 +10.173200 +6.863500 +19.685100 +12.246300 +2.809340 +8.091660 +18.247300 +10.240900 +5.686690 +9.511240 +9.940220 +12.466500 +17.308500 +8.193120 +32.139800 +25.435000 +15.769200 +35.871900 +68.092100 +79.299400 +55.651300 +85.014600 +207.669000 +120.859000 +404.159000 +633.804000 +476.259000 +469.688000 +187.490000 +182.089000 +726.058000 +539.304000 +1000.000000 +531.787000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +983.443000 +1000.000000 +886.458000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +712.015000 +186.205000 +66.765900 +415.587000 +313.797000 +142.581000 +287.042000 +189.148000 +7.480240 +17.640700 +17.559100 +17.104800 +9.872400 +18.829200 +6.898000 +3.220170 +7.004510 +9.156170 +8.720640 +20.686100 +23.468300 +16.044500 +8.632570 +25.351800 +19.866300 +32.938100 +204.615000 +86.744400 +71.921000 +205.270000 +73.592300 +147.039000 +221.576000 +194.871000 +480.942000 +451.272000 +677.178000 +187.102000 +294.294000 +232.275000 +553.913000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +989.776000 +1000.000000 +1000.000000 +803.528000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +286.967000 +661.255000 +641.646000 +159.725000 +185.045000 +325.864000 +253.017000 +417.494000 +20.193200 +3.045170 +10.157500 +21.717000 +10.287500 +12.488900 +4.903890 +3.368160 +5.280240 +20.880500 +13.717100 +13.683200 +18.186600 +15.500600 +21.808300 +25.862600 +30.105200 +86.817500 +65.820100 +68.688800 +69.035200 +92.723600 +177.386000 +61.805300 +70.905900 +68.525800 +91.499200 +253.130000 +751.616000 +855.485000 +1000.000000 +306.204000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +481.566000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +737.638000 +730.901000 +425.396000 +178.641000 +503.270000 +286.901000 +167.944000 +104.434000 +168.005000 +176.814000 +5.774720 +7.352810 +23.524100 +19.369800 +16.438800 +20.271800 +13.669600 +17.955700 +14.755100 +33.724600 +32.290200 +40.780500 +21.184900 +24.702600 +28.989800 +111.259000 +54.995500 +104.096000 +81.517900 +384.331000 +135.918000 +52.298400 +93.832000 +57.720800 +92.398800 +238.651000 +246.876000 +578.512000 +450.347000 +723.676000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +967.958000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +374.131000 +332.734000 +212.370000 +196.230000 +173.264000 +271.835000 +10.272400 +19.336000 +26.233400 +22.603900 +22.058100 +17.503800 +20.571000 +27.050200 +32.262100 +22.292200 +52.669000 +79.448400 +31.548300 +17.896000 +40.983100 +17.071000 +45.029200 +129.279000 +377.862000 +162.684000 +102.387000 +121.509000 +155.587000 +206.882000 +229.164000 +419.657000 +300.405000 +659.825000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +943.923000 +479.927000 +699.898000 +1000.000000 +1000.000000 +637.001000 +486.607000 +557.741000 +606.903000 +848.519000 +1000.000000 +731.560000 +824.269000 +360.954000 +488.327000 +448.739000 +176.902000 +279.701000 +38.584300 +26.053600 +35.660800 +36.785600 +40.977000 +18.149200 +14.692200 +34.885200 +38.250700 +25.100800 +84.205300 +116.646000 +29.784600 +7.637140 +50.025900 +121.620000 +103.660000 +265.046000 +436.365000 +310.665000 +780.080000 +258.724000 +246.392000 +194.622000 +718.157000 +871.425000 +734.579000 +828.050000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +908.896000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +858.224000 +1000.000000 +543.531000 +524.118000 +838.858000 +622.490000 +504.991000 +950.472000 +632.909000 +326.810000 +267.196000 +236.059000 +128.940000 +17.536700 +38.967300 +19.285600 +27.721900 +19.874100 +30.643900 +36.466000 +23.140200 +12.085400 +25.358900 +64.130600 +103.533000 +25.211000 +14.383000 +41.150200 +152.714000 +152.996000 +273.614000 +259.108000 +686.361000 +754.130000 +333.709000 +234.333000 +571.407000 +400.766000 +855.372000 +1000.000000 +1000.000000 +436.144000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +938.272000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +852.852000 +1000.000000 +990.593000 +245.626000 +368.166000 +511.781000 +202.685000 +171.391000 +625.048000 +342.201000 +90.299500 +90.049800 +42.621900 +71.011600 +5.994520 +6.959330 +11.838100 +26.185600 +29.851900 +45.038900 +37.858600 +24.661900 +21.350700 +12.126600 +60.117200 +135.620000 +41.274600 +34.644000 +15.571600 +20.121300 +51.437700 +223.670000 +171.477000 +259.026000 +303.617000 +339.432000 +377.571000 +1000.000000 +1000.000000 +490.182000 +903.576000 +273.964000 +258.499000 +1000.000000 +988.171000 +1000.000000 +973.583000 +1000.000000 +964.212000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +776.764000 +1000.000000 +1000.000000 +1000.000000 +793.076000 +710.446000 +446.120000 +326.217000 +311.742000 +381.758000 +203.959000 +89.996100 +415.169000 +198.473000 +78.584400 +39.798800 +23.531900 +75.871700 +1.735630 +4.413860 +12.749100 +30.440600 +49.669800 +47.985500 +19.496700 +35.842400 +21.700600 +11.933000 +16.451300 +47.382500 +52.097900 +58.777200 +29.761600 +24.927000 +48.336700 +33.956400 +114.150000 +251.621000 +385.810000 +129.973000 +343.624000 +819.683000 +634.276000 +389.383000 +214.820000 +155.944000 +420.667000 +533.267000 +246.102000 +1000.000000 +769.634000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +580.774000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +405.522000 +278.702000 +391.628000 +499.662000 +486.856000 +115.348000 +49.138100 +70.601800 +83.573900 +91.616200 +54.504000 +52.893600 +36.284300 +28.552500 +1.497290 +3.317890 +12.906900 +8.881180 +13.178700 +47.875400 +32.830100 +30.362400 +10.009700 +12.423300 +13.596800 +39.394500 +136.667000 +84.573500 +91.632400 +112.061000 +81.328900 +523.005000 +185.891000 +214.023000 +276.637000 +213.294000 +73.454100 +353.569000 +253.111000 +411.117000 +202.089000 +445.448000 +1000.000000 +538.799000 +1000.000000 +942.603000 +673.818000 +940.291000 +1000.000000 +796.395000 +1000.000000 +844.027000 +1000.000000 +512.443000 +418.934000 +378.020000 +347.079000 +703.052000 +230.132000 +554.403000 +704.399000 +524.839000 +1000.000000 +429.475000 +326.339000 +74.318300 +23.867700 +113.056000 +84.044700 +72.712500 +59.406000 +36.731300 +40.688600 +19.299100 +1.715080 +1.592960 +9.926200 +3.585720 +5.810680 +32.963400 +13.565800 +4.081950 +2.619700 +13.183100 +62.491600 +39.705500 +157.422000 +83.512600 +225.697000 +58.629700 +140.333000 +227.302000 +163.393000 +270.005000 +518.891000 +631.888000 +239.674000 +325.765000 +351.920000 +1000.000000 +925.753000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +606.695000 +527.709000 +1000.000000 +1000.000000 +976.344000 +423.526000 +253.970000 +476.355000 +352.398000 +269.083000 +551.419000 +1000.000000 +660.372000 +372.675000 +401.699000 +702.557000 +355.917000 +343.255000 +200.869000 +108.725000 +98.411400 +24.629700 +54.766200 +84.276900 +79.389500 +87.955000 +45.016500 +46.407700 +58.549600 +1.298750 +3.089030 +5.295150 +11.992700 +7.501080 +33.163800 +21.057100 +8.835900 +8.646800 +16.321300 +25.411200 +58.163300 +82.708400 +267.783000 +191.754000 +121.551000 +109.089000 +460.460000 +269.377000 +362.501000 +492.021000 +432.460000 +170.216000 +647.421000 +837.903000 +942.208000 +229.559000 +438.386000 +1000.000000 +1000.000000 +1000.000000 +597.958000 +411.744000 +369.838000 +623.478000 +99.298400 +261.037000 +540.942000 +275.561000 +195.374000 +95.787900 +193.861000 +357.619000 +609.428000 +463.393000 +668.875000 +355.654000 +146.038000 +132.264000 +166.756000 +68.655300 +63.528100 +85.060600 +254.507000 +184.133000 +353.153000 +233.628000 +193.771000 +117.849000 +20.908800 +2.888370 +2.281890 +2.854270 +4.649250 +13.150900 +24.712700 +15.029100 +20.086200 +12.401400 +100.554000 +57.497000 +96.742300 +132.103000 +186.757000 +76.152100 +21.797300 +79.553200 +236.686000 +470.351000 +286.636000 +313.038000 +101.328000 +283.446000 +424.531000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +448.806000 +323.128000 +351.075000 +277.644000 +968.345000 +106.456000 +171.439000 +368.698000 +251.930000 +220.735000 +91.964300 +86.608100 +146.761000 +102.525000 +290.417000 +657.146000 +353.627000 +153.907000 +130.713000 +123.677000 +85.008600 +39.544900 +109.098000 +209.112000 +211.924000 +829.097000 +330.152000 +144.132000 +82.174900 +131.187000 +3.374630 +2.372830 +4.935260 +5.057580 +3.486870 +9.841820 +28.109600 +7.220940 +19.267700 +50.069800 +90.448900 +290.293000 +145.108000 +90.008000 +69.615100 +40.140700 +28.373200 +193.613000 +648.883000 +225.917000 +329.217000 +324.984000 +454.606000 +852.807000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +353.012000 +673.594000 +274.465000 +189.918000 +156.517000 +93.185100 +142.250000 +194.131000 +241.518000 +264.158000 +281.618000 +300.027000 +211.764000 +225.033000 +157.848000 +411.064000 +186.053000 +80.938900 +57.477500 +47.999300 +75.129400 +141.691000 +334.636000 +359.646000 +63.343000 +102.975000 +167.088000 +221.267000 +234.003000 +112.646000 +2.235620 +3.353540 +2.384910 +3.030370 +3.859400 +2.915210 +11.896300 +9.980300 +11.067900 +38.000200 +87.095500 +199.749000 +105.114000 +65.728100 +183.050000 +69.926400 +196.921000 +105.224000 +685.285000 +668.336000 +427.654000 +388.853000 +854.944000 +553.548000 +607.718000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +561.646000 +383.036000 +147.409000 +112.008000 +88.610500 +59.653700 +39.393400 +66.915300 +178.266000 +116.518000 +252.002000 +280.742000 +172.202000 +194.700000 +287.572000 +369.685000 +158.306000 +177.434000 +200.736000 +266.441000 +100.710000 +286.639000 +336.846000 +150.314000 +139.331000 +109.597000 +53.390600 +88.818800 +51.979800 +88.278900 +89.398400 +3.235800 +3.483910 +1.000000 +1.224620 +1.243840 +1.864170 +7.786740 +12.849500 +11.013300 +38.878000 +53.865600 +137.191000 +194.600000 +159.077000 +84.524200 +105.272000 +116.533000 +398.838000 +448.292000 +705.715000 +518.960000 +218.041000 +458.630000 +450.410000 +613.066000 +883.123000 +1000.000000 +916.543000 +70.562200 +156.689000 +123.514000 +97.670000 +47.343300 +71.809700 +116.721000 +47.492800 +140.820000 +153.687000 +334.724000 +124.401000 +222.902000 +109.945000 +88.441900 +162.079000 +221.293000 +284.827000 +277.693000 +215.035000 +143.524000 +185.555000 +155.441000 +106.643000 +100.432000 +63.820600 +155.543000 +90.887100 +63.683800 +49.185100 +75.027900 +73.453900 +3.056940 +2.696800 +1.000000 +1.000000 +2.099550 +4.886360 +11.840300 +9.797500 +3.892980 +13.623500 +75.638200 +180.937000 +83.218200 +253.270000 +47.291000 +43.742900 +129.789000 +221.660000 +243.016000 +685.518000 +714.560000 +521.067000 +588.790000 +512.513000 +840.229000 +1000.000000 +1000.000000 +1000.000000 +397.846000 +269.011000 +132.754000 +74.081600 +80.742900 +146.483000 +80.280900 +61.866200 +62.854300 +43.384700 +191.681000 +92.515600 +30.977300 +28.005900 +49.406000 +174.974000 +131.455000 +485.773000 +296.357000 +93.659200 +70.577000 +90.922800 +70.068800 +38.783600 +60.138800 +43.154400 +33.286900 +45.269000 +34.477200 +73.003800 +58.497100 +60.068000 +5.393330 +3.092330 +1.980350 +2.146310 +1.202550 +4.529020 +9.135050 +11.142800 +7.183560 +13.178100 +105.542000 +75.975300 +121.503000 +105.247000 +104.964000 +54.002200 +81.947700 +162.328000 +337.356000 +305.747000 +402.755000 +896.826000 +303.791000 +635.296000 +348.181000 +556.246000 +1000.000000 +656.469000 +610.611000 +235.109000 +215.345000 +44.099400 +53.952900 +32.116500 +85.267200 +85.518600 +55.423700 +42.717300 +90.293300 +59.932500 +28.986500 +36.892100 +33.978600 +101.593000 +109.527000 +70.840500 +97.734000 +41.686000 +18.112000 +25.164600 +135.071000 +92.453200 +36.807900 +48.958500 +27.012600 +18.348400 +35.111400 +72.523800 +36.607400 +47.061700 +23.503100 +7.606810 +6.125060 +2.701090 +4.123350 +4.230200 +16.280400 +9.852020 +10.952400 +17.421500 +61.303000 +68.533300 +35.314600 +67.972700 +75.491600 +154.485000 +248.737000 +276.812000 +622.623000 +556.632000 +494.930000 +183.991000 +348.595000 +192.272000 +194.376000 +345.847000 +334.957000 +409.543000 +163.940000 +169.308000 +70.312400 +44.245900 +117.235000 +70.466100 +65.760700 +169.931000 +39.577800 +21.770800 +54.118800 +24.779100 +88.940800 +73.151900 +49.268600 +87.254500 +47.590900 +47.531500 +61.956000 +83.592100 +54.505400 +86.894600 +253.906000 +108.137000 +61.602000 +42.941400 +49.334400 +37.076400 +22.643800 +20.455500 +16.626000 +21.212500 +26.818800 +13.434900 +15.006900 +8.481070 +3.392110 +11.430100 +5.357990 +86.728900 +32.277900 +84.713300 +201.322000 +49.181600 +37.328100 +139.546000 +106.429000 +246.061000 +596.980000 +361.819000 +214.007000 +364.731000 +498.201000 +343.176000 +299.568000 +124.037000 +44.599700 +159.459000 +115.622000 +94.442000 +110.378000 +196.014000 +47.889900 +44.997200 +50.805100 +59.174000 +37.766100 +100.400000 +66.906000 +55.027800 +25.506000 +73.888300 +109.810000 +154.019000 +226.100000 +81.809600 +39.728100 +55.666800 +42.033700 +57.681800 +92.818900 +139.539000 +129.410000 +122.796000 +52.068900 +87.393200 +73.661100 +49.946300 +14.410500 +32.078400 +28.290200 +23.242200 +40.869600 +30.324300 +22.983100 +11.050300 +12.867000 +4.707560 +8.270690 +16.431000 +61.636900 +92.544200 +175.532000 +35.365800 +124.606000 +191.522000 +112.565000 +335.529000 +170.164000 +302.291000 +205.006000 +124.735000 +362.052000 +454.463000 +183.027000 +66.270200 +26.303000 +22.176900 +58.469300 +54.358300 +70.620800 +230.149000 +50.177100 +32.584600 +30.596300 +46.026300 +153.887000 +373.558000 +132.817000 +71.899900 +98.079100 +290.781000 +628.438000 +425.740000 +564.812000 +148.980000 +49.110100 +53.354800 +15.395100 +37.445100 +20.794200 +72.769300 +256.550000 +240.352000 +151.042000 +117.850000 +80.579500 +83.885000 +60.343200 +28.519800 +55.762200 +18.209600 +73.499300 +77.198300 +32.774100 +27.173200 +19.831300 +5.776140 +8.465680 +11.766500 +35.347900 +69.445300 +175.370000 +132.430000 +78.120100 +131.210000 +130.657000 +257.425000 +100.291000 +261.896000 +125.645000 +173.592000 +76.976800 +361.309000 +95.494800 +39.952200 +20.878800 +39.585400 +27.774700 +59.640400 +32.912700 +47.184400 +38.070600 +51.551100 +68.671100 +107.468000 +196.310000 +163.611000 +181.376000 +167.599000 +176.477000 +333.979000 +663.856000 +494.132000 +397.778000 +280.019000 +134.224000 +80.657300 +54.311500 +25.139000 +36.669700 +320.947000 +309.471000 +196.713000 +252.641000 +41.442600 +33.510400 +80.744700 +93.465100 +46.295200 +49.146700 +43.364400 +108.267000 +46.577500 +107.193000 +26.744600 +14.183300 +19.575700 +11.066000 +10.793000 +66.409600 +52.186600 +34.637900 +148.287000 +224.858000 +272.005000 +379.404000 +180.582000 +192.424000 +268.222000 +200.757000 +127.984000 +288.064000 +153.066000 +112.536000 +38.050100 +10.738100 +23.360100 +21.627700 +28.103000 +32.598500 +21.619800 +60.396600 +57.472600 +71.957800 +121.807000 +127.412000 +83.639900 +167.206000 +253.321000 +91.960700 +507.573000 +598.816000 +426.510000 +201.772000 +176.363000 +167.749000 +61.641900 +88.721000 +38.711400 +89.713300 +288.600000 +286.499000 +111.528000 +100.452000 +84.645600 +41.010000 +39.811600 +70.606600 +67.262200 +46.577500 +38.368300 +17.844600 +72.272300 +74.420400 +110.481000 +29.129500 +29.007300 +16.499600 +64.169100 +20.560300 +16.754800 +39.442400 +185.502000 +128.670000 +232.107000 +247.827000 +436.965000 +200.176000 +225.358000 +199.357000 +83.161700 +526.408000 +113.911000 +21.082900 +11.860800 +15.333600 +13.089400 +25.166200 +51.717800 +85.691100 +42.133600 +32.445200 +51.888800 +58.528200 +81.295900 +138.305000 +127.170000 +80.930700 +342.403000 +168.792000 +382.016000 +564.177000 +362.217000 +239.476000 +154.549000 +169.872000 +182.079000 +255.081000 +72.900200 +23.879200 +121.608000 +79.741400 +65.370900 +46.917500 +45.411900 +107.933000 +63.562000 +97.524300 +42.505400 +53.934100 +20.398100 +21.914700 +115.193000 +56.975800 +49.726300 +35.709000 +24.475200 +22.496600 +55.250900 +43.873400 +29.913700 +83.256400 +81.361200 +257.885000 +127.012000 +83.862300 +262.862000 +401.719000 +176.299000 +172.076000 +334.518000 +473.714000 +248.149000 +37.095100 +39.696800 +58.078800 +21.099100 +16.920500 +28.835700 +20.750800 +42.026900 +27.773600 +23.431200 +53.142700 +57.710100 +182.778000 +123.291000 +108.505000 +201.961000 +168.804000 +524.046000 +208.337000 +194.597000 +100.549000 +168.363000 +213.359000 +68.565700 +140.692000 +82.801600 +16.889200 +21.492200 +31.549800 +22.135300 +33.515200 +43.909400 +70.091800 +47.286800 +81.337100 +36.676200 +20.731400 +10.706000 +37.141600 +38.378700 +59.547100 +55.362200 +32.697200 +34.249800 +106.605000 +116.276000 +73.725000 +92.460500 +64.537300 +83.070300 +128.106000 +246.986000 +81.440400 +223.958000 +337.562000 +172.907000 +247.708000 +267.583000 +307.974000 +86.612100 +111.416000 +35.362800 +36.485200 +7.503120 +26.007200 +18.585300 +33.884100 +110.550000 +193.841000 +37.594100 +25.970800 +49.520600 +159.774000 +85.655800 +91.795700 +115.985000 +218.812000 +401.157000 +183.334000 +232.235000 +96.641600 +142.022000 +58.210000 +70.593400 +36.535700 +24.523700 +38.335100 +12.266900 +39.397400 +28.400500 +36.376600 +97.473400 +60.153400 +48.669100 +58.089100 +21.996000 +12.022700 +16.759600 +44.765500 +81.723900 +79.894100 +91.917200 +42.711300 +124.536000 +33.699700 +36.223900 +69.329500 +58.843800 +55.166400 +149.168000 +166.097000 +229.598000 +199.513000 +245.606000 +387.977000 +190.252000 +125.722000 +204.935000 +253.610000 +222.675000 +205.424000 +53.571200 +57.717600 +15.149100 +25.562400 +31.607500 +21.712300 +106.605000 +87.357800 +144.019000 +53.710400 +56.698700 +88.534200 +38.481600 +40.655000 +67.775900 +69.544600 +176.079000 +410.888000 +102.717000 +87.572400 +67.249700 +99.286100 +35.228900 +34.385600 +23.034500 +17.848900 +21.067900 +53.526000 +148.257000 +105.433000 +77.493200 +129.445000 +170.003000 +71.820400 +33.016500 +15.523100 +10.924000 +87.544300 +58.559400 +135.787000 +159.575000 +229.553000 +284.430000 +118.586000 +103.952000 +61.003300 +77.174700 +201.344000 +145.229000 +419.101000 +840.613000 +546.490000 +113.100000 +197.279000 +124.738000 +113.872000 +117.965000 +248.847000 +114.799000 +89.104500 +123.371000 +89.178100 +76.325100 +20.245600 +36.791300 +51.361400 +35.032300 +18.300400 +47.742500 +18.322800 +39.946800 +46.190700 +52.383700 +11.691200 +54.763800 +152.428000 +450.648000 +296.755000 +242.710000 +89.251900 +59.235500 +44.751800 +41.844000 +14.368400 +10.345000 +19.088100 +24.714400 +24.330200 +33.037500 +97.722500 +116.373000 +183.817000 +154.119000 +109.289000 +124.781000 +52.354300 +22.714400 +83.607500 +150.237000 +97.438400 +134.580000 +92.889500 +199.573000 +143.073000 +124.903000 +113.188000 +143.881000 +150.429000 +345.042000 +554.873000 +1000.000000 +552.730000 +161.693000 +140.323000 +45.753400 +71.071100 +183.606000 +63.391400 +41.737700 +105.560000 +146.655000 +66.075600 +70.125000 +35.192400 +38.889100 +29.525900 +11.706400 +26.831500 +16.498300 +34.082100 +38.764500 +23.951800 +21.458700 +25.586700 +64.845300 +73.265900 +178.132000 +118.689000 +193.501000 +130.283000 +212.340000 +66.228300 +14.959600 +12.087800 +7.975630 +18.918400 +27.622600 +28.219100 +27.643900 +60.939900 +36.744000 +137.417000 +112.078000 +164.770000 +110.508000 +75.625700 +38.428500 +11.534500 +33.957600 +35.542900 +49.072300 +52.091000 +135.999000 +130.624000 +138.183000 +269.652000 +488.271000 +112.638000 +182.739000 +174.405000 +434.005000 +286.286000 +189.185000 +92.969500 +151.143000 +128.819000 +122.639000 +330.570000 +167.241000 +139.525000 +121.758000 +201.513000 +124.615000 +48.319000 +91.423700 +78.168600 +14.852300 +20.639500 +7.139740 +19.393900 +13.792000 +13.023700 +15.344100 +34.092700 +18.261500 +33.195700 +46.614600 +63.721300 +65.833400 +135.607000 +91.412500 +45.597000 +14.446100 +8.494320 +23.076500 +28.836300 +19.857400 +35.329900 +60.979100 +97.491400 +49.997100 +81.732800 +47.802200 +93.221700 +51.791500 +49.857300 +97.250900 +16.001700 +23.338500 +59.485700 +132.814000 +201.520000 +176.740000 +88.119900 +176.703000 +228.755000 +739.489000 +170.572000 +66.859800 +72.520400 +259.229000 +183.900000 +144.193000 +120.043000 +87.867600 +99.909700 +132.035000 +223.310000 +166.293000 +159.095000 +372.552000 +448.532000 +233.176000 +105.028000 +65.134400 +94.476500 +101.561000 +88.151500 +35.408500 +33.372500 +15.564000 +9.321380 +18.303600 +17.865500 +84.424400 +40.285400 +27.218600 +32.061100 +77.891900 +43.073600 +66.261500 +35.522100 +80.629300 +24.500000 +34.434300 +38.894700 +17.645200 +44.428000 +24.989700 +107.976000 +66.884800 +70.989500 +39.145500 +61.557900 +43.070800 +34.760500 +32.856900 +13.455700 +30.243300 +67.030500 +43.970200 +152.824000 +192.551000 +314.432000 +319.362000 +338.449000 +168.307000 +133.660000 +71.597700 +195.105000 +49.174800 +68.772700 +153.095000 +91.770500 +70.053100 +53.517900 +63.640900 +69.990300 +170.119000 +517.426000 +130.006000 +377.229000 +265.928000 +238.768000 +177.978000 +190.159000 +181.713000 +80.889800 +46.684200 +19.260000 +50.478400 +27.673900 +53.599600 +23.136200 +22.629400 +9.548830 +57.792900 +51.780400 +105.376000 +145.212000 +114.130000 +21.774700 +58.727300 +86.041700 +34.214400 +44.900200 +48.131700 +45.176600 +48.614200 +81.295200 +69.851000 +55.529800 +49.248100 +28.140600 +8.727590 +15.744500 +13.064300 +2.531590 +9.367480 +21.521200 +27.633300 +33.508200 +93.592200 +189.577000 +363.825000 +249.672000 +510.674000 +161.417000 +149.975000 +452.196000 +132.189000 +103.588000 +116.789000 +59.466100 +37.489000 +100.088000 +149.279000 +118.640000 +223.766000 +226.050000 +122.569000 +367.924000 +280.060000 +161.071000 +206.822000 +188.131000 +106.530000 +70.182200 +33.315000 +44.567600 +48.093000 +47.133800 +13.704700 +30.652100 +9.068320 +19.862100 +46.508500 +149.620000 +213.226000 +301.488000 +91.696800 +90.506100 +53.792800 +67.779700 +84.063600 +50.394600 +69.906500 +41.505100 +22.834200 +49.553600 +40.873200 +58.599000 +21.613200 +9.877470 +10.624400 +7.437880 +6.908620 +1.123870 +5.751700 +4.743980 +16.302800 +22.873900 +237.667000 +245.643000 +731.546000 +630.978000 +433.441000 +180.170000 +123.273000 +110.610000 +132.652000 +122.315000 +106.137000 +64.964400 +42.757600 +86.500100 +92.239400 +159.231000 +143.599000 +88.408700 +54.744100 +138.751000 +169.904000 +399.217000 +447.169000 +183.873000 +241.995000 +75.525900 +132.533000 +46.258300 +60.142800 +25.882600 +28.338400 +19.059600 +26.655600 +46.460100 +69.914000 +348.885000 +309.808000 +602.517000 +318.937000 +93.884900 +188.360000 +113.038000 +42.127300 +63.679500 +21.278800 +19.509600 +25.494300 +58.090300 +14.040800 +17.810900 +21.459900 +26.744300 +12.139400 +8.420560 +4.889690 +1.442810 +4.947920 +14.049900 +28.673800 +63.209400 +212.460000 +704.939000 +450.685000 +322.161000 +193.686000 +200.928000 +97.612900 +87.792600 +44.322700 +55.436300 +38.886200 +100.128000 +48.834400 +192.164000 +87.724600 +32.794000 +56.511100 +25.972400 +48.352900 +31.257200 +106.868000 +190.756000 +103.609000 +70.375000 +360.462000 +70.203300 +74.125700 +124.043000 +156.478000 +20.529800 +30.845400 +28.398300 +61.694500 +35.633400 +179.823000 +309.861000 +282.562000 +440.878000 +230.148000 +120.654000 +45.924200 +36.238900 +64.252100 +45.724500 +24.578200 +16.325300 +17.666500 +29.524400 +25.299000 +9.130160 +23.368500 +17.312600 +23.446900 +11.462400 +4.872230 +7.764680 +6.040600 +14.800000 +11.009300 +53.991200 +331.927000 +438.609000 +277.258000 +714.263000 +143.671000 +83.620300 +49.509300 +7.861560 +23.357200 +16.073700 +10.579400 +22.956800 +16.673800 +26.856100 +28.314700 +13.445200 +12.627100 +23.378400 +17.206400 +17.078400 +72.351900 +37.902200 +68.059900 +338.916000 +131.055000 +89.810100 +74.021300 +44.165700 +46.486300 +133.354000 +28.426500 +30.074200 +54.943800 +142.594000 +167.953000 +248.672000 +78.099600 +157.675000 +67.785900 +77.462000 +17.951800 +51.152800 +20.632000 +20.768400 +14.144300 +7.555700 +6.345210 +57.106700 +21.700600 +3.616970 +8.614710 +11.076900 +8.894920 +12.020400 +5.305880 +7.738640 +12.814800 +31.334500 +67.527300 +139.226000 +337.472000 +287.175000 +303.422000 +252.102000 +64.439300 +142.373000 +23.844000 +10.806700 +8.465250 +16.803800 +21.915100 +55.380600 +67.378500 +31.045100 +25.740700 +13.931400 +10.271300 +11.828200 +9.937300 +13.171000 +44.122300 +20.968800 +46.446900 +47.406000 +130.597000 +52.836400 +50.344700 +23.938800 +33.567400 +127.204000 +64.404400 +98.171900 +79.050300 +65.529400 +103.487000 +246.393000 +57.674300 +135.800000 +24.622300 +47.947800 +36.193300 +24.991800 +26.968800 +7.403680 +5.517220 +16.432700 +28.556600 +43.878300 +13.323400 +17.049200 +6.368860 +7.068120 +5.557690 +46.527100 +45.709600 +97.619200 +19.849800 +43.963800 +139.899000 +408.707000 +337.750000 +317.367000 +522.753000 +212.234000 +229.227000 +95.492500 +10.390300 +16.817600 +6.965780 +26.504700 +15.762700 +24.129600 +36.572700 +41.068800 +9.391830 +3.877460 +18.143200 +8.560860 +11.937400 +14.380900 +31.801700 +36.480200 +37.677900 +30.897400 +34.148700 +19.718900 +35.240100 +6.621900 +11.108500 +46.926500 +78.182300 +36.052500 +19.461600 +28.891600 +65.668500 +74.225200 +74.646500 +131.413000 +49.419000 +35.853900 +15.226400 +9.595330 +11.396500 +2.477750 +1.567280 +2.754310 +7.622150 +37.458900 +44.965100 +18.103100 +12.434200 +6.343910 +9.615800 +18.028300 +49.959600 +/ \ No newline at end of file diff --git a/examples/ADGPRS/5spot/include/permz.in b/examples/ADGPRS/5spot/include/permz.in new file mode 100644 index 000000000..825f42dc3 --- /dev/null +++ b/examples/ADGPRS/5spot/include/permz.in @@ -0,0 +1,3602 @@ +PERMZ +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +16.618400 +30.562200 +45.084300 +46.797600 +34.400400 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +330.717000 +266.891000 +275.479000 +941.619000 +321.612000 +243.661000 +300.252000 +163.722000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +25.677200 +63.885600 +63.762900 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +94.609500 +1.000000 +1000.000000 +1000.000000 +531.480000 +351.048000 +175.754000 +151.413000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +10.317900 +1.000000 +1.000000 +1.000000 +6.859260 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +44.332200 +43.381800 +1.000000 +1.000000 +39.072900 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +136.000000 +1.000000 +1.000000 +459.093000 +967.896000 +317.484000 +1000.000000 +247.794000 +1.000000 +121.639000 +426.768000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +7.082700 +12.195000 +1.000000 +6.073500 +14.086000 +1.000000 +11.365700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +38.296200 +1.000000 +1.000000 +1.000000 +81.185400 +153.657000 +252.775000 +187.385000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +640.467000 +381.189000 +1000.000000 +1000.000000 +240.157000 +1.000000 +1.000000 +230.677000 +363.165000 +139.273000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +14.885000 +20.102400 +24.374700 +11.096000 +7.740120 +1.000000 +7.100940 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +58.334100 +148.583000 +52.915500 +70.738200 +219.575000 +159.607000 +138.589000 +1.000000 +1.000000 +1.000000 +130.940000 +143.628000 +94.238700 +1.000000 +1.000000 +1.000000 +837.669000 +626.652000 +460.512000 +362.436000 +1.000000 +1.000000 +1.000000 +1.000000 +214.615000 +194.468000 +120.468000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +5.780400 +6.548160 +28.095900 +22.106100 +35.654400 +31.445700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +63.894900 +1.000000 +58.664700 +275.478000 +144.832000 +82.847100 +67.848600 +208.477000 +105.153000 +1.000000 +143.552000 +1.000000 +1.000000 +100.147000 +60.156900 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +569.046000 +198.587000 +207.826000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +130.302000 +158.249000 +1.000000 +104.375000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +2.077550 +4.696860 +13.645400 +29.584700 +23.113700 +13.542200 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +54.832500 +96.922200 +137.205000 +439.188000 +231.724000 +190.526000 +176.466000 +193.915000 +158.850000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +122.689000 +1.000000 +1.000000 +1.000000 +1.000000 +302.817000 +376.212000 +259.448000 +130.324000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +60.211200 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +4.515450 +4.557960 +6.141120 +14.988900 +26.333900 +16.204300 +17.594200 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +33.621900 +1.000000 +1.000000 +1.000000 +82.033500 +211.327000 +418.230000 +857.466000 +339.468000 +794.070000 +264.033000 +801.822000 +101.131000 +76.236000 +39.708000 +123.871000 +54.307800 +60.986100 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +363.093000 +189.114000 +406.143000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +7.197150 +1.000000 +3.725070 +7.484370 +26.296500 +69.636000 +23.441700 +28.355100 +11.673100 +1.000000 +1.000000 +13.152800 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +96.938100 +134.014000 +207.942000 +307.119000 +732.273000 +355.881000 +406.605000 +97.621500 +86.726100 +103.297000 +163.580000 +97.141500 +73.324800 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +211.005000 +1.000000 +473.070000 +329.013000 +327.009000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +113.994000 +148.857000 +215.855000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +4.009800 +3.683940 +15.547100 +9.722580 +35.074800 +130.266000 +41.281500 +21.418300 +7.838340 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +172.147000 +226.112000 +1.000000 +176.117000 +252.565000 +193.939000 +1.000000 +1.000000 +46.521600 +71.218500 +88.275900 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +145.491000 +360.963000 +369.648000 +1.000000 +1.000000 +1.000000 +200.094000 +85.363500 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +9.559920 +19.125700 +33.954900 +38.050800 +35.287500 +50.423100 +24.167000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +202.510000 +292.307000 +211.615000 +632.079000 +305.898000 +1.000000 +197.857000 +1.000000 +164.401000 +1.000000 +1.000000 +131.212000 +1.000000 +1.000000 +477.240000 +1.000000 +1.000000 +1.000000 +242.854000 +207.782000 +189.669000 +330.225000 +124.110000 +1.000000 +120.221000 +87.861000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +3.725670 +3.932490 +4.019400 +11.221200 +17.371800 +46.298100 +43.966500 +17.148400 +16.037200 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +238.046000 +294.161000 +282.769000 +438.654000 +1.000000 +240.964000 +289.851000 +328.842000 +273.087000 +590.472000 +369.804000 +1.000000 +1.000000 +415.458000 +387.381000 +252.260000 +185.682000 +85.957800 +75.634200 +253.179000 +171.733000 +421.695000 +296.890000 +273.772000 +124.809000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +3.428970 +3.081210 +9.192240 +24.127300 +25.252600 +14.864500 +15.267500 +8.769900 +4.953390 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +151.859000 +247.840000 +301.797000 +373.083000 +477.081000 +451.866000 +272.455000 +1000.000000 +419.706000 +243.539000 +1.000000 +1.000000 +460.674000 +488.352000 +267.769000 +281.482000 +208.498000 +186.069000 +290.568000 +211.416000 +310.665000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +4.428810 +1.000000 +4.019340 +6.165840 +11.848800 +29.252400 +12.971300 +7.045200 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +67.852800 +1.000000 +1.000000 +1.000000 +1.000000 +228.186000 +509.469000 +323.874000 +746.409000 +575.826000 +363.975000 +1.000000 +1.000000 +1.000000 +1.000000 +550.179000 +443.775000 +658.524000 +614.691000 +762.681000 +401.376000 +1000.000000 +549.891000 +188.019000 +406.881000 +440.463000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +10.925200 +11.181600 +16.899400 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +79.847700 +1.000000 +1.000000 +112.817000 +1.000000 +251.480000 +291.905000 +1.000000 +1.000000 +1.000000 +1.000000 +273.229000 +162.141000 +507.279000 +664.605000 +1000.000000 +371.100000 +351.498000 +930.249000 +693.345000 +666.684000 +167.133000 +128.819000 +211.193000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +4.764540 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +168.183000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +223.569000 +272.766000 +370.686000 +357.216000 +700.644000 +507.468000 +1000.000000 +921.252000 +749.550000 +575.208000 +248.162000 +202.559000 +214.260000 +255.199000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +6.541740 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +7.880550 +4.142550 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +161.120000 +1.000000 +1.000000 +495.456000 +141.490000 +1.000000 +288.184000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +334.503000 +1.000000 +671.475000 +1000.000000 +469.386000 +398.310000 +226.252000 +371.136000 +155.968000 +243.694000 +185.729000 +182.400000 +195.453000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +5.543760 +1.000000 +9.526770 +8.338260 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +200.994000 +324.654000 +1.000000 +676.224000 +312.330000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +663.864000 +725.811000 +344.541000 +1.000000 +1.000000 +1.000000 +103.528000 +171.658000 +164.905000 +110.724000 +202.130000 +1.000000 +1.000000 +145.334000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +10.941400 +5.422440 +7.617540 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +269.076000 +540.273000 +340.074000 +256.402000 +567.630000 +220.546000 +1.000000 +1.000000 +1.000000 +817.230000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +820.932000 +809.865000 +539.517000 +1.000000 +1.000000 +1.000000 +151.106000 +142.336000 +250.271000 +188.995000 +1.000000 +1.000000 +236.876000 +103.917000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +5.575680 +1.000000 +6.653310 +10.949000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +228.093000 +391.440000 +353.331000 +172.905000 +1.000000 +1.000000 +516.288000 +724.674000 +980.973000 +1000.000000 +1.000000 +1.000000 +1000.000000 +740.244000 +479.280000 +448.299000 +347.319000 +268.850000 +255.299000 +491.058000 +350.049000 +223.278000 +167.332000 +1.000000 +112.641000 +245.375000 +216.809000 +55.926900 +21.500800 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +67.042800 +129.427000 +259.686000 +97.175400 +156.026000 +623.808000 +291.258000 +1.000000 +140.761000 +1.000000 +1.000000 +1.000000 +903.675000 +1000.000000 +1000.000000 +1000.000000 +1.000000 +1000.000000 +614.838000 +623.610000 +716.853000 +1000.000000 +636.216000 +625.107000 +670.080000 +165.993000 +380.592000 +92.195700 +1.000000 +62.504100 +86.642700 +36.598500 +48.159900 +36.664200 +101.287000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +372.657000 +109.178000 +199.323000 +158.561000 +190.236000 +161.097000 +182.851000 +240.839000 +137.571000 +1.000000 +1.000000 +1000.000000 +1.000000 +1.000000 +1000.000000 +1000.000000 +1000.000000 +972.246000 +1.000000 +461.616000 +627.510000 +1000.000000 +624.165000 +1000.000000 +254.263000 +1.000000 +168.683000 +1.000000 +46.484700 +64.423800 +133.019000 +181.537000 +149.176000 +66.939600 +83.741700 +1.000000 +1.000000 +1.000000 +5.905530 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +9.641940 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +121.248000 +190.141000 +142.878000 +140.906000 +1.000000 +1.000000 +217.817000 +1.000000 +334.437000 +1.000000 +712.623000 +1.000000 +1.000000 +1.000000 +1000.000000 +1000.000000 +1000.000000 +1.000000 +325.239000 +1.000000 +1.000000 +549.657000 +547.563000 +925.851000 +362.040000 +775.209000 +378.090000 +213.605000 +55.861500 +1.000000 +124.676000 +94.139100 +42.774300 +86.112600 +56.744400 +1.000000 +1.000000 +5.267730 +5.131440 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +7.040490 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +61.384500 +1.000000 +21.576300 +61.581000 +1.000000 +1.000000 +1.000000 +1.000000 +144.283000 +135.382000 +203.153000 +1.000000 +1.000000 +1.000000 +1.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +900.555000 +1.000000 +975.777000 +1.000000 +544.185000 +415.614000 +241.058000 +451.368000 +451.467000 +638.205000 +392.058000 +705.297000 +301.713000 +1.000000 +198.376000 +192.494000 +47.917500 +55.513500 +97.759200 +75.905100 +125.248000 +6.057960 +1.000000 +1.000000 +6.515100 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +6.264150 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +26.045200 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +225.485000 +256.645000 +602.082000 +1.000000 +1.000000 +707.250000 +924.042000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1.000000 +1000.000000 +577.992000 +614.670000 +1.000000 +676.134000 +766.254000 +1000.000000 +1000.000000 +221.291000 +219.270000 +127.619000 +1.000000 +150.981000 +86.070300 +50.383200 +31.330200 +50.401500 +53.044200 +1.000000 +1.000000 +7.057230 +5.810940 +1.000000 +1.000000 +1.000000 +5.386710 +1.000000 +10.117400 +9.687060 +12.234200 +1.000000 +7.410780 +8.696940 +33.377700 +16.498600 +31.228800 +1.000000 +115.299000 +40.775400 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +74.062800 +173.554000 +135.104000 +217.103000 +332.691000 +624.396000 +418.341000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +680.637000 +1000.000000 +653.166000 +1.000000 +508.755000 +519.393000 +1.000000 +432.969000 +863.901000 +842.037000 +421.308000 +390.006000 +1000.000000 +665.373000 +112.239000 +99.820200 +63.711000 +58.869000 +51.979200 +81.550500 +3.081720 +5.800800 +7.870020 +6.781170 +6.617430 +1.000000 +1.000000 +1.000000 +9.678630 +6.687660 +15.800700 +23.834500 +9.464490 +1.000000 +12.294900 +1.000000 +13.508800 +38.783700 +113.359000 +48.805200 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +125.897000 +90.121500 +197.948000 +515.217000 +807.489000 +775.209000 +394.188000 +675.834000 +953.892000 +1000.000000 +1000.000000 +837.960000 +1000.000000 +1000.000000 +1.000000 +1000.000000 +1.000000 +1.000000 +1.000000 +1.000000 +644.634000 +407.418000 +1.000000 +1.000000 +167.322000 +182.071000 +254.556000 +303.321000 +219.468000 +247.281000 +108.286000 +146.498000 +134.622000 +53.070600 +83.910300 +11.575300 +7.816080 +10.698200 +11.035700 +12.293100 +5.444760 +1.000000 +10.465600 +11.475200 +1.000000 +25.261600 +34.993800 +8.935380 +1.000000 +15.007800 +36.486000 +31.098000 +79.513800 +130.910000 +93.199500 +234.024000 +77.617200 +73.917600 +1.000000 +215.447000 +261.427000 +220.374000 +248.415000 +456.936000 +475.038000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +1000.000000 +655.056000 +1000.000000 +1000.000000 +1000.000000 +1.000000 +583.248000 +1.000000 +1.000000 +623.547000 +683.040000 +363.258000 +1.000000 +422.412000 +163.059000 +157.235000 +251.657000 +186.747000 +151.497000 +285.142000 +189.873000 +98.043000 +80.158800 +70.817700 +38.682000 +5.261010 +11.690200 +5.785680 +8.316570 +5.962230 +9.193170 +1.000000 +1.000000 +1.000000 +7.607670 +19.239200 +31.059900 +1.000000 +1.000000 +1.000000 +45.814200 +45.898800 +82.084200 +77.732400 +205.908000 +226.239000 +100.113000 +1.000000 +171.422000 +120.230000 +256.612000 +482.154000 +317.073000 +130.843000 +387.981000 +630.432000 +1000.000000 +1.000000 +487.908000 +1.000000 +1.000000 +769.311000 +1000.000000 +1000.000000 +1000.000000 +1.000000 +1.000000 +1.000000 +1.000000 +371.274000 +420.597000 +1.000000 +496.194000 +297.178000 +1.000000 +110.450000 +153.534000 +60.805500 +1.000000 +187.514000 +102.660000 +27.089800 +27.014900 +1.000000 +21.303500 +1.798360 +2.087800 +3.551430 +7.855680 +8.955570 +13.511700 +11.357600 +1.000000 +1.000000 +1.000000 +18.035200 +40.686000 +1.000000 +1.000000 +1.000000 +1.000000 +15.431300 +67.101000 +51.443100 +77.707800 +91.085100 +101.830000 +113.271000 +390.105000 +417.447000 +147.055000 +271.073000 +82.189200 +77.549700 +343.044000 +296.451000 +465.390000 +1.000000 +479.496000 +1.000000 +1.000000 +816.966000 +1.000000 +1000.000000 +1.000000 +1.000000 +1.000000 +1.000000 +595.428000 +354.255000 +405.387000 +237.923000 +213.134000 +133.836000 +1.000000 +93.522600 +114.527000 +1.000000 +1.000000 +124.551000 +59.541900 +23.575300 +1.000000 +1.000000 +22.761500 +1.000000 +1.324160 +3.824730 +9.132180 +14.900900 +14.395600 +5.849010 +10.752700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +14.501000 +1.000000 +34.245000 +75.486300 +115.743000 +38.991900 +103.087000 +245.905000 +190.283000 +116.815000 +64.446000 +46.783200 +126.200000 +159.980000 +1.000000 +350.646000 +1.000000 +1.000000 +1.000000 +628.242000 +1000.000000 +1000.000000 +945.675000 +1.000000 +1.000000 +538.899000 +514.824000 +542.934000 +427.710000 +1.000000 +1.000000 +83.610600 +1.000000 +149.899000 +146.057000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +3.872070 +2.664350 +1.000000 +14.362600 +9.849030 +9.108720 +1.000000 +1.000000 +1.000000 +1.000000 +41.000100 +25.372000 +27.489700 +33.618300 +24.398700 +156.901000 +55.767300 +64.206900 +82.991100 +63.988200 +22.036200 +106.071000 +75.933300 +123.335000 +60.626700 +133.634000 +411.522000 +161.640000 +314.808000 +282.781000 +1.000000 +1.000000 +1000.000000 +1.000000 +469.032000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +211.320000 +157.452000 +365.943000 +128.843000 +97.901700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +2.977860 +1.000000 +1.000000 +9.889020 +1.000000 +1.000000 +1.000000 +1.000000 +18.747500 +1.000000 +47.226600 +25.053800 +67.709100 +17.588900 +42.099900 +68.190600 +49.017900 +81.001500 +155.667000 +189.566000 +71.902200 +97.729500 +105.576000 +389.850000 +277.726000 +372.378000 +806.064000 +665.277000 +1000.000000 +182.008000 +1.000000 +430.632000 +376.995000 +292.903000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +210.767000 +1.000000 +102.977000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +9.949140 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +17.449000 +1.000000 +80.334900 +57.526200 +36.465300 +32.726700 +138.138000 +80.813100 +108.750000 +147.606000 +129.738000 +51.064800 +194.226000 +251.371000 +282.662000 +68.867700 +131.516000 +390.891000 +338.307000 +593.670000 +179.387000 +123.523000 +110.951000 +187.043000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +76.352100 +1.000000 +105.946000 +1.000000 +58.131300 +35.354700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +30.166200 +17.249100 +29.022700 +39.630900 +56.027100 +22.845600 +1.000000 +23.866000 +71.005800 +141.105000 +85.990800 +93.911400 +30.398400 +85.033800 +127.359000 +399.849000 +512.742000 +744.252000 +459.222000 +478.098000 +488.583000 +134.642000 +96.938400 +105.322000 +83.293200 +290.503000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +106.088000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +62.733600 +63.577200 +248.729000 +99.045600 +43.239600 +24.652500 +39.356100 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +8.432880 +1.000000 +1.000000 +15.020900 +27.134700 +87.087900 +43.532400 +27.002400 +20.884500 +12.042200 +8.511960 +58.083900 +194.665000 +67.775100 +98.765100 +97.495200 +136.382000 +255.842000 +320.469000 +610.782000 +611.652000 +1000.000000 +1000.000000 +332.514000 +105.904000 +202.078000 +82.339500 +1.000000 +46.955100 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +100.391000 +107.894000 +1.000000 +1.000000 +50.126400 +66.380100 +70.200900 +33.793800 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +26.128700 +59.924700 +31.534200 +19.718400 +54.915000 +20.977900 +59.076300 +31.567200 +205.585000 +200.501000 +128.296000 +116.656000 +256.483000 +166.064000 +182.315000 +385.479000 +468.480000 +842.139000 +311.886000 +168.494000 +114.911000 +44.222700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +101.054000 +1.000000 +1.000000 +1.000000 +1.000000 +26.645600 +15.593900 +26.483700 +26.819500 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +11.663400 +16.159700 +41.157300 +58.380000 +47.723100 +25.357300 +31.581600 +34.959900 +119.651000 +134.488000 +211.715000 +155.688000 +65.412300 +137.589000 +135.123000 +183.920000 +264.937000 +465.909000 +274.963000 +21.168700 +47.006700 +37.054200 +29.301000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +22.508400 +22.036200 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +22.691500 +54.281100 +24.965500 +75.981000 +14.187300 +13.122900 +38.936700 +66.498000 +72.904800 +205.655000 +214.368000 +156.320000 +176.637000 +153.754000 +252.069000 +473.601000 +469.665000 +312.516000 +119.354000 +80.703300 +39.826200 +22.224500 +24.222900 +43.944900 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +17.549100 +18.020400 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +31.662600 +22.792600 +36.450900 +31.574100 +31.489200 +16.200700 +24.584300 +48.698400 +101.207000 +91.724100 +120.826000 +269.048000 +91.137300 +190.589000 +104.454000 +166.874000 +315.309000 +196.941000 +183.183000 +70.532700 +64.603500 +13.229800 +16.185900 +9.634950 +25.580200 +25.655600 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +21.757100 +1.000000 +14.118500 +7.050930 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +4.884120 +1.000000 +1.000000 +1.000000 +18.390900 +20.560000 +10.594400 +20.391800 +22.647500 +46.345500 +74.621100 +83.043600 +186.787000 +166.990000 +148.479000 +55.197300 +104.579000 +57.681600 +58.312800 +103.754000 +100.487000 +122.863000 +49.182000 +50.792400 +21.093700 +13.273800 +35.170500 +21.139800 +19.728200 +50.979300 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +76.171800 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +8.045640 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +26.018700 +9.683370 +25.414000 +60.396600 +14.754500 +11.198400 +41.863800 +31.928700 +73.818300 +179.094000 +108.546000 +64.202100 +109.419000 +149.460000 +102.953000 +89.870400 +37.211100 +13.379900 +47.837700 +34.686600 +28.332600 +33.113400 +58.804200 +14.367000 +13.499200 +15.241500 +17.752200 +1.000000 +30.120000 +20.071800 +16.508300 +1.000000 +22.166500 +32.943000 +46.205700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +41.861700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +12.260900 +9.097290 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +4.929300 +18.491100 +27.763300 +52.659600 +1.000000 +37.381800 +57.456600 +33.769500 +100.659000 +51.049200 +90.687300 +61.501800 +37.420500 +108.616000 +136.339000 +54.908100 +1.000000 +1.000000 +1.000000 +17.540800 +1.000000 +21.186200 +69.044700 +15.053100 +1.000000 +1.000000 +1.000000 +46.166100 +112.067000 +39.845100 +21.570000 +29.423700 +87.234300 +188.531000 +127.722000 +169.444000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +76.965000 +72.105600 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +22.049800 +23.159500 +9.832230 +8.151960 +5.949390 +1.000000 +1.000000 +1.000000 +10.604400 +20.833600 +52.611000 +39.729000 +23.436000 +39.363000 +39.197100 +77.227500 +30.087300 +78.568800 +37.693500 +52.077600 +1.000000 +108.393000 +28.648400 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +15.465300 +20.601300 +32.240400 +58.893000 +49.083300 +54.412800 +50.279700 +52.943100 +100.194000 +199.157000 +148.240000 +119.333000 +84.005700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +96.284100 +92.841300 +59.013900 +75.792300 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +32.480100 +13.973300 +32.157900 +8.023380 +1.000000 +1.000000 +1.000000 +1.000000 +19.922900 +15.656000 +10.391400 +44.486100 +67.457400 +81.601500 +113.821000 +54.174600 +57.727200 +80.466600 +60.227100 +38.395200 +86.419200 +45.919800 +33.760800 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +18.119000 +17.241800 +21.587300 +36.542100 +38.223600 +25.092000 +50.161800 +75.996300 +27.588200 +152.272000 +179.645000 +127.953000 +60.531600 +52.908900 +50.324700 +1.000000 +1.000000 +1.000000 +26.914000 +86.580000 +85.949700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +21.681700 +22.326100 +33.144300 +1.000000 +8.702190 +1.000000 +19.250700 +6.168090 +1.000000 +11.832700 +55.650600 +38.601000 +69.632100 +74.348100 +131.089000 +60.052800 +67.607400 +59.807100 +1.000000 +157.922000 +34.173300 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +15.515300 +25.707300 +12.640100 +1.000000 +15.566600 +1.000000 +1.000000 +41.491500 +38.151000 +1.000000 +102.721000 +50.637600 +114.605000 +169.253000 +108.665000 +71.842800 +46.364700 +1.000000 +54.623700 +76.524300 +1.000000 +1.000000 +36.482400 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +34.557900 +17.092700 +14.917900 +10.712700 +1.000000 +6.748980 +16.575300 +13.162000 +8.974110 +24.976900 +24.408400 +77.365500 +38.103600 +25.158700 +78.858600 +120.516000 +52.889700 +51.622800 +100.355000 +142.114000 +74.444700 +1.000000 +1.000000 +17.423600 +1.000000 +1.000000 +1.000000 +1.000000 +12.608100 +1.000000 +1.000000 +1.000000 +1.000000 +54.833400 +36.987300 +32.551500 +60.588300 +50.641200 +157.214000 +62.501100 +58.379100 +30.164700 +50.508900 +64.007700 +1.000000 +1.000000 +24.840500 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +16.608700 +9.809160 +1.000000 +31.981500 +34.882800 +22.117500 +27.738100 +19.361200 +24.921100 +38.431800 +74.095800 +1.000000 +67.187400 +101.269000 +51.872100 +74.312400 +80.274900 +92.392200 +25.983600 +33.424800 +1.000000 +10.945600 +1.000000 +1.000000 +1.000000 +1.000000 +33.165000 +58.152300 +1.000000 +1.000000 +1.000000 +47.932200 +25.696700 +27.538700 +34.795500 +65.643600 +120.347000 +55.000200 +69.670500 +28.992500 +42.606600 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +29.242000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +24.517200 +23.968200 +27.575200 +12.813400 +37.360800 +10.109900 +10.867200 +20.798800 +17.653100 +16.549900 +44.750400 +49.829100 +68.879400 +59.853900 +73.681800 +116.393000 +57.075600 +37.716600 +61.480500 +76.083000 +66.802500 +61.627200 +16.071400 +17.315300 +1.000000 +1.000000 +9.482250 +1.000000 +31.981500 +26.207300 +43.205700 +1.000000 +1.000000 +26.560300 +1.000000 +1.000000 +20.332800 +20.863400 +52.823700 +123.266000 +30.815100 +26.271700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +44.477100 +31.629900 +23.248000 +38.833500 +51.000900 +1.000000 +1.000000 +1.000000 +1.000000 +26.263300 +17.567800 +40.736100 +47.872500 +68.865900 +85.329000 +35.575800 +31.185600 +18.301000 +23.152400 +60.403200 +43.568700 +125.730000 +252.184000 +163.947000 +33.930000 +59.183700 +37.421400 +34.161600 +35.389500 +74.654100 +34.439700 +26.731300 +37.011300 +26.753400 +22.897500 +6.073680 +11.037400 +15.408400 +10.509700 +1.000000 +14.322700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +16.429100 +45.728400 +135.194000 +89.026500 +72.813000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +29.316700 +34.911900 +55.145100 +46.235700 +1.000000 +37.434300 +15.706300 +1.000000 +25.082200 +45.071100 +29.231500 +40.374000 +27.866800 +59.871900 +42.921900 +37.470900 +33.956400 +43.164300 +45.128700 +103.513000 +166.462000 +366.603000 +165.819000 +48.507900 +42.096900 +1.000000 +21.321300 +55.081800 +19.017400 +12.521300 +31.668000 +43.996500 +19.822700 +21.037500 +10.557700 +11.666700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +19.453600 +1.000000 +53.439600 +35.606700 +58.050300 +1.000000 +63.702000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +41.225100 +33.623400 +49.431000 +33.152400 +22.687700 +11.528500 +1.000000 +10.187300 +10.662900 +14.721700 +15.627300 +40.799700 +39.187200 +41.454900 +80.895600 +146.481000 +33.791400 +54.821700 +52.321500 +130.201000 +85.885800 +56.755500 +27.890800 +45.342900 +38.645700 +36.791700 +99.171000 +50.172300 +41.857500 +36.527400 +60.453900 +37.384500 +14.495700 +27.427100 +23.450600 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +40.682100 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +24.519800 +1.000000 +27.966500 +1.000000 +14.957200 +29.175300 +1.000000 +7.001550 +17.845700 +39.844200 +60.456000 +53.022000 +26.436000 +53.010900 +68.626500 +221.847000 +51.171600 +20.057900 +21.756100 +77.768700 +55.170000 +43.257900 +36.012900 +26.360300 +29.972900 +39.610500 +66.993000 +49.887900 +47.728500 +111.766000 +134.560000 +69.952800 +31.508400 +19.540300 +28.342900 +30.468300 +26.445400 +10.622500 +10.011800 +1.000000 +1.000000 +1.000000 +1.000000 +25.327300 +1.000000 +1.000000 +1.000000 +23.367600 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +18.467400 +1.000000 +1.000000 +9.857070 +1.000000 +9.072990 +20.109100 +13.191100 +45.847200 +57.765300 +94.329600 +95.808600 +101.535000 +50.492100 +40.098000 +21.479300 +58.531500 +14.752400 +20.631800 +45.928500 +27.531200 +21.015900 +16.055400 +19.092300 +20.997100 +51.035700 +155.228000 +39.001800 +113.169000 +79.778400 +71.630400 +53.393400 +57.047700 +54.513900 +24.266900 +14.005300 +5.778000 +15.143500 +8.302170 +16.079900 +6.940860 +1.000000 +1.000000 +1.000000 +1.000000 +31.612800 +43.563600 +34.239000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +2.810240 +6.456360 +8.289990 +10.052500 +28.077700 +56.873100 +109.147000 +74.901600 +153.202000 +48.425100 +44.992500 +135.659000 +39.656700 +31.076400 +35.036700 +17.839800 +11.246700 +30.026400 +44.783700 +35.592000 +67.129800 +67.815000 +36.770700 +110.377000 +84.018000 +48.321300 +62.046600 +56.439300 +31.959000 +21.054700 +9.994500 +13.370300 +14.427900 +14.140100 +1.000000 +9.195630 +1.000000 +1.000000 +1.000000 +44.886000 +63.967800 +90.446400 +27.509000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +6.862170 +71.300100 +73.692900 +219.464000 +189.293000 +130.032000 +54.051000 +36.981900 +33.183000 +39.795600 +36.694500 +31.841100 +19.489300 +12.827300 +25.950000 +27.671800 +47.769300 +43.079700 +26.522600 +16.423200 +41.625300 +50.971200 +119.765000 +134.151000 +55.161900 +72.598500 +22.657800 +39.759900 +13.877500 +18.042800 +7.764780 +8.501520 +1.000000 +7.996680 +13.938000 +20.974200 +104.665000 +92.942400 +180.755000 +95.681100 +1.000000 +56.508000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +8.023290 +3.641820 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +8.602140 +18.962800 +63.738000 +211.482000 +135.206000 +96.648300 +58.105800 +60.278400 +29.283900 +26.337800 +13.296800 +16.630900 +11.665900 +30.038400 +14.650300 +57.649200 +26.317400 +9.838200 +16.953300 +7.791720 +14.505900 +9.377160 +32.060400 +57.226800 +31.082700 +21.112500 +108.139000 +21.061000 +22.237700 +37.212900 +46.943400 +6.158940 +9.253620 +1.000000 +18.508400 +10.690000 +53.946900 +92.958300 +84.768600 +132.263000 +69.044400 +36.196200 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +7.010550 +5.193780 +7.034070 +3.438720 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +16.197400 +99.578100 +131.583000 +83.177400 +214.279000 +43.101300 +25.086100 +14.852800 +1.000000 +7.007160 +4.822110 +1.000000 +6.887040 +1.000000 +8.056830 +8.494410 +1.000000 +1.000000 +7.013520 +5.161920 +5.123520 +21.705600 +11.370700 +20.418000 +101.675000 +39.316500 +26.943000 +22.206400 +13.249700 +13.945900 +40.006200 +8.527950 +9.022260 +16.483100 +42.778200 +50.385900 +74.601600 +23.429900 +47.302500 +20.335800 +23.238600 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +3.606120 +1.000000 +1.000000 +1.000000 +9.400350 +20.258200 +41.767800 +101.242000 +86.152500 +91.026600 +75.630600 +19.331800 +42.711900 +7.153200 +1.000000 +1.000000 +5.041140 +6.574530 +16.614200 +20.213600 +9.313530 +7.722210 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +13.236700 +6.290640 +13.934100 +14.221800 +39.179100 +15.850900 +15.103400 +7.181640 +10.070200 +38.161200 +19.321300 +29.451600 +23.715100 +19.658800 +31.046100 +73.917900 +17.302300 +40.740000 +1.000000 +14.384300 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +13.958100 +13.712900 +29.285800 +1.000000 +1.000000 +41.969700 +122.612000 +101.325000 +95.210100 +156.826000 +63.670200 +68.768100 +28.647800 +1.000000 +1.000000 +1.000000 +7.951410 +4.728810 +7.238880 +10.971800 +12.320600 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +9.540510 +10.944100 +11.303400 +9.269220 +10.244600 +5.915670 +10.572000 +1.986570 +3.332550 +14.077900 +23.454700 +10.815700 +5.838480 +8.667480 +19.700500 +22.267600 +22.394000 +39.423900 +14.825700 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +1.000000 +5.408490 +14.987900 +/ \ No newline at end of file diff --git a/examples/ADGPRS/5spot/include/poro.in b/examples/ADGPRS/5spot/include/poro.in new file mode 100644 index 000000000..e687db0f0 --- /dev/null +++ b/examples/ADGPRS/5spot/include/poro.in @@ -0,0 +1,902 @@ +PORO + 1.05039999E-01 6.91199973E-02 7.10610002E-02 1.22207999E-01 + 1.23365998E-01 1.42865002E-01 1.76844001E-01 1.92975000E-01 + 1.58959001E-01 1.60324007E-01 1.69020995E-01 1.17613003E-01 + 1.64952993E-01 1.26569003E-01 1.39197007E-01 1.36848003E-01 + 4.59109992E-02 1.12502001E-01 8.80739987E-02 1.03910998E-01 + 1.31026998E-01 9.72739980E-02 1.29883006E-01 1.17475003E-01 + 1.19690001E-01 1.04681998E-01 1.35909006E-01 1.48938000E-01 + 1.71259001E-01 1.81207001E-01 1.95283994E-01 2.02331007E-01 + 1.75380006E-01 1.52548000E-01 9.19350013E-02 8.95290002E-02 + 7.99050033E-02 1.26518995E-01 1.16626002E-01 1.34441003E-01 + 1.65934995E-01 2.14319006E-01 2.06716999E-01 2.24923998E-01 + 2.61198014E-01 2.29052007E-01 2.45057002E-01 2.54613012E-01 + 2.37642005E-01 2.06688002E-01 1.81155995E-01 2.04853997E-01 + 2.06224993E-01 1.99652001E-01 2.05835000E-01 1.81687996E-01 + 2.00022995E-01 1.78983003E-01 1.91841006E-01 2.07567006E-01 + 9.59829986E-02 8.88210014E-02 7.96959996E-02 9.47239995E-02 + 1.30531996E-01 1.43094003E-01 2.08362997E-01 1.98814005E-01 + 1.85469002E-01 1.99516997E-01 1.99478999E-01 1.75502002E-01 + 1.99895993E-01 2.08967999E-01 1.69340998E-01 1.82392001E-01 + 7.85169974E-02 1.04227997E-01 9.18669999E-02 9.26600024E-02 + 1.29374996E-01 1.27305999E-01 1.07069001E-01 1.02996998E-01 + 1.09149002E-01 1.06449001E-01 1.90761000E-01 2.03060001E-01 + 2.11320996E-01 1.55656993E-01 1.61009997E-01 1.76010996E-01 + 1.71991006E-01 1.64921999E-01 1.34602994E-01 1.29126996E-01 + 1.09954998E-01 7.79059976E-02 1.40748993E-01 1.63804993E-01 + 1.21675000E-01 1.78715006E-01 1.76706001E-01 2.71800995E-01 + 2.64656991E-01 2.53138989E-01 2.36068994E-01 2.28235006E-01 + 2.24794000E-01 2.06668004E-01 2.10139006E-01 1.76843002E-01 + 1.81816995E-01 1.69838995E-01 1.95460007E-01 2.10375994E-01 + 2.03897998E-01 2.03555003E-01 1.58098996E-01 1.79456994E-01 + 9.91820022E-02 9.58900005E-02 1.19028002E-01 1.04254998E-01 + 1.26811996E-01 1.50802001E-01 1.80416003E-01 2.01391995E-01 + 2.52112001E-01 1.92640007E-01 2.24499002E-01 2.52905011E-01 + 2.70705998E-01 1.84171006E-01 1.90804005E-01 8.37740004E-02 + 9.17159989E-02 6.91630021E-02 4.64180000E-02 8.66750032E-02 + 1.02860004E-01 1.17039002E-01 9.06300023E-02 8.66310000E-02 + 9.90279987E-02 1.39379993E-01 1.72133997E-01 1.90863997E-01 + 1.81854993E-01 1.60292000E-01 1.51113003E-01 1.78948000E-01 + 1.97632998E-01 1.58475995E-01 1.61366999E-01 1.27064005E-01 + 1.06360003E-01 1.04924999E-01 1.71853006E-01 2.07936004E-01 + 1.79067001E-01 1.64762005E-01 2.29160994E-01 2.60652006E-01 + 2.19429001E-01 2.73274004E-01 2.34158993E-01 1.79213002E-01 + 2.34084994E-01 2.85596013E-01 2.15516001E-01 1.92355007E-01 + 1.96027994E-01 1.85678005E-01 1.65677994E-01 1.85894996E-01 + 1.96924001E-01 1.69945002E-01 1.51369005E-01 1.30961999E-01 + 3.66269983E-02 6.31520003E-02 1.01663999E-01 1.57490000E-01 + 1.33626997E-01 2.03611001E-01 1.79178998E-01 2.19729006E-01 + 2.55201995E-01 2.16534004E-01 2.28487000E-01 2.65388012E-01 + 2.17593998E-01 2.32963994E-01 2.11296007E-01 1.38852999E-01 + 1.53336003E-01 1.27561003E-01 7.52220005E-02 7.09730014E-02 + 9.07739997E-02 8.35319981E-02 8.01159963E-02 1.36084005E-01 + 1.47176996E-01 1.34342000E-01 1.76989004E-01 1.42161995E-01 + 1.68263003E-01 1.49883002E-01 1.92883998E-01 2.14251995E-01 + 2.39935994E-01 2.19109997E-01 1.46647006E-01 1.37756005E-01 + 1.52294993E-01 1.43263996E-01 1.43674001E-01 1.39642000E-01 + 1.55600995E-01 1.80822000E-01 2.27904007E-01 2.16114998E-01 + 2.62638986E-01 2.80200005E-01 2.27612004E-01 1.86656997E-01 + 1.83100000E-01 2.72760987E-01 2.66882986E-01 2.44066000E-01 + 2.18024001E-01 2.01605007E-01 1.75649002E-01 2.27770001E-01 + 1.95170000E-01 1.93165004E-01 1.77991003E-01 1.85913995E-01 + 6.44470006E-02 9.67799965E-03 5.59620000E-02 1.21449001E-01 + 1.46007001E-01 2.36237004E-01 2.57645011E-01 2.52916992E-01 + 2.45212004E-01 2.21873000E-01 1.95889995E-01 2.28719994E-01 + 2.19693005E-01 2.42494002E-01 2.11391002E-01 1.34682000E-01 + 1.52392000E-01 1.91015005E-01 1.33953005E-01 1.35646999E-01 + 1.18836999E-01 1.60781994E-01 1.79719999E-01 1.82255998E-01 + 1.65592000E-01 1.67983994E-01 1.91401005E-01 1.91612005E-01 + 1.42694995E-01 1.56544000E-01 2.14635998E-01 1.95620000E-01 + 2.06366003E-01 1.65040001E-01 1.35786995E-01 1.33622006E-01 + 1.92956001E-01 2.13671997E-01 2.17886999E-01 1.53605998E-01 + 1.61497995E-01 1.57195002E-01 2.65543997E-01 2.44684994E-01 + 2.27543995E-01 2.32273996E-01 2.10785002E-01 1.87797993E-01 + 1.73135996E-01 2.29034007E-01 2.68869996E-01 2.46976003E-01 + 2.40468994E-01 1.85470998E-01 2.07850993E-01 1.85348004E-01 + 1.70963004E-01 1.69100001E-01 1.45037994E-01 1.85861006E-01 + 2.84860004E-02 3.40350010E-02 8.55740011E-02 1.16595000E-01 + 1.83657005E-01 2.11059004E-01 2.75947005E-01 2.69250989E-01 + 2.81017005E-01 2.68056989E-01 2.06072003E-01 1.77331001E-01 + 2.08041996E-01 1.87465996E-01 2.38442004E-01 1.70983002E-01 + 1.75016001E-01 1.46302000E-01 1.72448993E-01 1.90320998E-01 + 1.84603006E-01 1.72279999E-01 1.82863995E-01 2.39463001E-01 + 1.94058001E-01 1.97635993E-01 2.49926001E-01 2.02644005E-01 + 1.60862997E-01 1.52462006E-01 1.92976996E-01 1.73244998E-01 + 1.65520996E-01 2.26962000E-01 1.44220993E-01 1.61207005E-01 + 1.88887000E-01 1.85489997E-01 1.95296004E-01 1.75799996E-01 + 1.52391002E-01 1.66902006E-01 2.26741999E-01 2.59335995E-01 + 2.18867004E-01 2.28331000E-01 2.20345005E-01 1.55470997E-01 + 1.94113001E-01 1.82932004E-01 1.95042998E-01 2.12731004E-01 + 2.45302007E-01 2.24694997E-01 2.49766007E-01 2.12313995E-01 + 1.90188006E-01 1.99973002E-01 1.86003998E-01 1.83930993E-01 + 1.04625002E-01 1.36135995E-01 9.82479975E-02 1.42490998E-01 + 1.64946005E-01 1.96055993E-01 2.38152996E-01 2.74111003E-01 + 2.55389005E-01 2.38710001E-01 2.09768996E-01 1.82754993E-01 + 2.07664996E-01 1.86699003E-01 2.38922000E-01 1.92414999E-01 + 1.88005000E-01 1.26812994E-01 1.47585005E-01 2.15746999E-01 + 2.02768996E-01 2.01083004E-01 2.15370998E-01 2.31166005E-01 + 2.23423004E-01 2.27189004E-01 2.44627997E-01 2.13382006E-01 + 1.99685007E-01 1.98406994E-01 1.84508994E-01 1.94787994E-01 + 1.58149004E-01 1.42881006E-01 1.36829004E-01 1.60577998E-01 + 1.93751007E-01 1.92075998E-01 2.11120993E-01 1.82879999E-01 + 1.90654993E-01 1.62933007E-01 1.85552999E-01 2.31436998E-01 + 2.59014994E-01 2.48629004E-01 2.32132003E-01 1.77224994E-01 + 2.00379997E-01 1.70948997E-01 1.57717004E-01 1.75256997E-01 + 1.78562000E-01 2.21145004E-01 2.29730994E-01 2.12018996E-01 + 1.28776997E-01 1.84349000E-01 2.10896000E-01 1.51618004E-01 + 1.50094002E-01 1.48126006E-01 1.61920995E-01 2.06331000E-01 + 2.02245995E-01 2.13232994E-01 2.58383006E-01 2.56433010E-01 + 2.48200998E-01 2.44097993E-01 2.12862998E-01 2.16457993E-01 + 1.80821002E-01 1.72587007E-01 2.31855005E-01 2.04622999E-01 + 1.73078001E-01 1.94883004E-01 1.85371995E-01 2.51967996E-01 + 2.01022997E-01 1.89523995E-01 2.14717999E-01 2.34227002E-01 + 2.67630994E-01 2.70397007E-01 2.82216012E-01 2.16760993E-01 + 2.58969992E-01 1.93590000E-01 2.61400014E-01 1.84828997E-01 + 1.61298007E-01 1.67927995E-01 2.21980006E-01 2.11197004E-01 + 2.26465002E-01 1.99660003E-01 1.93947002E-01 2.10098997E-01 + 1.90354005E-01 1.89235002E-01 1.90016001E-01 2.09873006E-01 + 2.56983995E-01 2.32047006E-01 2.57874012E-01 1.98629007E-01 + 1.93465993E-01 1.63703993E-01 1.38114005E-01 1.71685994E-01 + 2.12204993E-01 2.36337006E-01 2.12616995E-01 1.77275002E-01 + 1.81583002E-01 2.16909006E-01 2.16878995E-01 1.41560003E-01 + 1.38280004E-01 2.17307001E-01 1.95427999E-01 2.02733994E-01 + 2.29883000E-01 2.69468993E-01 2.97845006E-01 2.63395995E-01 + 2.65071005E-01 2.12605000E-01 1.91585004E-01 1.64736003E-01 + 2.05615997E-01 1.97350994E-01 1.93809003E-01 2.08820999E-01 + 2.19493002E-01 2.11159006E-01 2.12951005E-01 1.77901998E-01 + 1.72548994E-01 1.40088007E-01 2.04682007E-01 1.55313998E-01 + 2.26238996E-01 2.13975996E-01 2.27687001E-01 2.13159993E-01 + 2.46808007E-01 2.04875007E-01 2.36597002E-01 2.08397001E-01 + 1.85416996E-01 1.88547999E-01 2.30140001E-01 2.13388994E-01 + 2.18748003E-01 1.92445993E-01 1.77250996E-01 1.65898994E-01 + 1.63748994E-01 1.95352003E-01 2.33925998E-01 2.28637993E-01 + 2.67628998E-01 2.60944009E-01 2.72159010E-01 2.11098000E-01 + 2.26379007E-01 1.71473995E-01 1.67717993E-01 1.99478999E-01 + 2.32916996E-01 2.54518986E-01 2.73907006E-01 2.06092998E-01 + 1.99836001E-01 1.86846003E-01 1.85536996E-01 1.55402005E-01 + 1.67422995E-01 1.92044005E-01 2.11355999E-01 2.57764012E-01 + 2.40078002E-01 2.81623006E-01 3.34760010E-01 2.84743011E-01 + 2.61570990E-01 2.12687999E-01 1.86251000E-01 1.48402005E-01 + 1.84181005E-01 1.71009004E-01 2.22237006E-01 1.95083007E-01 + 2.07233995E-01 2.11960003E-01 1.99208006E-01 1.64060995E-01 + 1.60529003E-01 1.41778007E-01 1.87953994E-01 2.04236999E-01 + 1.77935004E-01 1.89772993E-01 2.06680998E-01 2.04547003E-01 + 1.71688005E-01 1.98027000E-01 2.32969001E-01 2.23712996E-01 + 1.99551001E-01 2.00013995E-01 2.00791001E-01 2.11881995E-01 + 2.22509995E-01 2.22679004E-01 1.73161000E-01 1.87987000E-01 + 1.46961004E-01 2.11202994E-01 2.39104003E-01 2.33307004E-01 + 2.07989007E-01 2.03336999E-01 2.41953000E-01 2.90863007E-01 + 2.60096014E-01 2.01309994E-01 1.94997996E-01 1.63610995E-01 + 2.38369003E-01 2.20192000E-01 1.81603998E-01 1.78072006E-01 + 1.79397002E-01 2.33704001E-01 2.11601004E-01 2.09740996E-01 + 1.67383000E-01 1.85712993E-01 1.81704998E-01 2.35828996E-01 + 2.64458001E-01 2.99742997E-01 2.92540014E-01 2.81347007E-01 + 3.14958990E-01 2.65872985E-01 1.78693995E-01 1.75430000E-01 + 1.87211007E-01 2.19413996E-01 1.58286005E-01 1.51042998E-01 + 1.55092999E-01 1.09454997E-01 1.50270998E-01 1.48704007E-01 + 1.65408000E-01 2.08392993E-01 1.95687994E-01 1.86553001E-01 + 1.56838000E-01 1.87932000E-01 1.83267996E-01 1.70783997E-01 + 1.99305996E-01 2.27249995E-01 2.37846002E-01 2.54646003E-01 + 2.50802010E-01 2.21460998E-01 2.34506994E-01 2.02453002E-01 + 2.43805006E-01 2.50207007E-01 2.16369003E-01 2.52705008E-01 + 2.46315002E-01 2.42744997E-01 2.58477986E-01 2.39783004E-01 + 1.91778004E-01 1.95926994E-01 2.69910008E-01 2.61770993E-01 + 2.53695995E-01 2.75918990E-01 2.11992994E-01 1.79940000E-01 + 2.24187002E-01 2.22492993E-01 2.10376993E-01 1.38955995E-01 + 1.38209000E-01 1.93002999E-01 1.78007007E-01 1.81241006E-01 + 1.30868003E-01 2.05614001E-01 2.06230998E-01 2.09937006E-01 + 2.63076007E-01 2.80927986E-01 3.08948010E-01 2.93913990E-01 + 2.77967006E-01 2.59140015E-01 1.98912993E-01 1.92667007E-01 + 2.00359002E-01 1.64032996E-01 1.77569002E-01 1.67151004E-01 + 1.67116001E-01 1.22878000E-01 9.04150009E-02 1.40499994E-01 + 1.14827998E-01 1.29519001E-01 1.34680003E-01 1.34174004E-01 + 1.48277000E-01 1.89280003E-01 1.89412996E-01 1.61734000E-01 + 2.08955005E-01 2.42715001E-01 2.40794003E-01 2.67771989E-01 + 2.34568000E-01 2.42489994E-01 2.72554994E-01 2.63200998E-01 + 2.62867004E-01 2.89088994E-01 2.76163012E-01 2.19775006E-01 + 2.55221009E-01 2.82049000E-01 2.58078009E-01 2.49698997E-01 + 2.49135002E-01 2.22908005E-01 2.40379006E-01 2.90520012E-01 + 2.61617988E-01 2.73532003E-01 2.41707996E-01 2.37665996E-01 + 2.05375999E-01 1.79095998E-01 1.19336002E-01 1.66054994E-01 + 1.62141994E-01 2.25700006E-01 2.23427996E-01 1.96246997E-01 + 1.15566999E-01 1.52880996E-01 1.99303001E-01 2.01600000E-01 + 2.32703000E-01 2.78118014E-01 2.93350995E-01 2.64705986E-01 + 2.59415001E-01 2.39638001E-01 2.19628006E-01 1.97266996E-01 + 2.02929005E-01 1.66884005E-01 1.82916999E-01 1.62120998E-01 + 1.27767995E-01 1.26573995E-01 1.22414000E-01 1.51308998E-01 + 1.22123003E-01 1.15111999E-01 1.03134997E-01 1.02031000E-01 + 1.44877002E-01 1.98658004E-01 1.86473995E-01 1.50583997E-01 + 1.99618995E-01 1.97306007E-01 2.26211995E-01 2.44883001E-01 + 2.48670995E-01 2.56020993E-01 2.69921005E-01 2.80644000E-01 + 2.46576995E-01 3.10113996E-01 2.59126008E-01 2.41931006E-01 + 2.23313004E-01 2.30097994E-01 2.69046009E-01 2.94815004E-01 + 2.58911997E-01 2.70929009E-01 2.71016002E-01 2.75032997E-01 + 2.67040998E-01 2.61373997E-01 2.49567002E-01 2.00797006E-01 + 1.81309000E-01 1.35768995E-01 1.53861001E-01 1.46322995E-01 + 1.34513006E-01 1.45917997E-01 2.02223003E-01 2.08074003E-01 + 1.95720002E-01 1.38350993E-01 2.02414006E-01 2.12999001E-01 + 2.37854004E-01 2.83344001E-01 2.34080002E-01 2.30361998E-01 + 2.16202006E-01 2.22537994E-01 1.95299998E-01 1.42850995E-01 + 1.11250997E-01 1.22599997E-01 1.50242999E-01 1.55258000E-01 + 1.49158999E-01 8.40070024E-02 8.75300020E-02 1.05770998E-01 + 9.74600017E-02 7.83580020E-02 8.32490027E-02 1.41922995E-01 + 1.87196001E-01 2.23192006E-01 1.73078001E-01 1.28058001E-01 + 1.98147997E-01 1.66251004E-01 2.34764993E-01 2.71311998E-01 + 2.65682995E-01 3.00704986E-01 2.93633997E-01 2.72161007E-01 + 2.33565003E-01 2.20769003E-01 2.32820004E-01 2.19574004E-01 + 2.74443001E-01 2.57634997E-01 2.83699989E-01 2.84399986E-01 + 3.07094008E-01 2.75723994E-01 3.60789001E-01 3.20055008E-01 + 2.50155985E-01 2.66730994E-01 2.57826000E-01 1.97831005E-01 + 1.93832994E-01 1.33938000E-01 1.56332001E-01 1.39774993E-01 + 1.47936001E-01 1.50520995E-01 1.31570995E-01 1.52090997E-01 + 1.50638998E-01 1.59256995E-01 1.69260994E-01 1.94216996E-01 + 2.34502003E-01 2.36376002E-01 2.69347012E-01 1.80830002E-01 + 2.14506000E-01 2.00762004E-01 1.75680995E-01 1.78380996E-01 + 2.05751002E-01 1.97908998E-01 1.50527999E-01 1.29986003E-01 + 1.00474000E-01 7.88609982E-02 8.41820017E-02 1.25259995E-01 + 1.19335003E-01 1.25080004E-01 8.82420018E-02 1.20563000E-01 + 1.17192000E-01 2.09505007E-01 1.91088006E-01 1.75169006E-01 + 2.00231999E-01 2.10611999E-01 2.13370994E-01 2.28065997E-01 + 2.03924999E-01 2.65213013E-01 2.60636985E-01 2.28805006E-01 + 2.23590001E-01 2.12151006E-01 1.93837002E-01 2.37316996E-01 + 2.33081996E-01 2.50862986E-01 2.99989015E-01 3.37895989E-01 + 2.82220989E-01 2.81910002E-01 3.25836003E-01 3.09682012E-01 + 2.91830987E-01 2.27128997E-01 1.97583005E-01 2.02037007E-01 + 1.79426000E-01 1.64480001E-01 1.59376994E-01 1.23977996E-01 + 1.53184995E-01 1.29773006E-01 1.91244006E-01 1.62113994E-01 + 9.73170027E-02 1.22042000E-01 1.40146002E-01 2.07101002E-01 + 1.90110996E-01 1.74002007E-01 2.10795999E-01 1.95103005E-01 + 1.85742006E-01 1.66834995E-01 1.53413996E-01 1.84521005E-01 + 1.91484004E-01 1.93459004E-01 1.97404996E-01 1.56725004E-01 + 1.13914996E-01 1.21025003E-01 1.33285999E-01 1.21362999E-01 + 1.19700998E-01 6.54240027E-02 1.13379002E-01 1.39467999E-01 + 1.86875001E-01 1.65880993E-01 1.67943999E-01 1.85975000E-01 + 2.16572002E-01 1.70643002E-01 1.86223000E-01 1.91791996E-01 + 1.76630005E-01 2.48451993E-01 2.02994004E-01 2.14655995E-01 + 2.14058995E-01 2.45684996E-01 2.24646002E-01 2.14343995E-01 + 2.34366998E-01 2.34125003E-01 2.79231995E-01 3.00675005E-01 + 3.05712998E-01 3.14231008E-01 3.20879012E-01 3.04868013E-01 + 2.73097008E-01 2.42972001E-01 2.25512996E-01 2.09149003E-01 + 2.01615006E-01 1.55541003E-01 1.35326996E-01 1.72969997E-01 + 1.63967997E-01 1.26867995E-01 1.52825996E-01 1.56414002E-01 + 8.39179978E-02 1.29851997E-01 1.61844000E-01 2.25770995E-01 + 2.17516005E-01 1.75955996E-01 2.22790003E-01 2.13284001E-01 + 1.95637003E-01 1.75909996E-01 1.39974996E-01 1.75522000E-01 + 2.02807993E-01 2.13195994E-01 1.61866993E-01 1.35409996E-01 + 1.14262000E-01 9.38749984E-02 8.52620006E-02 1.22878000E-01 + 1.13780998E-01 1.38504997E-01 1.26699001E-01 1.63151994E-01 + 1.67459995E-01 1.80673003E-01 1.57820001E-01 2.48508006E-01 + 1.70686007E-01 1.96585998E-01 2.69836992E-01 2.19887003E-01 + 2.07742006E-01 2.69809008E-01 2.12521002E-01 2.04774007E-01 + 2.33115003E-01 2.11494997E-01 1.97641000E-01 1.96323007E-01 + 2.51199991E-01 2.42327005E-01 2.88163990E-01 3.32771003E-01 + 2.95332015E-01 2.83721000E-01 2.51655996E-01 2.56056011E-01 + 2.09443003E-01 2.34235004E-01 2.19655007E-01 2.03549996E-01 + 1.99577004E-01 1.74676999E-01 1.80151999E-01 1.85530007E-01 + 2.09729999E-01 1.90295994E-01 1.31134003E-01 1.48077995E-01 + 9.12609994E-02 1.45515993E-01 2.10220993E-01 2.13727996E-01 + 2.60529995E-01 2.37037003E-01 2.11083993E-01 2.18336001E-01 + 1.91240996E-01 1.51874006E-01 1.55546993E-01 1.86735004E-01 + 1.51677996E-01 1.55028000E-01 1.63475007E-01 1.21806003E-01 + 1.25360996E-01 1.44116998E-01 1.48362994E-01 1.63787007E-01 + 1.58142999E-01 1.67689994E-01 1.84276000E-01 1.71645001E-01 + 1.78723007E-01 1.77549005E-01 2.14495003E-01 2.64450997E-01 + 2.49143004E-01 1.96756005E-01 2.62802005E-01 2.43771002E-01 + 2.25409999E-01 2.49987006E-01 1.99025005E-01 2.54123986E-01 + 2.25667000E-01 2.54417002E-01 2.61626989E-01 2.63516992E-01 + 2.26572007E-01 2.31142998E-01 2.70092010E-01 3.01804006E-01 + 2.76481986E-01 2.44553000E-01 2.15959996E-01 1.81550995E-01 + 2.02644005E-01 2.42635995E-01 2.27768004E-01 2.09462002E-01 + 1.90073997E-01 1.65891007E-01 1.93866998E-01 2.24338993E-01 + 1.74127996E-01 1.53071001E-01 1.39789999E-01 1.47124007E-01 + 1.06866002E-01 1.57473996E-01 1.91154003E-01 2.39338994E-01 + 2.32112005E-01 2.34284997E-01 2.09718004E-01 2.25903004E-01 + 1.59522995E-01 1.78183004E-01 1.65270001E-01 1.61463007E-01 + 1.61912993E-01 1.43291995E-01 1.74251005E-01 1.62919000E-01 + 1.75597996E-01 1.67064995E-01 1.82161003E-01 1.84823006E-01 + 1.72666997E-01 1.79337993E-01 1.55851007E-01 1.81795999E-01 + 1.80923998E-01 1.95510000E-01 2.30932996E-01 2.81675994E-01 + 2.95751005E-01 2.63568014E-01 2.38526002E-01 2.68085986E-01 + 2.23351002E-01 2.35773996E-01 2.04638004E-01 2.72899002E-01 + 2.79756010E-01 2.35660002E-01 2.42906004E-01 2.48521999E-01 + 2.23580003E-01 2.42787004E-01 2.68359005E-01 2.73728013E-01 + 2.69232988E-01 2.31968999E-01 1.88765004E-01 1.89847007E-01 + 2.28738993E-01 2.11677998E-01 2.43327007E-01 2.38622993E-01 + 1.76302999E-01 1.23083003E-01 2.11321995E-01 2.13232994E-01 + 1.82844996E-01 1.54684007E-01 1.53625995E-01 1.46608993E-01 + 1.14356004E-01 2.07220003E-01 2.06333995E-01 2.22902998E-01 + 2.37299994E-01 2.26639003E-01 2.13644996E-01 1.96336001E-01 + 1.45288005E-01 1.68715000E-01 2.04497993E-01 1.85707003E-01 + 1.35000005E-01 2.10362002E-01 1.73469007E-01 9.96949971E-02 + 1.67458996E-01 1.41700998E-01 1.68657005E-01 1.67995006E-01 + 1.84184000E-01 2.01611996E-01 1.99147001E-01 2.21551999E-01 + 1.79064006E-01 2.27391005E-01 2.50894994E-01 2.10922003E-01 + 2.15145007E-01 2.61795014E-01 2.57506013E-01 2.40354002E-01 + 2.01147005E-01 2.04363003E-01 2.39708006E-01 2.64672995E-01 + 2.58866012E-01 2.42432997E-01 2.63365000E-01 2.57221997E-01 + 2.46888995E-01 2.97569990E-01 2.81735003E-01 2.81587005E-01 + 2.73027986E-01 2.56583989E-01 2.48113006E-01 2.28287995E-01 + 2.72516012E-01 2.46786997E-01 2.43586004E-01 2.41860002E-01 + 1.73203006E-01 1.68210000E-01 2.13301003E-01 2.34851003E-01 + 2.01307997E-01 1.64182007E-01 1.56350002E-01 1.90191999E-01 + 1.07175000E-01 1.60620004E-01 1.37391001E-01 1.65115997E-01 + 1.35373995E-01 1.63680002E-01 1.82555005E-01 1.62508994E-01 + 1.56852007E-01 1.96094006E-01 1.58963993E-01 1.78349003E-01 + 1.39425993E-01 1.87737003E-01 1.99270993E-01 1.76271006E-01 + 1.62579998E-01 2.13017002E-01 1.79928005E-01 1.48427993E-01 + 2.22475007E-01 2.09207997E-01 1.86822996E-01 2.08241001E-01 + 2.32840002E-01 2.62111008E-01 2.61675000E-01 2.78571010E-01 + 2.49834001E-01 2.46007994E-01 2.95399010E-01 2.55239010E-01 + 1.95014998E-01 2.36585006E-01 2.32019007E-01 2.55905986E-01 + 2.35208005E-01 2.52404988E-01 2.70700008E-01 3.10900003E-01 + 2.76446015E-01 2.78735995E-01 2.80589014E-01 2.67084002E-01 + 2.80128002E-01 3.00803006E-01 2.95462012E-01 2.65480995E-01 + 2.44689003E-01 2.77112991E-01 2.14025006E-01 2.72509009E-01 + 2.02592000E-01 1.77009001E-01 1.74838006E-01 1.89912006E-01 + 1.78532004E-01 2.21304998E-01 2.12518007E-01 2.63339013E-01 + 1.14169002E-01 1.59412995E-01 1.54936001E-01 1.29740998E-01 + 1.35323003E-01 1.66509002E-01 1.39507994E-01 1.38477996E-01 + 1.37196004E-01 1.87059000E-01 1.68972000E-01 1.70178995E-01 + 1.90366000E-01 1.82686999E-01 1.66982993E-01 1.78871006E-01 + 1.78278998E-01 1.56188995E-01 1.28222004E-01 1.65295005E-01 + 1.94184005E-01 2.23385006E-01 2.04878002E-01 2.01471001E-01 + 2.11196005E-01 3.12467992E-01 2.61875004E-01 2.72834003E-01 + 2.80582011E-01 2.61682004E-01 2.53625005E-01 2.44348004E-01 + 2.44637996E-01 2.33474001E-01 2.30327994E-01 2.38985002E-01 + 2.79100001E-01 2.31851995E-01 2.65397996E-01 3.04814011E-01 + 3.17425996E-01 2.78403997E-01 2.75011003E-01 2.46251002E-01 + 2.63341993E-01 2.56705999E-01 2.59332001E-01 2.31359005E-01 + 2.65204012E-01 2.05265000E-01 1.74043000E-01 2.18293995E-01 + 1.86138004E-01 1.89392000E-01 1.85635999E-01 2.15698004E-01 + 2.47654006E-01 2.60684013E-01 2.60540992E-01 2.81004995E-01 + 1.85067996E-01 2.05815002E-01 1.92160994E-01 2.19904006E-01 + 2.16839999E-01 1.47939995E-01 1.64996997E-01 1.94262996E-01 + 1.69669002E-01 1.51368007E-01 1.88934997E-01 2.27667004E-01 + 2.18680993E-01 2.12097004E-01 1.65650994E-01 2.33863994E-01 + 2.16865003E-01 1.93465993E-01 2.11520001E-01 2.22306997E-01 + 2.28764996E-01 2.06847996E-01 2.08621994E-01 2.42203996E-01 + 2.37277001E-01 2.65803009E-01 2.85153002E-01 2.61920989E-01 + 2.71052986E-01 2.23034993E-01 2.10476995E-01 2.50892013E-01 + 2.31758997E-01 2.79473007E-01 2.35460997E-01 2.89263010E-01 + 2.69542009E-01 2.75721997E-01 2.68839002E-01 2.95444995E-01 + 2.82211989E-01 3.10763001E-01 2.34387994E-01 2.49652997E-01 + 2.36950994E-01 2.07782999E-01 2.43803993E-01 2.40352005E-01 + 2.58881003E-01 2.18410999E-01 2.71874011E-01 2.38144994E-01 + 2.29944006E-01 1.98460996E-01 1.65298000E-01 2.30931997E-01 + 2.34858006E-01 2.36635000E-01 2.63448000E-01 2.51861989E-01 + 2.27465004E-01 2.53403008E-01 2.28934005E-01 2.22597003E-01 + 1.89193994E-01 2.12830007E-01 1.82128996E-01 1.51062995E-01 + 1.67693004E-01 1.77433997E-01 1.75492004E-01 2.11171001E-01 + 2.24610999E-01 2.13317007E-01 1.72114998E-01 2.24142998E-01 + 2.14617997E-01 2.36026004E-01 3.00137997E-01 2.43360996E-01 + 2.36315995E-01 2.51543999E-01 2.14466006E-01 2.34611005E-01 + 2.55650014E-01 2.52820998E-01 3.00393999E-01 2.91889995E-01 + 2.85180002E-01 2.27810994E-01 2.22994998E-01 1.80313006E-01 + 2.25311995E-01 3.11686993E-01 3.17966014E-01 3.01109999E-01 + 3.24027002E-01 3.21249008E-01 2.74969012E-01 2.69309998E-01 + 2.69820988E-01 3.00731003E-01 2.54777014E-01 2.76338995E-01 + 2.61512011E-01 2.32359007E-01 2.61386007E-01 2.39923000E-01 + 2.41899997E-01 2.25097001E-01 2.58745015E-01 2.34153003E-01 + 1.67573005E-01 2.26399004E-01 2.27826998E-01 2.13021994E-01 + 2.42679998E-01 2.64308006E-01 2.48420000E-01 2.76623011E-01 + 2.66407013E-01 1.90807000E-01 2.16350004E-01 2.43854001E-01 + 2.14872003E-01 2.20781997E-01 1.78544998E-01 1.42600000E-01 + 1.71776995E-01 2.31739998E-01 2.27717996E-01 2.19701007E-01 + 2.18826994E-01 2.05767006E-01 2.18311995E-01 2.32121006E-01 + 2.46847004E-01 2.81111002E-01 2.63437003E-01 2.32181996E-01 + 2.30054006E-01 2.35202000E-01 2.42835999E-01 1.98102996E-01 + 2.17227995E-01 2.19589993E-01 2.21764997E-01 2.60634989E-01 + 2.90113986E-01 2.85445988E-01 3.19501996E-01 2.16915995E-01 + 2.58264989E-01 3.01086992E-01 3.13062012E-01 3.09222013E-01 + 3.21763009E-01 2.74031013E-01 2.73851007E-01 2.86700994E-01 + 3.14507991E-01 2.31803998E-01 3.04823011E-01 2.71369010E-01 + 2.54999995E-01 2.05412000E-01 2.71156996E-01 2.66335011E-01 + 2.96961010E-01 2.80887008E-01 1.97784007E-01 2.15893000E-01 + 1.84175998E-01 1.53659999E-01 2.04484001E-01 2.03915998E-01 + 2.10288003E-01 2.10016996E-01 2.12981999E-01 2.53154010E-01 + 2.18585998E-01 2.34367996E-01 2.67883003E-01 2.43811995E-01 + 2.29342997E-01 2.20510006E-01 2.12219000E-01 2.16437995E-01 + 2.00351000E-01 2.48996004E-01 2.52564013E-01 2.74535000E-01 + 2.36309007E-01 2.51156986E-01 2.78755009E-01 3.16929013E-01 + 2.89824992E-01 2.99847990E-01 2.72228986E-01 3.26640010E-01 + 2.59620994E-01 2.27335006E-01 2.31586993E-01 2.15719000E-01 + 2.19119996E-01 2.70399004E-01 2.75063008E-01 3.09754997E-01 + 2.92133987E-01 2.79491007E-01 2.95736015E-01 2.96366006E-01 + 2.77907014E-01 3.03936988E-01 3.29275012E-01 3.00038010E-01 + 3.09531987E-01 2.76068985E-01 3.29010010E-01 2.68231988E-01 + 2.75992006E-01 2.97221005E-01 2.69237995E-01 2.32892007E-01 + 2.42542997E-01 2.17710003E-01 2.00639993E-01 2.30763003E-01 + 2.57064015E-01 2.80025989E-01 2.40517005E-01 2.32879996E-01 + 2.77094007E-01 2.39506006E-01 1.92445993E-01 2.05509007E-01 + 2.14948997E-01 2.36026004E-01 2.24049002E-01 2.63783991E-01 + 2.57569999E-01 2.76793003E-01 2.73075014E-01 2.74491996E-01 + 2.42552996E-01 2.35577002E-01 2.37398997E-01 2.27194995E-01 + 2.43140996E-01 2.48096004E-01 2.72973001E-01 3.03905010E-01 + 2.67105013E-01 2.54034013E-01 2.99589008E-01 2.64645994E-01 + 2.87775993E-01 3.14749986E-01 3.44404012E-01 3.14962000E-01 + 2.87438005E-01 2.70011008E-01 2.56846011E-01 2.49384001E-01 + 2.46012002E-01 3.01187992E-01 2.85335988E-01 2.99353004E-01 + 3.45117986E-01 3.53978992E-01 3.34084004E-01 3.17759991E-01 + 3.09940994E-01 2.90688992E-01 3.25657010E-01 3.04187000E-01 + 2.69872993E-01 2.87793010E-01 3.08811992E-01 2.25265995E-01 + 2.88125008E-01 2.41117001E-01 2.11815998E-01 1.68421999E-01 + 2.02042997E-01 2.31445998E-01 2.09861994E-01 1.95386007E-01 + 1.73910007E-01 1.96081996E-01 1.91893995E-01 2.10612997E-01 + 2.36733004E-01 2.16594994E-01 2.29670003E-01 1.84946999E-01 + 2.39981994E-01 2.52535999E-01 2.40732998E-01 2.71923006E-01 + 3.20219010E-01 2.88029999E-01 2.89943993E-01 2.78046995E-01 + 2.60028005E-01 2.34240994E-01 2.13451996E-01 2.35626996E-01 + 2.33722001E-01 2.39371002E-01 2.98765987E-01 3.00222993E-01 + 2.75334001E-01 2.26717994E-01 3.02484006E-01 3.25515985E-01 + 3.17214996E-01 3.29454005E-01 3.52236003E-01 3.34053993E-01 + 3.64405006E-01 3.03925008E-01 2.84116000E-01 2.51511008E-01 + 2.99207002E-01 3.20782989E-01 3.10665011E-01 3.20811987E-01 + 3.30994993E-01 3.49106997E-01 3.76204014E-01 3.63678992E-01 + 3.33786011E-01 3.14909011E-01 3.28278989E-01 2.91058987E-01 + 2.77734995E-01 2.69454986E-01 2.67109990E-01 2.89140999E-01 + 2.40340993E-01 2.29317993E-01 1.92052007E-01 2.06751004E-01 + 2.62181997E-01 2.42235005E-01 2.13918000E-01 1.97796002E-01 + 2.44305000E-01 2.16725007E-01 2.08026007E-01 2.04724997E-01 + 2.24782005E-01 2.19402000E-01 2.48255998E-01 2.24690005E-01 + 2.15865001E-01 2.39273995E-01 2.39494994E-01 2.32694998E-01 + 2.91698992E-01 3.00202996E-01 2.73461998E-01 2.67315000E-01 + 2.56406993E-01 2.62100011E-01 2.49384999E-01 2.44139999E-01 + 2.08772004E-01 2.59566009E-01 2.95228004E-01 3.13973010E-01 + 2.76760012E-01 2.43361995E-01 2.72545010E-01 3.34731996E-01 + 3.30076993E-01 3.37029994E-01 3.36569011E-01 3.71291012E-01 + 3.69531989E-01 3.19494009E-01 2.87239999E-01 3.21397990E-01 + 3.05330008E-01 3.37738007E-01 3.41522992E-01 3.21429014E-01 + 2.79944986E-01 3.49130005E-01 3.32592010E-01 3.67973000E-01 + 2.88893998E-01 2.79484987E-01 2.58756995E-01 2.42256999E-01 + 2.62807995E-01 2.86936015E-01 2.68608004E-01 2.58765012E-01 + 2.04575002E-01 1.76962003E-01 1.83531001E-01 2.19188005E-01 + 2.36092001E-01 2.35309005E-01 2.06891999E-01 2.33050004E-01 + 2.20635995E-01 1.76770002E-01 2.06744000E-01 2.26106003E-01 + 1.82018995E-01 1.89624995E-01 2.35740006E-01 2.33510002E-01 + 1.86509997E-01 2.00191006E-01 1.64444998E-01 1.96772993E-01 + 2.26071000E-01 2.27035999E-01 2.54215002E-01 2.69030005E-01 + 2.48888001E-01 2.73030013E-01 2.66306996E-01 2.34541997E-01 + 2.28383005E-01 2.15562001E-01 2.85483003E-01 3.21669012E-01 + 2.68965006E-01 2.66335994E-01 2.40504995E-01 2.35402003E-01 + 2.74603993E-01 3.26575994E-01 3.15806001E-01 3.51686001E-01 + 3.38351011E-01 3.14547002E-01 3.19027007E-01 3.54133993E-01 + 3.69439006E-01 3.30439001E-01 3.45254004E-01 2.90205002E-01 + 2.50622988E-01 3.07774007E-01 3.00397992E-01 3.08746010E-01 + 2.73225993E-01 2.85115987E-01 2.29514003E-01 2.53374010E-01 + 2.77913988E-01 2.41316006E-01 2.72298008E-01 2.27351993E-01 + 2.00966001E-01 2.21697003E-01 1.75274998E-01 2.27567002E-01 + 2.34727994E-01 2.34916002E-01 2.14955002E-01 2.09656999E-01 + 2.05123007E-01 1.87514007E-01 2.11000994E-01 2.18582004E-01 + 1.92840993E-01 1.48548007E-01 2.07371995E-01 1.99640006E-01 + 1.84878007E-01 1.50881007E-01 1.41742006E-01 1.82643995E-01 + 1.82376996E-01 2.34204993E-01 2.53248006E-01 2.49513000E-01 + 2.61527002E-01 2.78970987E-01 2.57236004E-01 2.45224997E-01 + 2.30581000E-01 2.15655997E-01 2.17003003E-01 2.58114010E-01 + 2.71367997E-01 2.84859002E-01 2.55212009E-01 2.41677999E-01 + 2.67506987E-01 2.53612995E-01 3.02585989E-01 3.34825009E-01 + 3.48495990E-01 2.85874009E-01 3.42384011E-01 3.61665010E-01 + 3.50865006E-01 3.17889005E-01 2.92335987E-01 2.75332987E-01 + 2.72303998E-01 2.80564994E-01 2.34362006E-01 3.01138014E-01 + 2.59254009E-01 2.66689986E-01 2.75498003E-01 2.78751999E-01 + 2.92225003E-01 2.71306008E-01 2.80277997E-01 2.19432995E-01 + 1.97935998E-01 2.37577006E-01 2.37272993E-01 2.38700002E-01 + 2.17788994E-01 2.13064000E-01 1.75449997E-01 1.85709000E-01 + 1.88978001E-01 2.01646999E-01 2.06928000E-01 1.61660001E-01 + 1.01658002E-01 1.26256004E-01 1.43072993E-01 1.65803000E-01 + 1.41726002E-01 1.43052995E-01 1.31708995E-01 1.24663003E-01 + 1.59101993E-01 1.83130994E-01 2.61808991E-01 2.36011997E-01 + 2.31439993E-01 2.88612008E-01 2.77967989E-01 2.49308005E-01 + 1.95600003E-01 2.21010998E-01 2.05845997E-01 2.56215990E-01 + 2.97149003E-01 2.89709985E-01 2.86374003E-01 2.96844989E-01 + 2.67542005E-01 3.63243997E-01 3.35409999E-01 3.17743987E-01 + 3.19983006E-01 2.95293987E-01 2.76926011E-01 3.44597995E-01 + 3.44047993E-01 3.31699997E-01 2.81742007E-01 3.21833998E-01 + 3.27758998E-01 3.02935004E-01 3.03611010E-01 2.97908992E-01 + 2.79448986E-01 2.75655001E-01 3.23410988E-01 2.51240999E-01 + 2.68983006E-01 2.35926002E-01 2.49403998E-01 1.94544002E-01 + 1.98144004E-01 1.84322000E-01 1.66696995E-01 1.91477001E-01 + 1.36469007E-01 1.86722994E-01 1.99596003E-01 1.94847003E-01 + 2.25642994E-01 2.14854002E-01 1.87782004E-01 1.02636002E-01 + 5.09020016E-02 1.38878003E-01 1.60753995E-01 1.27094001E-01 + 1.32403001E-01 1.31234005E-01 1.31848007E-01 1.07115000E-01 + 1.47505999E-01 1.70384005E-01 2.23042995E-01 1.86186999E-01 + 2.10495993E-01 2.72192001E-01 2.22536996E-01 1.65777996E-01 + 1.49217993E-01 2.17928007E-01 2.61960000E-01 2.26943001E-01 + 2.98916996E-01 2.58222997E-01 3.13088000E-01 2.72377014E-01 + 3.04118007E-01 3.34921986E-01 3.02394003E-01 3.20818007E-01 + 3.24467987E-01 3.36719990E-01 3.06284994E-01 3.27378988E-01 + 3.28334987E-01 3.70855987E-01 3.45598012E-01 3.46711010E-01 + 3.64158005E-01 3.54285985E-01 3.88823003E-01 2.99896002E-01 + 2.82804012E-01 3.10503989E-01 3.01687002E-01 2.65430987E-01 + 2.25904003E-01 1.98733002E-01 1.98733002E-01 2.02071995E-01 + 1.73751995E-01 1.85962006E-01 2.02338994E-01 1.77421004E-01 + 1.58172995E-01 1.94582000E-01 2.19825000E-01 1.82889000E-01 + 1.93855003E-01 1.67040005E-01 1.27807006E-01 1.27238005E-01 + 7.82819986E-02 1.17159002E-01 1.40834004E-01 1.46338001E-01 + 1.46744996E-01 1.40135005E-01 1.37078002E-01 1.75642997E-01 + 1.07868999E-01 1.53970003E-01 2.03812003E-01 2.10850000E-01 + 1.87121004E-01 2.65644997E-01 2.35888004E-01 1.97179005E-01 + 1.95868000E-01 2.12602004E-01 2.21322998E-01 2.52582997E-01 + 2.40689993E-01 2.85806000E-01 3.00774008E-01 3.16385001E-01 + 3.11785012E-01 3.52506995E-01 3.44485998E-01 3.40214014E-01 + 3.40247005E-01 3.42570007E-01 3.03413004E-01 3.55287999E-01 + 3.57232004E-01 3.66495013E-01 2.94842005E-01 2.94737011E-01 + 3.32599998E-01 3.30087990E-01 3.42164010E-01 3.16716999E-01 + 2.97271997E-01 2.71481991E-01 2.84599990E-01 1.96026996E-01 + 2.07441002E-01 2.49442995E-01 2.13819996E-01 1.87925994E-01 + 1.44770995E-01 1.60034999E-01 1.71658993E-01 1.95877001E-01 + 1.89974993E-01 2.13560000E-01 1.81753993E-01 1.46171004E-01 + 1.35509998E-01 1.47244006E-01 1.03716999E-01 1.06633998E-01 + 1.14280000E-01 1.61660999E-01 1.66091993E-01 1.97681993E-01 + 1.86067000E-01 2.05240995E-01 2.12970003E-01 1.28202006E-01 + 1.31071001E-01 1.18398003E-01 1.48148000E-01 1.75924003E-01 + 2.13701993E-01 2.37497002E-01 2.21016005E-01 2.08115995E-01 + 2.09879994E-01 2.97412008E-01 2.49944001E-01 2.72215992E-01 + 2.68896997E-01 2.71961004E-01 2.58857995E-01 2.26227000E-01 + 2.86484003E-01 3.24977994E-01 3.53103995E-01 3.31158996E-01 + 3.13852012E-01 2.93278992E-01 3.23570013E-01 3.31380993E-01 + 3.63498986E-01 3.76935989E-01 3.82602990E-01 3.58981013E-01 + 3.47106993E-01 3.55152994E-01 3.12137008E-01 3.16798002E-01 + 2.93615013E-01 2.67417997E-01 3.00020009E-01 2.20265001E-01 + 2.03116000E-01 2.38986000E-01 2.24081993E-01 2.10706994E-01 + 1.50477007E-01 1.44021004E-01 1.51371002E-01 1.16226003E-01 + 1.77524000E-01 2.11223006E-01 2.04685003E-01 1.52771994E-01 + 1.44413993E-01 1.47517994E-01 1.29475996E-01 9.39870030E-02 + 1.36472002E-01 1.67463005E-01 1.63273007E-01 2.41129994E-01 + 2.15155005E-01 2.00371996E-01 1.96389005E-01 2.22607002E-01 + 1.32166997E-01 1.16425999E-01 1.52531996E-01 1.78972006E-01 + 1.57234997E-01 1.93085000E-01 2.35459000E-01 1.75546005E-01 + 2.23914996E-01 2.41223007E-01 2.71025002E-01 3.07940990E-01 + 2.78595001E-01 2.65879989E-01 2.50367999E-01 2.22426996E-01 + 2.36531004E-01 3.22430998E-01 3.40752989E-01 2.97747999E-01 + 3.19894999E-01 3.26537997E-01 3.35877001E-01 3.63166004E-01 + 3.81029993E-01 3.85904014E-01 3.83253992E-01 4.24701005E-01 + 3.86375010E-01 3.56454015E-01 3.18482995E-01 3.29769999E-01 + 3.02603990E-01 2.58347988E-01 2.43975997E-01 2.15617999E-01 + 2.06356004E-01 2.09184006E-01 2.22115993E-01 2.34587997E-01 + 2.33989999E-01 2.13620007E-01 1.76880002E-01 1.57566994E-01 + 1.38219997E-01 1.94509998E-01 1.59596995E-01 1.42686993E-01 + 1.30358994E-01 1.16766997E-01 1.20878004E-01 1.67472005E-01 + 1.83387995E-01 1.83614001E-01 1.23576000E-01 1.47951007E-01 + 2.10026994E-01 2.15031996E-01 2.41696000E-01 2.29983002E-01 + 1.03734002E-01 1.39229998E-01 1.28509998E-01 1.45480007E-01 + 1.74832001E-01 1.62293002E-01 2.14897007E-01 2.15106994E-01 + 2.05495998E-01 2.52947003E-01 2.94519991E-01 3.14089000E-01 + 2.67890006E-01 2.55912989E-01 2.91889995E-01 2.47169003E-01 + 2.94057995E-01 2.74556011E-01 3.27398986E-01 3.25123996E-01 + 3.40211987E-01 3.29831988E-01 3.67480993E-01 3.47804010E-01 + 3.57372999E-01 3.81197989E-01 3.83069992E-01 4.18363988E-01 + 3.49424005E-01 3.21321011E-01 3.07709008E-01 2.60775000E-01 + 2.47400001E-01 2.49050006E-01 2.10559994E-01 1.81674004E-01 + 1.94714993E-01 2.23891005E-01 2.03318998E-01 2.24627003E-01 + 2.37976998E-01 2.06094995E-01 2.10914999E-01 1.95286006E-01 + 1.89752996E-01 1.50718004E-01 1.73572004E-01 1.88289002E-01 + 1.91767007E-01 1.30370006E-01 1.92916006E-01 1.98743001E-01 + 1.50197998E-01 1.63105994E-01 1.58847004E-01 1.38126999E-01 + 1.76561996E-01 1.55487999E-01 1.82381004E-01 1.93405002E-01 + 1.35051996E-01 1.33791000E-01 7.42349997E-02 8.11489969E-02 + 1.14012003E-01 1.44832000E-01 1.97157994E-01 2.12688997E-01 + 2.10714996E-01 2.59983003E-01 2.47412995E-01 3.09579015E-01 + 3.13953012E-01 3.00873995E-01 2.59772986E-01 2.61148006E-01 + 2.55708992E-01 3.24660003E-01 2.95345008E-01 3.24393004E-01 + 3.42741013E-01 2.99400985E-01 3.20749015E-01 3.28471005E-01 + 3.34693015E-01 3.59095991E-01 3.69924992E-01 3.53500009E-01 + 2.37385005E-01 2.81165987E-01 2.58203000E-01 2.54819989E-01 + 2.29525998E-01 2.46746004E-01 2.46530995E-01 2.04605997E-01 + 2.40548000E-01 2.47032002E-01 2.42226005E-01 1.97246999E-01 + 2.35104993E-01 1.96283996E-01 1.55515999E-01 1.89173996E-01 + 1.92388996E-01 2.06290007E-01 1.98631003E-01 1.87974006E-01 + 1.72112003E-01 1.81356996E-01 1.45395994E-01 1.43715993E-01 + 1.37691006E-01 1.26594007E-01 1.84911996E-01 1.68860003E-01 + 1.67923003E-01 1.56072006E-01 1.79545999E-01 1.93419993E-01 + 1.50400996E-01 1.44929007E-01 8.51389989E-02 6.75690025E-02 + 1.40166998E-01 1.75380006E-01 2.16747001E-01 2.09819004E-01 + 1.74089000E-01 2.21635997E-01 2.77078003E-01 3.09455007E-01 + 2.92596012E-01 3.25067014E-01 2.42896006E-01 2.37223998E-01 + 2.77444005E-01 2.91642010E-01 2.95302004E-01 3.36313993E-01 + 3.39576006E-01 3.17793012E-01 3.35029989E-01 3.28987986E-01 + 3.27877998E-01 3.69176000E-01 3.76437992E-01 3.64796996E-01 + 3.14891011E-01 2.92324007E-01 2.70018995E-01 2.45579004E-01 + 2.63514012E-01 2.59175986E-01 2.33786002E-01 2.17950001E-01 + 2.31259003E-01 2.17590004E-01 2.70148009E-01 2.16890007E-01 + 1.56099007E-01 1.39690995E-01 1.53053999E-01 1.94142997E-01 + 1.74046993E-01 2.27229998E-01 1.95623994E-01 1.35224998E-01 + 1.33613005E-01 1.49516001E-01 1.27312005E-01 1.14875004E-01 + 1.38543993E-01 1.18049003E-01 1.19716004E-01 1.49207994E-01 + 1.34268999E-01 1.61935002E-01 1.60395995E-01 1.65517002E-01 + 1.53072998E-01 1.29320994E-01 1.00561999E-01 1.12530999E-01 + 9.39820036E-02 1.49623007E-01 1.96022004E-01 2.19704002E-01 + 2.02635005E-01 2.33779997E-01 3.14139009E-01 2.82799989E-01 + 3.11764985E-01 2.97504991E-01 2.94647008E-01 2.53481001E-01 + 2.62928993E-01 3.01207989E-01 3.11715990E-01 3.05689007E-01 + 3.19541007E-01 3.51945996E-01 3.00231993E-01 3.38752002E-01 + 3.05554986E-01 3.20995003E-01 3.36870015E-01 3.34093004E-01 + 3.03737015E-01 2.61361986E-01 2.92676002E-01 2.39654005E-01 + 2.54112989E-01 2.23083004E-01 2.46068999E-01 2.48840004E-01 + 2.35632002E-01 2.10583001E-01 2.52732992E-01 2.22021997E-01 + 1.71777993E-01 1.66236997E-01 1.44654006E-01 1.67209998E-01 + 1.54280007E-01 1.22644000E-01 1.62543997E-01 1.26515999E-01 + 9.84899998E-02 1.00208998E-01 1.64703995E-01 1.50001004E-01 + 1.22689001E-01 1.36857003E-01 1.29967004E-01 1.02086999E-01 + 1.28869995E-01 1.82229996E-01 1.57374993E-01 1.58605993E-01 + 2.32501000E-01 1.59165993E-01 1.42131001E-01 1.21100001E-01 + 1.40984997E-01 1.46424994E-01 2.10842997E-01 2.13122994E-01 + 2.25797996E-01 2.51688004E-01 2.82283992E-01 2.81192988E-01 + 2.36921996E-01 2.59104997E-01 2.52332002E-01 2.75480002E-01 + 3.03523988E-01 2.98626989E-01 3.32875997E-01 3.24270993E-01 + 3.28767002E-01 2.91931987E-01 3.11975986E-01 2.97454000E-01 + 2.88376004E-01 2.90753990E-01 2.97425985E-01 2.98034996E-01 + 2.59148985E-01 2.64555007E-01 2.65801013E-01 2.46160001E-01 + 2.79231995E-01 2.60165006E-01 2.36691996E-01 2.63579994E-01 + 2.24227995E-01 2.21314996E-01 2.54388988E-01 2.14518994E-01 + 2.24795997E-01 2.00636998E-01 1.72951996E-01 1.70222998E-01 + 1.43793002E-01 1.46504998E-01 1.59768000E-01 1.70377001E-01 + 1.63460001E-01 1.77739993E-01 2.19779998E-01 1.77230000E-01 + 1.63111001E-01 1.36305004E-01 1.48589000E-01 1.43336996E-01 + 1.33553997E-01 1.29747003E-01 1.46944001E-01 1.57596007E-01 + 2.17958003E-01 1.88723996E-01 1.85405001E-01 1.79412007E-01 + 1.34136006E-01 1.87142000E-01 1.77651003E-01 3.02917004E-01 + 2.81394005E-01 2.83892989E-01 3.34677011E-01 2.44812995E-01 + 2.33932003E-01 2.76486993E-01 2.41532996E-01 2.95729011E-01 + 3.19061011E-01 3.12566012E-01 2.85167992E-01 3.14016014E-01 + 3.19489986E-01 3.09287012E-01 3.20715994E-01 2.76827008E-01 + 2.24197999E-01 2.61458009E-01 2.42263004E-01 2.40850002E-01 + 2.61514008E-01 2.78779000E-01 2.22184002E-01 2.39280000E-01 + 2.25300997E-01 2.31364995E-01 2.12448001E-01 2.68527001E-01 + 2.61081994E-01 2.69686997E-01 2.44341999E-01 2.56386012E-01 + 2.52476990E-01 2.45150998E-01 2.30892003E-01 1.86275005E-01 + 1.50042996E-01 1.67551994E-01 1.54165998E-01 1.84120998E-01 + 1.95059001E-01 2.14627996E-01 2.09308997E-01 1.86932996E-01 + 1.53837994E-01 1.74299002E-01 1.68625996E-01 1.61926001E-01 + 1.27734005E-01 1.77236006E-01 1.77656993E-01 1.43519998E-01 + 2.25795001E-01 2.01811999E-01 1.87931001E-01 1.52839005E-01 + 1.70012996E-01 1.40269995E-01 1.83489993E-01 2.31121004E-01 + 2.91882992E-01 2.80764014E-01 2.98516005E-01 2.18851998E-01 + 2.58388013E-01 2.93989986E-01 2.50797004E-01 2.89692998E-01 + 2.64795005E-01 2.97004998E-01 2.74675995E-01 2.48862997E-01 + 3.01990002E-01 3.22064012E-01 2.83870012E-01 2.41710007E-01 + 2.01257005E-01 1.93463996E-01 1.98548004E-01 1.90766007E-01 + 2.28284001E-01 2.91566014E-01 2.34364003E-01 2.14775994E-01 + 2.07604006E-01 2.13125005E-01 2.69834012E-01 3.06190997E-01 + 2.77541995E-01 2.58882999E-01 2.81753987E-01 3.13926011E-01 + 3.27421010E-01 2.82972991E-01 2.63085008E-01 2.18043000E-01 + 1.66994005E-01 1.66227996E-01 1.08586997E-01 1.62395999E-01 + 1.26645997E-01 1.89633995E-01 2.43515998E-01 2.33061999E-01 + 2.04559997E-01 2.04334006E-01 2.01086000E-01 1.96133003E-01 + 1.78109005E-01 1.50811002E-01 1.88213006E-01 1.36212006E-01 + 2.23639995E-01 2.22795993E-01 1.78475007E-01 1.95238993E-01 + 1.89368993E-01 1.44808993E-01 1.81693003E-01 1.95798993E-01 + 2.71082997E-01 2.96770006E-01 2.90504992E-01 2.76125014E-01 + 2.37848997E-01 2.67479002E-01 2.73844004E-01 2.84004986E-01 + 2.42495000E-01 2.90120989E-01 2.60832012E-01 2.40836993E-01 + 2.18652993E-01 3.09587985E-01 2.44030997E-01 2.12118998E-01 + 1.94720000E-01 2.23561004E-01 1.81245998E-01 1.79739997E-01 + 1.72915995E-01 2.11768001E-01 2.24106997E-01 2.35377997E-01 + 2.53125012E-01 2.53995001E-01 2.61801988E-01 2.67755002E-01 + 2.72195011E-01 2.91121006E-01 2.78452992E-01 2.89972991E-01 + 3.14422995E-01 3.11417997E-01 2.68570006E-01 2.35471994E-01 + 2.06173003E-01 1.95545003E-01 1.75432995E-01 1.53916001E-01 + 1.67153001E-01 2.54498005E-01 2.44966000E-01 2.24948004E-01 + 2.37926006E-01 1.82065994E-01 1.66447997E-01 1.93241999E-01 + 2.05537006E-01 1.66789994E-01 1.66032001E-01 1.62481993E-01 + 2.40667999E-01 2.01638997E-01 2.32206002E-01 1.90843999E-01 + 1.76352993E-01 1.80886000E-01 1.91122994E-01 1.86713994E-01 + 2.58112997E-01 2.58579999E-01 2.41277993E-01 2.76562989E-01 + 2.94303000E-01 3.01131994E-01 2.91669011E-01 2.83517003E-01 + 2.70648003E-01 2.93570012E-01 2.55685002E-01 2.29335994E-01 + 2.52494991E-01 2.36065000E-01 2.31572002E-01 1.98418006E-01 + 1.47177994E-01 1.81639999E-01 1.80820003E-01 1.84913993E-01 + 1.92753002E-01 1.91763997E-01 2.27774993E-01 2.41274998E-01 + 2.40893006E-01 2.48732999E-01 2.59478986E-01 2.23997995E-01 + 2.75085002E-01 2.82512993E-01 2.34891996E-01 2.92654008E-01 + 2.92663008E-01 2.92739004E-01 2.58047014E-01 2.53587008E-01 + 2.27371007E-01 1.72479004E-01 1.85203001E-01 1.44716993E-01 + 2.08550006E-01 2.55048007E-01 2.55459011E-01 2.04311997E-01 + 2.13862002E-01 1.96456000E-01 1.52952000E-01 1.75438002E-01 + 1.99717999E-01 1.97013006E-01 1.61492005E-01 1.55791000E-01 + 1.79536998E-01 2.42236003E-01 2.27229998E-01 2.30564997E-01 + 1.84993997E-01 1.87283993E-01 1.73879996E-01 2.55654007E-01 + 2.06434995E-01 2.00498998E-01 2.29445994E-01 2.66310006E-01 + 2.66617000E-01 2.94919997E-01 2.96050996E-01 3.20876986E-01 + 2.68330008E-01 2.70929009E-01 2.53167987E-01 2.06716999E-01 + 2.74681002E-01 2.35097006E-01 1.66713998E-01 1.64777994E-01 + 1.47627994E-01 1.34123996E-01 1.62772000E-01 2.06132993E-01 + 2.41376996E-01 2.03093007E-01 1.92789003E-01 2.23870993E-01 + 2.27136001E-01 2.38055006E-01 2.50551999E-01 2.25677997E-01 + 2.22652003E-01 2.77774990E-01 2.32054994E-01 2.84007996E-01 + 2.98117012E-01 2.62964010E-01 2.59552002E-01 2.28240997E-01 + 2.27069005E-01 2.27844000E-01 2.13095993E-01 1.84853002E-01 + 1.36347994E-01 2.14695007E-01 1.96897998E-01 2.10755005E-01 + 1.81840003E-01 1.51878998E-01 2.00172007E-01 1.97886005E-01 + 2.08268002E-01 1.94507003E-01 1.87037006E-01 1.40766993E-01 + 1.73061997E-01 2.56918997E-01 2.14463994E-01 2.05731004E-01 + 1.91054001E-01 1.61970004E-01 1.88613996E-01 2.25050002E-01 + 2.06290007E-01 2.05367997E-01 2.52824008E-01 2.52474993E-01 + 2.94577986E-01 2.70649999E-01 2.65282005E-01 2.97215015E-01 + 2.90430009E-01 2.60248989E-01 2.61738002E-01 2.53906012E-01 + 2.78528988E-01 2.52052993E-01 1.79349005E-01 1.81107000E-01 + 2.09433004E-01 1.60698995E-01 1.28060997E-01 1.51618004E-01 + 1.55717000E-01 1.84195995E-01 1.72574997E-01 1.64464995E-01 + 2.07268000E-01 2.13254005E-01 2.54323006E-01 2.23821998E-01 + 2.28742003E-01 2.58639991E-01 2.39570007E-01 3.07038009E-01 + 2.73146003E-01 2.41887003E-01 2.20900998E-01 2.47385994E-01 + 2.41435006E-01 1.74840003E-01 2.01921001E-01 1.99074998E-01 + 1.26634002E-01 1.57582998E-01 1.54520005E-01 1.51215002E-01 + 1.69549003E-01 1.71776995E-01 1.89144999E-01 1.67379007E-01 + 1.71295002E-01 1.74098000E-01 1.75358996E-01 1.44026995E-01 + 1.69924006E-01 1.94343999E-01 2.05789000E-01 2.10453004E-01 + 1.85547993E-01 1.63427994E-01 2.25287005E-01 2.38670006E-01 + 2.16199994E-01 2.21580997E-01 2.26588994E-01 2.33870998E-01 + 2.57023007E-01 2.89613992E-01 2.42125005E-01 2.76140988E-01 + 2.83657014E-01 2.40667999E-01 2.41859004E-01 2.34422997E-01 + 2.38686994E-01 1.80057004E-01 1.92103997E-01 1.53769001E-01 + 1.82073995E-01 1.18213996E-01 1.38688996E-01 1.46729007E-01 + 1.67896003E-01 2.06226006E-01 2.31417000E-01 1.63326994E-01 + 1.79447994E-01 2.01848000E-01 2.39464998E-01 2.18920007E-01 + 2.35902995E-01 2.47015998E-01 2.72204012E-01 2.90320992E-01 + 2.74782985E-01 2.63392001E-01 2.30219007E-01 2.50048995E-01 + 2.10765004E-01 1.96217000E-01 1.60998002E-01 1.46552995E-01 + 1.71404004E-01 1.17200002E-01 1.72325999E-01 1.44509003E-01 + 2.04853997E-01 2.10259005E-01 1.85561001E-01 1.85882002E-01 + 1.79655001E-01 1.67658001E-01 1.37294993E-01 1.64648995E-01 + 1.89303994E-01 2.13644996E-01 2.17390001E-01 2.23508999E-01 + 1.86454996E-01 2.24021003E-01 1.72061995E-01 1.77405998E-01 + 1.98195994E-01 2.04139993E-01 2.25317001E-01 2.74176002E-01 + 2.75705993E-01 2.82932013E-01 2.73155004E-01 2.57216990E-01 + 2.66503990E-01 2.25592002E-01 2.26078004E-01 2.32116997E-01 + 2.20479995E-01 2.11419001E-01 1.89870000E-01 1.46585003E-01 + 1.84766993E-01 1.23810999E-01 1.50640994E-01 1.68990001E-01 + 1.88317999E-01 2.24757999E-01 2.13052005E-01 2.23636001E-01 + 1.96658999E-01 1.99295998E-01 2.32839003E-01 2.13667005E-01 + 2.07105994E-01 2.20128000E-01 2.26388007E-01 2.52032012E-01 + 3.04307997E-01 2.30305001E-01 2.30707005E-01 2.10039005E-01 + 2.33870998E-01 1.92670003E-01 1.83083996E-01 1.63553998E-01 + 1.45282999E-01 1.48587003E-01 1.69881999E-01 2.35534996E-01 + 2.23008007E-01 2.20540002E-01 1.98280007E-01 2.13358998E-01 + 1.78227007E-01 1.87618002E-01 1.47763997E-01 1.39717996E-01 + 2.15859994E-01 2.21975997E-01 2.43114993E-01 2.69432992E-01 + 2.57517010E-01 2.60838002E-01 2.30828002E-01 2.30353996E-01 + 2.23571002E-01 2.28524998E-01 2.62796998E-01 2.59618014E-01 + 3.02175999E-01 3.25982988E-01 2.95908988E-01 2.28101999E-01 + 2.28461996E-01 2.09824994E-01 2.09514007E-01 2.08278999E-01 + 2.23021999E-01 1.89041004E-01 1.66889995E-01 1.69780001E-01 + 1.68542996E-01 1.96192995E-01 1.59932002E-01 1.81123003E-01 + 2.16766000E-01 1.81581005E-01 1.31951004E-01 1.86262995E-01 + 1.57146007E-01 1.99616998E-01 2.05817997E-01 2.07912996E-01 + 1.65378004E-01 2.22837001E-01 2.58302003E-01 2.87791997E-01 + 2.75494009E-01 2.47059003E-01 2.19724000E-01 2.07258001E-01 + 1.94124997E-01 2.13182002E-01 1.65316001E-01 1.47515997E-01 + 1.55025005E-01 1.70063004E-01 1.63663000E-01 1.65384993E-01 + 2.22844005E-01 2.24987000E-01 2.40004003E-01 2.28178993E-01 + 2.10905999E-01 2.21058995E-01 1.78499997E-01 1.77702993E-01 + 2.06796005E-01 2.56031990E-01 2.33715996E-01 2.50474006E-01 + 2.02629998E-01 2.48180002E-01 2.47354001E-01 2.36881003E-01 + 2.34410003E-01 2.45963007E-01 2.44619995E-01 2.97452003E-01 + 2.92688012E-01 3.31193000E-01 2.98198998E-01 2.32002005E-01 + 2.46361002E-01 1.70954004E-01 1.85776994E-01 1.99484006E-01 + 1.52024999E-01 1.41651005E-01 1.76862001E-01 1.87812001E-01 + 1.59063995E-01 1.91643000E-01 1.70861006E-01 1.90524995E-01 + 1.81173995E-01 1.29640996E-01 1.53966993E-01 1.51536003E-01 + 1.79754004E-01 1.78896993E-01 1.70259997E-01 1.59268007E-01 + 1.89805999E-01 2.34786004E-01 2.04733998E-01 2.24555001E-01 + 2.37914994E-01 2.56089985E-01 2.34024003E-01 2.68624991E-01 + 2.23554000E-01 1.63953006E-01 1.49684995E-01 1.50830999E-01 + 1.79774001E-01 1.81642994E-01 1.71648994E-01 1.60742000E-01 + 2.05834001E-01 1.72633007E-01 2.27575004E-01 2.34206006E-01 + 2.48151004E-01 2.18853995E-01 1.94887996E-01 1.81458995E-01 + 1.86056003E-01 2.10385993E-01 2.15188995E-01 2.13749006E-01 + 2.01517001E-01 2.43490994E-01 2.74493992E-01 2.51231998E-01 + 2.72210985E-01 3.01115990E-01 2.55391985E-01 2.64665008E-01 + 2.52494007E-01 2.85894006E-01 2.65628010E-01 2.39858001E-01 + 1.96831003E-01 2.32434005E-01 2.20707998E-01 1.93434000E-01 + 2.31134996E-01 2.05293000E-01 1.88703999E-01 1.73641995E-01 + 2.05341995E-01 1.93537995E-01 1.74657002E-01 2.17835993E-01 + 2.20669001E-01 1.46890998E-01 1.53629005E-01 1.17011003E-01 + 1.63984001E-01 1.40520006E-01 1.57321006E-01 1.63395002E-01 + 1.73948005E-01 1.62599996E-01 1.81014001E-01 1.98511004E-01 + 2.05913007E-01 1.96529999E-01 2.34941006E-01 2.14422002E-01 + 1.92120999E-01 1.61787003E-01 1.35452002E-01 1.71053007E-01 + 1.66406006E-01 1.36169001E-01 1.68259993E-01 2.02280000E-01 + 2.15726003E-01 1.92837000E-01 2.25272000E-01 2.14669004E-01 + 2.30636001E-01 1.97799996E-01 1.85744002E-01 2.14972004E-01 + 1.73785999E-01 2.12408006E-01 2.47356996E-01 2.57524014E-01 + 2.55385995E-01 2.60219991E-01 2.36699000E-01 2.73604006E-01 + 2.70507008E-01 3.20915014E-01 2.76225001E-01 2.25785002E-01 + 2.31168002E-01 2.57712990E-01 2.33867005E-01 2.27163002E-01 + 2.32832000E-01 1.95747003E-01 2.05855995E-01 2.14962006E-01 + 2.11753994E-01 2.10902005E-01 2.09640995E-01 2.35259995E-01 + 2.44618997E-01 2.14269996E-01 2.13762999E-01 2.03284994E-01 + 2.15448007E-01 2.13331997E-01 2.27455005E-01 1.90294996E-01 + 1.94380999E-01 1.54396996E-01 1.43147007E-01 1.65013000E-01 + 1.70931995E-01 2.17703000E-01 1.93307996E-01 1.95039004E-01 + 1.72747999E-01 2.10501999E-01 1.90224007E-01 2.03999996E-01 + 1.72514006E-01 1.97368994E-01 1.56492993E-01 1.75602004E-01 + 1.66131005E-01 1.27063006E-01 1.73122004E-01 1.63847998E-01 + 2.04867005E-01 2.09656999E-01 2.20908001E-01 1.98252007E-01 + 2.18527004E-01 2.01317996E-01 1.92184001E-01 2.00060993E-01 + 1.74877003E-01 2.12981999E-01 2.45869994E-01 2.30951995E-01 + 2.56705999E-01 2.75593013E-01 2.88661003E-01 2.84105986E-01 + 2.80425996E-01 2.55971014E-01 2.69805998E-01 2.29858994E-01 + 2.61382997E-01 2.00121999E-01 2.08102003E-01 2.13818997E-01 + 2.11939007E-01 1.86167002E-01 1.78454995E-01 1.94824994E-01 + 1.86137006E-01 2.36046001E-01 2.72036999E-01 2.00108007E-01 + 2.48812005E-01 2.31878996E-01 2.39757001E-01 2.36102000E-01 + 2.53239989E-01 2.52041012E-01 2.21442997E-01 2.21957996E-01 + 1.84200004E-01 2.15869993E-01 1.86611995E-01 1.97845995E-01 + 1.93800002E-01 1.83627993E-01 1.39082000E-01 2.10336998E-01 + 1.83948994E-01 2.20872998E-01 2.46016994E-01 2.33456999E-01 + 1.41027004E-01 1.70796007E-01 1.87308997E-01 1.70612007E-01 + 1.76125005E-01 1.70417994E-01 1.80796996E-01 2.01679006E-01 + 2.13354006E-01 1.99430004E-01 2.09253997E-01 2.06812993E-01 + 1.87241003E-01 1.59468994E-01 1.87650993E-01 1.75540000E-01 + 1.13394998E-01 1.80988997E-01 2.00849995E-01 2.13062003E-01 + 2.08638996E-01 2.51675993E-01 2.82604992E-01 2.85600007E-01 + 2.55517989E-01 3.06412011E-01 2.72891015E-01 2.46923000E-01 + 2.88334996E-01 2.04596996E-01 2.09794998E-01 2.18144998E-01 + 1.90853000E-01 1.75554007E-01 1.94877997E-01 2.19969004E-01 + 2.19432995E-01 2.40853995E-01 2.45883003E-01 2.31104001E-01 + 2.82016993E-01 2.72805989E-01 2.52382010E-01 2.53482014E-01 + 2.62522012E-01 2.42687002E-01 2.25875005E-01 2.09910005E-01 + 2.22461000E-01 2.20027000E-01 2.09634006E-01 1.63791999E-01 + 2.05034003E-01 1.56831995E-01 1.75496995E-01 2.01500997E-01 + 2.47174993E-01 2.60309011E-01 2.63020992E-01 2.13115007E-01 + 1.92129999E-01 1.70802996E-01 1.83953002E-01 2.27228001E-01 + 1.98719993E-01 1.90320000E-01 1.63393006E-01 1.35440007E-01 + 1.79137006E-01 1.79333001E-01 2.12666005E-01 1.80886999E-01 + 1.52746007E-01 1.67290002E-01 1.61810994E-01 1.51223004E-01 + 8.92490000E-02 1.53446004E-01 1.38796002E-01 1.86487004E-01 + 1.91235006E-01 2.81287998E-01 2.60663986E-01 3.21128011E-01 + 3.10575008E-01 3.05996001E-01 2.60096997E-01 2.24957004E-01 + 2.04458997E-01 2.08514005E-01 2.37955004E-01 2.21879005E-01 + 1.94532007E-01 1.73307002E-01 1.96568996E-01 2.03403994E-01 + 2.39151999E-01 2.40840003E-01 2.03679994E-01 2.04416007E-01 + 2.61588007E-01 2.57703006E-01 2.93397009E-01 2.93949991E-01 + 2.54644990E-01 2.68826991E-01 2.15944007E-01 2.45930001E-01 + 2.06420004E-01 2.12250993E-01 1.88426003E-01 2.10437998E-01 + 1.98045999E-01 2.07102999E-01 2.22172007E-01 2.12951005E-01 + 2.69555002E-01 2.70696014E-01 3.05649996E-01 2.76199996E-01 + 2.07641006E-01 2.38508999E-01 1.98542997E-01 1.49773002E-01 + 1.89858004E-01 1.53238997E-01 1.49370000E-01 1.48215994E-01 + 1.62424996E-01 1.44832000E-01 1.65099993E-01 1.89870000E-01 + 2.12079003E-01 1.94429994E-01 1.58173993E-01 1.33426994E-01 + 1.03680998E-01 1.43080994E-01 1.72479004E-01 2.13878006E-01 + 2.15307996E-01 2.73185015E-01 3.20468992E-01 3.02965999E-01 + 2.84453005E-01 2.57676005E-01 2.49895006E-01 2.15421006E-01 + 1.97438002E-01 1.98623002E-01 2.06898004E-01 1.71444997E-01 + 2.21624002E-01 1.85324997E-01 2.37764999E-01 2.27467999E-01 + 1.82756007E-01 2.05107003E-01 1.79078996E-01 2.16031000E-01 + 2.13844001E-01 2.60239989E-01 2.76784003E-01 2.60632008E-01 + 2.30399996E-01 2.98570991E-01 2.19879001E-01 2.28853002E-01 + 2.48310998E-01 2.59434015E-01 1.78797007E-01 2.19201997E-01 + 2.01612994E-01 2.33089998E-01 2.08042994E-01 2.59467006E-01 + 2.62030989E-01 2.51504004E-01 2.84671992E-01 2.60444999E-01 + 2.31488004E-01 1.75291002E-01 1.58950999E-01 1.74336001E-01 + 1.92889005E-01 1.48880005E-01 1.38427004E-01 1.52549997E-01 + 1.51594996E-01 1.60697997E-01 1.30504996E-01 1.83851004E-01 + 1.92126006E-01 2.22012997E-01 1.80206001E-01 1.42732993E-01 + 1.52229995E-01 1.55347005E-01 1.67696998E-01 1.77557006E-01 + 2.18027994E-01 2.82384992E-01 3.20291013E-01 2.87450999E-01 + 2.97475010E-01 2.38587007E-01 2.28180006E-01 1.92376003E-01 + 1.32886007E-01 1.96704000E-01 1.79927006E-01 1.40670002E-01 + 1.59565002E-01 1.32796004E-01 1.75031006E-01 1.79587007E-01 + 1.33730993E-01 1.47354007E-01 2.08610997E-01 1.99708998E-01 + 1.85708001E-01 2.47298002E-01 2.12270007E-01 2.54189014E-01 + 2.97277004E-01 2.65578985E-01 2.63379008E-01 2.35012993E-01 + 2.28359997E-01 2.40735993E-01 2.69989014E-01 2.05401003E-01 + 2.01625004E-01 2.17509001E-01 2.55288988E-01 2.48969004E-01 + 2.59148985E-01 2.13590994E-01 2.29452997E-01 1.94554999E-01 + 2.07324997E-01 1.60735995E-01 1.82206005E-01 1.39550000E-01 + 1.47566006E-01 1.38311997E-01 1.09523997E-01 9.89300013E-02 + 1.76414996E-01 1.47323996E-01 7.91859999E-02 1.28490999E-01 + 1.73558995E-01 1.70891002E-01 1.83706000E-01 1.44094005E-01 + 1.59580007E-01 1.55722007E-01 2.08978996E-01 2.30853006E-01 + 2.62273014E-01 2.75862992E-01 3.01286995E-01 2.95621008E-01 + 2.84994990E-01 2.22960994E-01 2.67565995E-01 1.96053997E-01 + 1.65361002E-01 1.45840004E-01 1.81718007E-01 1.61863998E-01 + 2.13019997E-01 1.90430999E-01 1.74553007E-01 1.64543003E-01 + 1.45071000E-01 1.54386997E-01 1.77880004E-01 1.86799005E-01 + 1.83278993E-01 2.26478994E-01 1.89836994E-01 2.01188996E-01 + 2.12026998E-01 2.63653994E-01 2.19944000E-01 2.44543999E-01 + 2.05818996E-01 2.20565006E-01 2.68087000E-01 2.26085007E-01 + 2.67163992E-01 2.35349998E-01 2.12959006E-01 2.50459999E-01 + 2.68559992E-01 2.06483006E-01 2.20262006E-01 1.31059006E-01 + 1.81525007E-01 1.74025998E-01 1.45294994E-01 1.42857000E-01 + 1.23882003E-01 1.03398003E-01 1.27798006E-01 1.53653994E-01 + 1.71180993E-01 1.24518000E-01 1.21760003E-01 1.10193998E-01 + 1.48623005E-01 1.52963996E-01 2.29482993E-01 2.20361993E-01 + 2.35999003E-01 1.73161998E-01 2.09916994E-01 2.66584992E-01 + 3.09478998E-01 2.82377988E-01 2.74235010E-01 3.19204003E-01 + 2.89420009E-01 2.73761988E-01 2.43006006E-01 1.61165997E-01 + 1.85629994E-01 1.57942995E-01 2.02332005E-01 1.64144993E-01 + 1.66562006E-01 1.69200003E-01 1.71037003E-01 1.22125998E-01 + 1.17158003E-01 1.90803006E-01 1.69593006E-01 1.83864996E-01 + 1.61028996E-01 2.17372999E-01 2.13535994E-01 2.02564999E-01 + 2.08076000E-01 2.17144996E-01 1.90307006E-01 2.21057996E-01 + 1.67677999E-01 1.60428002E-01 2.16176003E-01 2.25979999E-01 + 2.10766003E-01 1.86554998E-01 1.76626995E-01 1.91477999E-01 + 1.96583003E-01 1.88281998E-01 2.15886995E-01 1.72005996E-01 + 1.68616995E-01 1.50994003E-01 1.16627999E-01 1.22396998E-01 + 8.66829976E-02 4.55369987E-02 4.66209985E-02 8.81500021E-02 + 1.51815996E-01 1.42197996E-01 1.30844995E-01 1.15053996E-01 + 1.28207996E-01 1.62910998E-01 1.92748994E-01 2.34767005E-01 +/ \ No newline at end of file diff --git a/examples/ADGPRS/5spot/include/props.in b/examples/ADGPRS/5spot/include/props.in new file mode 100644 index 000000000..b8237026d --- /dev/null +++ b/examples/ADGPRS/5spot/include/props.in @@ -0,0 +1,92 @@ +-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx +-- PVT + +-- ____________________________________________________ +PVTW +-- PREF BREF COMP VISC VISCOSIBILITY +273.1832 1.029 4.599848e-5 0.31 0.0 +/ + +-- ____________________________________________________ +PVDG + 1.0002722 0.9357595900 0.0080 + 18.0117040 0.0678971160 0.0096 + 35.0231350 0.0352258750 0.0112 + 69.0459980 0.0179498120 0.0140 +137.0917200 0.0090619321 0.0189 +171.1145900 0.0072652665 0.0208 +205.1374500 0.0060637464 0.0228 +273.1831800 0.0045534244 0.0268 +341.2289000 0.0036438624 0.0309 +613.4118100 0.0021672279 0.0470 +/ + +-- ____________________________________________________ +ROCK +-- PREF ROCKCOMPR. +1.000272 4.4088E-5 / + +DENSITY +-- OIL WATER GAS +-- (ALL@SURF.CONDS.) +786.5064 1037.836 0.9697576 / + +-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx +-- SCAL + +--SKIP +--SCAL data from: /home/bellout/WORK-3/D-WRKS-A +--/WplcOpt_PSO_MJ/models/examples_cases_AD-GPRS +--/HM_DO/Input/scal.dat +--ENDSKIP + +-- ____________________________________________________ +SWOF +-- SW KRG KROG PCOG +0.100 0.000 1.000 0 +0.150 0.003 0.875 0 +0.200 0.012 0.757 0 +0.250 0.028 0.647 0 +0.300 0.049 0.545 0 +0.350 0.077 0.451 0 +0.400 0.110 0.365 0 +0.450 0.150 0.287 0 +0.500 0.196 0.217 0 +0.550 0.248 0.156 0 +0.600 0.306 0.104 0 +0.650 0.370 0.062 0 +0.700 0.441 0.030 0 +0.750 0.517 0.008 0 +0.800 0.600 0.000 0 +1.000 1.000 0.000 0 +/ + +-- ____________________________________________________ +SGOF +-- SWOF for garn3. numerical layer #1 +-- SWI=0.18, SGC=0.1 and SORG=0.1 +-- +--SG KRG KROG PCOG +0.0000 0.0000 0.9000 0 +0.1000 0.0000 0.4500 0 +0.1310 0.0101 0.3858 0 +0.1620 0.0285 0.3281 0 +0.1930 0.0523 0.2764 0 +0.2240 0.0805 0.2304 0 +0.2550 0.1125 0.1898 0 +0.2860 0.1479 0.1544 0 +0.3170 0.1864 0.1236 0 +0.3480 0.2277 0.0972 0 +0.3790 0.2717 0.0749 0 +0.4100 0.3182 0.0562 0 +0.4410 0.3671 0.0410 0 +0.4720 0.4183 0.0288 0 +0.5030 0.4716 0.0193 0 +0.5340 0.5271 0.0122 0 +0.5650 0.5846 0.0070 0 +0.5960 0.6440 0.0036 0 +0.6270 0.7053 0.0015 0 +0.6580 0.7684 0.0004 0 +0.6890 0.8334 0.0001 0 +0.7200 0.9000 0.0000 0 +/ diff --git a/examples/ADGPRS/5spot/include/props_mod.in b/examples/ADGPRS/5spot/include/props_mod.in new file mode 100644 index 000000000..639047158 --- /dev/null +++ b/examples/ADGPRS/5spot/include/props_mod.in @@ -0,0 +1,48 @@ +-- ____________________________________________________ +-- VISCOSITY MULTIPLIED BY 3, OTHERWISE EVERYTHING THE SAME +PVDO +-- PRESSURE B-OIL VISCOSITY +-- (BAR) (-) (CP) + 50.0000 1.975270 0.6469 + 70.0000 1.963010 0.6580 + 90.0000 1.954640 0.6594 +110.0000 1.933910 0.6698 +130.0000 1.913090 0.6821 +150.0000 1.892170 0.6951 +170.0000 1.871150 0.7088 +190.0000 1.850050 0.7234 +210.0000 1.828870 0.7387 +230.0000 1.807610 0.7550 +250.8000 1.786280 0.7721 +268.4200 1.764870 0.7904 +285.3300 1.743390 0.8098 +301.5900 1.721840 0.8304 +317.2300 1.700220 0.8524 +332.2900 1.678530 0.8759 +346.8000 1.656780 0.9010 +360.8000 1.634960 0.9278 +374.3100 1.613070 0.9566 +387.3600 1.591120 0.9876 +399.9900 1.569100 1.0211 +412.2100 1.547000 1.0572 +424.0500 1.524840 1.0963 +435.5300 1.502600 1.1388 +446.6800 1.480280 1.1851 +457.5100 1.457880 1.2357 +468.0400 1.435390 1.2913 +478.3000 1.412820 1.3842 +488.3000 1.390150 1.4868 +498.0600 1.367370 1.6005 +507.5900 1.344490 1.7280 +516.9200 1.321480 1.8300 +526.0600 1.295860 1.8660 +535.0200 1.272140 1.9110 +543.8300 1.249220 1.9740 +552.4900 1.227040 2.0940 +561.0400 1.205550 2.2380 +569.4800 1.184670 2.4150 +577.8200 1.164370 2.6400 +586.0900 1.144580 2.8920 +594.2900 1.125220 3.1980 +619.2900 1.106150 3.5400 +/ \ No newline at end of file diff --git a/examples/ADGPRS/5spot/include/tsteps.in b/examples/ADGPRS/5spot/include/tsteps.in new file mode 100644 index 000000000..208f0685f --- /dev/null +++ b/examples/ADGPRS/5spot/include/tsteps.in @@ -0,0 +1,119 @@ +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / + +TSTEP + 73 / diff --git a/examples/ADGPRS/5spot/include/tuning.in b/examples/ADGPRS/5spot/include/tuning.in new file mode 100644 index 000000000..7531d412a --- /dev/null +++ b/examples/ADGPRS/5spot/include/tuning.in @@ -0,0 +1,105 @@ + +TUNING +15 30 15 5 / +#0.1 6 * 5 / #24.07.2012, w/Oleg, did not help much from previous +#0.1 10 * 2.5 / #24.07.2012, w/Oleg, no improvement from previous +#0.1 10 * 5 / #25.07.2012, w/Oleg, better than previous +#0.01 10 * 1.5 / #24.07.2012, w/Oleg +# 0.01 30 2 1.5 / +#0.01 2 * 2 / #Oleg, NRN +#0.01 20 * 1.5 / #Oleg, vanEssen +# 5e-2 30 0 2/ +# 0.01 2 2 25 10000 10000 0 / +/ + +# -------------------- +# min timestep sz (days), def=0.01 +# max timestep sz (days), def=30 +# first timestep in input region (days), def=0 +# (max) timestep increment multiplier, def=2 +# target max pressure (bar) change in a timestep,def=10000 +# target max saturation change in a timestep, def=10000 +# target max concentration change in a timestep, def=10000 +# Relaxation factor (0∼1) for timestep selection +# based on maximum variable changes def=0 +# -------------------- + + +LINEAR +#PARDISO 1e-02 300 +GMRES_CPR0 1e-06 300 +#GMRES_CPR0 1e-6 300 #Oleg, NRN +/ + +# -------------------- +# 1. Linear solver. +# PARDISO +# SUPERLU +# GMRES BILU0 — BILU(0) preconditioner +# GMRES CPR0 — CPR preconditioner with AMG + BILU(0) +# GMRES CPRS0 — CPR preconditioner with SAMG + BILU(0) +# GMRES BILU1 — BILU(1) preconditioner +# GMRES CPR1 — CPR preconditioner with AMG + BILU(1) +# GMRES CPRS1 — CPR preconditioner with SAMG + BILU(1) +# DEFAULT: GMRES CPR0 +# 2. Linear solver tolerance. +# DEFAULT: 1e-04 +# 3. Maximum number of iterations. +# DEFAULT: 10 +# -------------------- + +#IMPLICIT +#IMPES 1 2 2 0 / + + +NONLINEAR +APPL 1e-06 30 / +#APPL 1e-6 30 / #Oleg, NRN +/ + +# -------------------- +# 1. Name of nonlinear solver: +# APPL — Applyard chopping +# STD — Standard Newton without chopping +# DEFAULT: APPL +# 2. Tolerance for mass conservation and secondary +# (e.g., thermodynamic equilibrium) equations. +# DEFAULT: 1e-4 +# 3. Maximum number of nonlinear iterations per timestep. +# DEFAULT: 12 +# 4. Maximum number of stationary iterations per timestep. +# DEFAULT: 3 +# 5. Tolerance for pressure changes between two iterations. +# DEFAULT: 0 (Not activated) +# 6. Tolerance for saturation changes between two iterations. +# DEFAULT: 5e-3 +# 7. Tolerance for molar fraction changes between two iterations. +# DEFAULT: 1e-3 +# -------------------- + + +FACILITY +#1e-06 30 1e-1 / +1e-6 30 1e+10 / +#1e-6 30 1e+10 / #NRN, Oleg +#1e-9 30 1e+10 / # Oleg, van Essen +/ + + +# -------------------- +# This keyword defines parameters for facility solver. +# 1. Tolerance for facility equations in facility solver +# and global Newton iteration. +# DEFAULT: same as [Tolerance for reservoir transport equations] +# 2. Maximum number of facility solver iterations. +# DEFAULT: 0 (Not activated) +# 3. Tolerance of reservoir transport equations for +# activating facility solver. +# DEFAULT: 1e-1 +# 4. Tolerance for facility pressure changes. +# DEFAULT: same as [Tolerance for reservoir pressure changes] +# 5. Tolerance for facility saturation changes. +# DEFAULT: same as [Tolerance for reservoir saturation changes] +# 6. Tolerance for facility molar fraction changes. +# DEFAULT: same as [Tolerance for reservoir molar fraction changes] +# -------------------- diff --git a/examples/ADGPRS/5spot/include/wells.in b/examples/ADGPRS/5spot/include/wells.in new file mode 100644 index 000000000..bf15d90e2 --- /dev/null +++ b/examples/ADGPRS/5spot/include/wells.in @@ -0,0 +1,11 @@ +INCLUDE + ./include/welspecs.in +/ + +INCLUDE + ./include/compdat.in +/ + +INCLUDE + ./include/controls.in +/ diff --git a/examples/ADGPRS/5spot/include/welspecs.in b/examples/ADGPRS/5spot/include/welspecs.in new file mode 100644 index 000000000..9f62419ca --- /dev/null +++ b/examples/ADGPRS/5spot/include/welspecs.in @@ -0,0 +1,7 @@ +WELSPECS + INJ1 G1 39 23 */ + PROD1 G2 6 6 */ + PROD2 G2 55 6 */ + PROD3 G2 6 55 */ + PROD4 G2 55 55 */ +/