From 071da232838125eb6bdaa2eeea0d5990a994f7cc Mon Sep 17 00:00:00 2001 From: Nicholas Long <1907354+nllong@users.noreply.github.com> Date: Thu, 27 Apr 2023 19:49:25 -0600 Subject: [PATCH] Add Level 1 5G DES system (#539) * update dependency versions * initial files added for creating 5g system from existing load files * fix path type, ignore for now * fix types on methods, bump to python 3.8 (#540) * fix types on methods, bump to python 3.8 * update ci exclude * add in directory to the mos copying * systemparameter needs to use the same data... favor param_template over data. * expose nBui to set correctly * default to openmodelica and fix space check in file name --- .github/workflows/ci.yml | 47 +- .../geojson/schemas.py | 2 +- .../model_connectors/model_base.py | 7 +- .../modelica/GMT_Lib/DHC/DHC_5G_partial.mot | 301 + .../GMT_Lib/DHC/DHC_5G_waste_heat_GHX.mot | 97 + .../GMT_Lib/DHC/DHC_5G_waste_heat_GHX.py | 72 + .../modelica/input_parser.py | 19 +- .../modelica/lib/runner/fmu_runner.py | 11 +- .../modelica/lib/runner/spawn.py | 2 +- .../modelica/modelica_runner.py | 124 +- .../modelica/simple_gmt_base.py | 38 +- geojson_modelica_translator/scaffold.py | 33 +- .../system_parameters/system_parameters.py | 26 +- mypy.ini | 8 + poetry.lock | 68 +- pyproject.toml | 1 - tests/GMT_Lib/test_gmt_lib_des.py | 43 + tests/base_test_case.py | 4 +- tests/data_shared/B11.mos | 8777 +++++++++++++++++ tests/data_shared/B2.mos | 8777 +++++++++++++++++ tests/data_shared/B6.mos | 8777 +++++++++++++++++ tests/data_shared/system_params_des_5g.json | 162 + .../test_system_parameters.py | 2 +- 23 files changed, 27242 insertions(+), 156 deletions(-) create mode 100644 geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_partial.mot create mode 100644 geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_waste_heat_GHX.mot create mode 100644 geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_waste_heat_GHX.py create mode 100644 mypy.ini create mode 100644 tests/GMT_Lib/test_gmt_lib_des.py create mode 100644 tests/data_shared/B11.mos create mode 100644 tests/data_shared/B2.mos create mode 100644 tests/data_shared/B6.mos create mode 100644 tests/data_shared/system_params_des_5g.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f291a807..6a5608fb6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,34 +22,33 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - python-version: ["3.8", "3.11"] - test_env: [python, docs] + python-version: ["3.9", "3.11"] + test_env: [python, docs, mypy] mbl_branch: [maint_9.1.x] - include: - - os: ubuntu-latest - test_env: python - mbl_branch: maint_9.1.x + exclude: + # only test mypy on linux for all versions of python + - os: windows-latest + test_env: mypy + # only test docs on linux for all versions of python + - os: windows-latest + test_env: docs runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - - name: Display system info + - name: Display system info run: | python -c "import sys; print(sys.version)" docker --version docker-compose --version - - - name: Install and configure Poetry + - name: Install and configure Poetry uses: abatilo/actions-poetry@v2 with: poetry-version: 1.3.1 - - - name: Install dependencies with Poetry + - name: Install dependencies with Poetry run: | poetry --version poetry install @@ -62,8 +61,7 @@ jobs: # mkdir -p /home/runner/modelon # echo "#Please do not delete this comment line." > /home/runner/modelon/license.lic # echo "${{ secrets.MODELON_LICENSE_FILE }}" >> /home/runner/modelon/license.lic - - - name: Install modelicafmt + - name: Install modelicafmt run: | RUNNER_SYSTEM=$(python -c 'import platform; print(platform.system())') curl -SLO "https://github.com/urbanopt/modelica-fmt/releases/download/v0.2-pr.2/modelica-fmt_0.2-pr.2_${RUNNER_SYSTEM}_x86_64.tar.gz" @@ -74,8 +72,7 @@ jobs: else mv modelicafmt '/c/Program Files/' fi - - - name: Install MBL + - name: Install MBL env: MATRIX_OS: ${{ matrix.os }} MBL_BRANCH: ${{ matrix.mbl_branch }} @@ -99,8 +96,7 @@ jobs: # run: | # cd geojson_modelica_translator/modelica/lib/runner # docker-compose build - - - name: Run PyTest + - name: Run pytest env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} # MODELON_MAC_ADDRESS: ${{ secrets.MODELON_MAC_ADDRESS }} @@ -113,22 +109,25 @@ jobs: uses: pre-commit/action@v3.0.0 with: extra_args: --all-files + - name: Run mypy + run: | + if [ '${{ matrix.test_env }}' == 'mypy' ]; then + poetry run mypy --install-types --non-interactive --show-error-codes . + fi - name: Build docs run: | if [ '${{ matrix.test_env }}' == 'docs' ]; then cd docs poetry run make html fi - - - name: Coveralls + - name: Coveralls env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} if: ${{ matrix.os == 'ubuntu-latest' && matrix.test_env == 'python' && matrix.mbl_branch == 'maint_9.1.x' }} run: | poetry run coveralls - - - name: Job Failed + - name: Job Failed if: ${{ failure() }} run: | echo "Maybe these logs will help?" diff --git a/geojson_modelica_translator/geojson/schemas.py b/geojson_modelica_translator/geojson/schemas.py index 56d131449..acfea179f 100644 --- a/geojson_modelica_translator/geojson/schemas.py +++ b/geojson_modelica_translator/geojson/schemas.py @@ -4,7 +4,7 @@ import json import os -from jsonschema.validators import _LATEST_VERSION as LatestValidator +from jsonschema.validators import Draft202012Validator as LatestValidator class Schemas(object): diff --git a/geojson_modelica_translator/model_connectors/model_base.py b/geojson_modelica_translator/model_connectors/model_base.py index c6380b8c7..b1153dea3 100644 --- a/geojson_modelica_translator/model_connectors/model_base.py +++ b/geojson_modelica_translator/model_connectors/model_base.py @@ -4,6 +4,7 @@ import logging import shutil from pathlib import Path +from typing import Union from jinja2 import Environment, FileSystemLoader, StrictUndefined, exceptions from modelica_builder.model import Model @@ -24,7 +25,7 @@ class ModelBase(object): feature) to a detailed Modelica connection. For example, a simple RC model (using TEASER), a ROM, CSV file, etc. """ # model_name must be overridden in subclass - model_name = None + model_name: Union[str, None] = None def __init__(self, system_parameters, template_dir): """ @@ -114,7 +115,9 @@ def run_template(self, template, save_file_name, do_not_add_to_list=False, **kwa """ file_data = template.render(**kwargs) - Path(save_file_name).parent.mkdir(parents=True, exist_ok=True) + if not isinstance(save_file_name, Path): + save_file_name = Path(save_file_name) + save_file_name.parent.mkdir(parents=True, exist_ok=True) with open(save_file_name, "w") as f: f.write(file_data) diff --git a/geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_partial.mot b/geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_partial.mot new file mode 100644 index 000000000..eec92b09e --- /dev/null +++ b/geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_partial.mot @@ -0,0 +1,301 @@ +partial model PartialSeries "Partial model for series network" + extends Modelica.Icons.Example; + package Medium = Buildings.Media.Water "Medium model"; + constant Real facMul = 10 + "Building loads multiplier factor"; + parameter Real dpDis_length_nominal(final unit="Pa/m") = 250 + "Pressure drop per pipe length at nominal flow rate - Distribution line"; + parameter Real dpCon_length_nominal(final unit="Pa/m") = 250 + "Pressure drop per pipe length at nominal flow rate - Connection line"; + parameter Boolean allowFlowReversalSer = true + "Set to true to allow flow reversal in the service lines" + annotation(Dialog(tab="Assumptions"), Evaluate=true); + parameter Boolean allowFlowReversalBui = false + "Set to true to allow flow reversal for in-building systems" + annotation(Dialog(tab="Assumptions"), Evaluate=true); + parameter Integer nBui = datDes.nBui + "Number of buildings connected to DHC system" + annotation (Evaluate=true); + inner parameter + Buildings.Experimental.DHC.Examples.Combined.BaseClasses.DesignDataSeries + datDes(final mCon_flow_nominal=bui.ets.mSerWat_flow_nominal) "Design data" + annotation (Placement(transformation(extent={{-340,220},{-320,240}}))); + // COMPONENTS + Buildings.Experimental.DHC.Plants.Reservoir.BoreField + borFie(redeclare final package Medium = Medium) "Bore field" annotation ( + Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=0, + origin={-130,-80}))); + Buildings.Experimental.DHC.EnergyTransferStations.BaseClasses.Pump_m_flow pumDis( + redeclare final package Medium = Medium, + final m_flow_nominal=datDes.mPumDis_flow_nominal, + final allowFlowReversal=allowFlowReversalSer, + dp_nominal=150E3) + "Distribution pump" + annotation (Placement(transformation( + extent={{10,-10},{-10,10}}, + rotation=90, + origin={80,-60}))); + Buildings.Fluid.Sources.Boundary_pT bou( + redeclare final package Medium=Medium, + final nPorts=1) + "Boundary pressure condition representing the expansion vessel" + annotation (Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=180, + origin={112,-20}))); + Buildings.Experimental.DHC.EnergyTransferStations.BaseClasses.Pump_m_flow pumSto( + redeclare final package Medium = Medium, + m_flow_nominal=datDes.mSto_flow_nominal) + "Bore field pump" + annotation (Placement(transformation( + extent={{10,10},{-10,-10}}, + rotation=180, + origin={-180,-80}))); + Buildings.Experimental.DHC.Networks.Combined.BaseClasses.ConnectionSeriesStandard + conPla( + redeclare final package Medium = Medium, + final mDis_flow_nominal=datDes.mPipDis_flow_nominal, + final mCon_flow_nominal=datDes.mPla_flow_nominal, + lDis=0, + lCon=0, + final dhDis=0.2, + final dhCon=0.2, + final allowFlowReversal=allowFlowReversalSer) + "Connection to the plant (pressure drop lumped in plant and network model)" + annotation (Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=90, + origin={-80,-10}))); + Buildings.Experimental.DHC.Networks.Combined.BaseClasses.ConnectionSeriesStandard + conSto( + redeclare final package Medium = Medium, + final mDis_flow_nominal=datDes.mPipDis_flow_nominal, + final mCon_flow_nominal=datDes.mSto_flow_nominal, + lDis=0, + lCon=0, + final dhDis=0.2, + final dhCon=0.2, + final allowFlowReversal=allowFlowReversalSer) + "Connection to the bore field (pressure drop lumped in plant and network model)" + annotation (Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=90, + origin={-80,-90}))); + Buildings.Experimental.DHC.Plants.Heating.SewageHeatRecovery + pla( + redeclare final package Medium = Medium, + final mSew_flow_nominal=datDes.mPla_flow_nominal, + final mDis_flow_nominal=datDes.mPla_flow_nominal, + final dpSew_nominal=datDes.dpPla_nominal, + final dpDis_nominal=datDes.dpPla_nominal, + final epsHex=datDes.epsPla) "Sewage heat recovery plant" + annotation (Placement(transformation(extent={{-160,-10},{-140,10}}))); + Buildings.Experimental.DHC.Networks.Combined.UnidirectionalSeries + dis( + redeclare final package Medium = Medium, + final nCon=nBui, + show_TOut=true, + final mDis_flow_nominal=datDes.mPipDis_flow_nominal, + final mCon_flow_nominal=datDes.mCon_flow_nominal, + final dp_length_nominal=datDes.dp_length_nominal, + final lDis=datDes.lDis, + final lCon=datDes.lCon, + final lEnd=datDes.lEnd, + final allowFlowReversal=allowFlowReversalSer) "Distribution network" + annotation (Placement(transformation(extent={{-20,130},{20,150}}))); + Fluid.Sensors.TemperatureTwoPort TDisWatSup( + redeclare final package Medium = Medium, + final m_flow_nominal=datDes.mPumDis_flow_nominal) + "District water supply temperature" + annotation (Placement(transformation(extent={{-10,-10},{10,10}}, + rotation=90, + origin={-80,20}))); + Fluid.Sensors.TemperatureTwoPort TDisWatRet( + redeclare final package Medium = Medium, + final m_flow_nominal=datDes.mPumDis_flow_nominal) + "District water return temperature" + annotation (Placement(transformation( + extent={{10,-10},{-10,10}}, + rotation=90, + origin={80,0}))); + Fluid.Sensors.TemperatureTwoPort TDisWatBorLvg( + redeclare final package Medium = Medium, + final m_flow_nominal=datDes.mPumDis_flow_nominal) + "District water borefield leaving temperature" + annotation (Placement( + transformation( + extent={{-10,-10},{10,10}}, + rotation=90, + origin={-80,-40}))); + replaceable + Buildings.Experimental.DHC.Loads.Combined.BaseClasses.PartialBuildingWithETS + bui[nBui] constrainedby + Buildings.Experimental.DHC.Loads.Combined.BaseClasses.PartialBuildingWithETS( + bui(each final facMul=facMul), + redeclare each final package MediumBui = Medium, + redeclare each final package MediumSer = Medium, + each final allowFlowReversalBui=allowFlowReversalBui, + each final allowFlowReversalSer=allowFlowReversalSer) "Building and ETS" + annotation (Placement(transformation(extent={{-10,170},{10,190}}))); + Modelica.Blocks.Sources.Constant TSewWat(k=273.15 + 17) + "Sewage water temperature" + annotation (Placement(transformation(extent={{-280,30},{-260,50}}))); + Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THeaWatSupMaxSet[nBui]( + k=bui.THeaWatSup_nominal) + "Heating water supply temperature set point - Maximum value" + annotation (Placement(transformation(extent={{-250,210},{-230,230}}))); + Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TChiWatSupSet[nBui]( + k=bui.TChiWatSup_nominal) + "Chilled water supply temperature set point" + annotation (Placement(transformation(extent={{-220,190},{-200,210}}))); + Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THeaWatSupMinSet[nBui]( + each k=28 + 273.15) + "Heating water supply temperature set point - Minimum value" + annotation (Placement(transformation(extent={{-280,230},{-260,250}}))); + Buildings.Controls.OBC.CDL.Continuous.MultiSum PPumETS( + final nin=nBui) + "ETS pump power" + annotation (Placement(transformation(extent={{140,190},{160,210}}))); + Modelica.Blocks.Continuous.Integrator EPumETS( + initType=Modelica.Blocks.Types.Init.InitialState) + "ETS pump electric energy" + annotation (Placement(transformation(extent={{220,190},{240,210}}))); + Modelica.Blocks.Continuous.Integrator EPumDis( + initType=Modelica.Blocks.Types.Init.InitialState) + "Distribution pump electric energy" + annotation (Placement(transformation(extent={{220,-90},{240,-70}}))); + Modelica.Blocks.Continuous.Integrator EPumSto( + initType=Modelica.Blocks.Types.Init.InitialState) + "Storage pump electric energy" + annotation (Placement(transformation(extent={{220,-150},{240,-130}}))); + Modelica.Blocks.Continuous.Integrator EPumPla(initType=Modelica.Blocks.Types.Init.InitialState) + "Plant pump electric energy" + annotation (Placement(transformation(extent={{220,30},{240,50}}))); + Buildings.Controls.OBC.CDL.Continuous.MultiSum EPum(nin=4) + "Total pump electric energy" + annotation (Placement(transformation(extent={{280,110},{300,130}}))); + Buildings.Controls.OBC.CDL.Continuous.MultiSum PHeaPump( + final nin=nBui) + "Heat pump power" + annotation (Placement(transformation(extent={{140,150},{160,170}}))); + Modelica.Blocks.Continuous.Integrator EHeaPum( + initType=Modelica.Blocks.Types.Init.InitialState) + "Heat pump electric energy" + annotation (Placement(transformation(extent={{220,150},{240,170}}))); + Buildings.Controls.OBC.CDL.Continuous.MultiSum ETot(nin=2) "Total electric energy" + annotation (Placement(transformation(extent={{320,150},{340,170}}))); + Buildings.Experimental.DHC.Loads.BaseClasses.ConstraintViolation conVio( + final uMin=datDes.TLooMin, + final uMax=datDes.TLooMax, + final nu=3+nBui) + "Check if loop temperatures are within given range" + annotation (Placement(transformation(extent={{320,10},{340,30}}))); +equation + connect(dis.TOut, conVio.u[4:4+nBui-1]); + connect(bou.ports[1], pumDis.port_a) + annotation (Line(points={{102,-20},{80,-20},{80,-50}}, color={0,127,255})); + connect(borFie.port_b, conSto.port_aCon) annotation (Line(points={{-120,-80}, + {-100,-80},{-100,-84},{-90,-84}}, color={0,127,255})); + connect(pumDis.port_b, conSto.port_aDis) annotation (Line(points={{80,-70},{ + 80,-120},{-80,-120},{-80,-100}}, color={0,127,255})); + connect(borFie.port_a, pumSto.port_b) + annotation (Line(points={{-140,-80},{-170,-80}}, color={0,127,255})); + connect(conSto.port_bCon, pumSto.port_a) annotation (Line(points={{-90,-90},{ + -100,-90},{-100,-100},{-200,-100},{-200,-80},{-190,-80}}, color={0, + 127,255})); + connect(conPla.port_bDis, TDisWatSup.port_a) + annotation (Line(points={{-80,0},{-80,10}}, color={0,127,255})); + connect(TDisWatSup.port_b, dis.port_aDisSup) annotation (Line(points={{-80,30}, + {-80,140},{-20,140}}, color={0,127,255})); + connect(dis.port_bDisSup, TDisWatRet.port_a) + annotation (Line(points={{20,140},{80,140},{80,10}}, color={0,127,255})); + connect(TDisWatRet.port_b, pumDis.port_a) + annotation (Line(points={{80,-10},{80,-50}}, color={0,127,255})); + connect(conSto.port_bDis, TDisWatBorLvg.port_a) + annotation (Line(points={{-80,-80},{-80,-50}}, color={0,127,255})); + connect(TDisWatBorLvg.port_b, conPla.port_aDis) + annotation (Line(points={{-80,-30},{-80,-20}}, color={0,127,255})); + connect(bui.port_bSerAmb, dis.ports_aCon) annotation (Line(points={{10,180},{20, + 180},{20,160},{12,160},{12,150}}, color={0,127,255})); + connect(dis.ports_bCon, bui.port_aSerAmb) annotation (Line(points={{-12,150},{ + -12,160},{-20,160},{-20,180},{-10,180}}, color={0,127,255})); + connect(TSewWat.y, pla.TSewWat) annotation (Line(points={{-259,40},{-180,40},{ + -180,7.33333},{-161.333,7.33333}}, + color={0,0,127})); + connect(THeaWatSupMaxSet.y, bui.THeaWatSupMaxSet) annotation (Line(points={{-228, + 220},{-20,220},{-20,187},{-12,187}}, color={0,0,127})); + connect(TChiWatSupSet.y, bui.TChiWatSupSet) annotation (Line(points={{-198,200}, + {-24,200},{-24,185},{-12,185}}, color={0,0,127})); + connect(pla.port_bSerAmb, conPla.port_aCon) annotation (Line(points={{-140,1.33333}, + {-100,1.33333},{-100,-4},{-90,-4}}, color={0,127,255})); + connect(conPla.port_bCon, pla.port_aSerAmb) annotation (Line(points={{-90,-10}, + {-100,-10},{-100,-20},{-200,-20},{-200,1.33333},{-160,1.33333}}, + color={0,127,255})); + connect(THeaWatSupMinSet.y, bui.THeaWatSupMinSet) annotation (Line(points={{-258, + 240},{-16,240},{-16,189},{-12,189}}, color={0,0,127})); + connect(bui.PPumETS, PPumETS.u) + annotation (Line(points={{7,192},{7,200},{138,200}}, color={0,0,127})); + connect(PPumETS.y, EPumETS.u) + annotation (Line(points={{162,200},{218,200}}, color={0,0,127})); + connect(pumDis.P, EPumDis.u) + annotation (Line(points={{71,-71},{71,-80},{218,-80}}, color={0,0,127})); + connect(pumSto.P, EPumSto.u) annotation (Line(points={{-169,-71},{-160,-71},{-160, + -140},{218,-140}}, color={0,0,127})); + connect(pla.PPum, EPumPla.u) annotation (Line(points={{-138.667,5.33333},{-120, + 5.33333},{-120,40},{218,40}}, color={0,0,127})); + connect(EPumETS.y, EPum.u[1]) annotation (Line(points={{241,200},{260,200},{ + 260,121.5},{278,121.5}}, + color={0,0,127})); + connect(EPumPla.y, EPum.u[2]) annotation (Line(points={{241,40},{260,40},{260, + 120.5},{278,120.5}}, color={0,0,127})); + connect(EPumDis.y, EPum.u[3]) annotation (Line(points={{241,-80},{262,-80},{ + 262,119.5},{278,119.5}}, + color={0,0,127})); + connect(EPumSto.y, EPum.u[4]) annotation (Line(points={{241,-140},{264,-140}, + {264,118.5},{278,118.5}},color={0,0,127})); + connect(bui.PHea, PHeaPump.u) annotation (Line(points={{12,189},{120,189},{ + 120,160},{138,160}}, + color={0,0,127})); + connect(PHeaPump.y, EHeaPum.u) + annotation (Line(points={{162,160},{218,160}}, color={0,0,127})); + connect(EHeaPum.y, ETot.u[1]) annotation (Line(points={{241,160},{300,160},{ + 300,161},{318,161}}, color={0,0,127})); + connect(EPum.y, ETot.u[2]) annotation (Line(points={{302,120},{310,120},{310, + 159},{318,159}}, color={0,0,127})); + connect(TDisWatSup.T, conVio.u[1]) annotation (Line(points={{-91,20},{-100,20}, + {-100,12},{-60,12},{-60,20},{318,20}}, color={0,0,127})); + connect(TDisWatBorLvg.T, conVio.u[2]) annotation (Line(points={{-91,-40},{-100, + -40},{-100,-30},{-60,-30},{-60,-40},{300,-40},{300,20},{318,20}}, + color={0,0,127})); + connect(TDisWatRet.T, conVio.u[3]) annotation (Line(points={{69,6.66134e-16},{ + 60,6.66134e-16},{60,20},{318,20}}, color={0,0,127})); + annotation (Diagram( + coordinateSystem(preserveAspectRatio=false, extent={{-360,-260},{360,260}})), + Documentation(revisions=" + +", info=" +

+Partial model that is used by the reservoir network models. +The reservoir network models extend this model, add controls, +and configure some component sizes. +

+")); +end PartialSeries; diff --git a/geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_waste_heat_GHX.mot b/geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_waste_heat_GHX.mot new file mode 100644 index 000000000..685789299 --- /dev/null +++ b/geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_waste_heat_GHX.mot @@ -0,0 +1,97 @@ +within {{ data['project_name'] }}.Districts;{% raw %} +model district + "Series connection with constant district water mass flow rate" + extends + Buildings.Experimental.DHC.Examples.Combined.BaseClasses.PartialSeries( redeclare + Buildings.Experimental.DHC.Loads.Combined.BuildingTimeSeriesWithETS + bui[nBui](final filNam=filNam), datDes( + {% endraw %}nBui={{ data['building_load_files'] | count }},{% raw %} + mPumDis_flow_nominal=95, + mPipDis_flow_nominal=95, + dp_length_nominal=250, + epsPla=0.935)); + parameter String filNam[nBui]={ + {% endraw %}{% for building in data['building_load_files'] %} + "{{ building }}"{% if not loop.last %},{% endif %} + {% endfor %}{% raw %}} + "Library paths of the files with thermal loads as time series"; + Modelica.Blocks.Sources.Constant masFloMaiPum( + k=datDes.mPumDis_flow_nominal) + "Distribution pump mass flow rate" + annotation (Placement(transformation(extent={{-280,-70},{-260,-50}}))); + Modelica.Blocks.Sources.Constant masFloDisPla( + k=datDes.mPla_flow_nominal) + "District water flow rate to plant" + annotation (Placement(transformation(extent={{-250,10},{-230,30}}))); + Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THotWatSupSet[nBui]( + k=fill(63 + 273.15, nBui)) + "Hot water supply temperature set point" + annotation (Placement(transformation(extent={{-190,170},{-170,190}}))); + Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TColWat[nBui]( + k=fill(15 + 273.15, nBui)) + "Cold water temperature" + annotation (Placement(transformation(extent={{-160,150},{-140,170}}))); +equation + connect(masFloMaiPum.y, pumDis.m_flow_in) annotation (Line(points={{-259,-60}, + {60,-60},{60,-60},{68,-60}}, color={0,0,127})); + connect(pumSto.m_flow_in, masFloMaiPum.y) annotation (Line(points={{-180,-68}, + {-180,-60},{-259,-60}}, color={0,0,127})); + connect(masFloDisPla.y, pla.mPum_flow) annotation (Line(points={{-229,20},{ + -184,20},{-184,4.66667},{-161.333,4.66667}}, + color={0,0,127})); + connect(THotWatSupSet.y, bui.THotWatSupSet) annotation (Line(points={{-168, + 180},{-24,180},{-24,183},{-12,183}}, color={0,0,127})); + connect(TColWat.y, bui.TColWat) annotation (Line(points={{-138,160},{-40,160}, + {-40,164},{-8,164},{-8,168}}, color={0,0,127})); + annotation ( + Diagram( + coordinateSystem(preserveAspectRatio=false, extent={{-360,-260},{360,260}})), + __Dymola_Commands( + file="modelica://Buildings/Resources/Scripts/Dymola/Experimental/DHC/Examples/Combined/SeriesConstantFlow.mos" + "Simulate and plot"), + experiment( + StopTime=31536000, + Interval=300, + Tolerance=1e-06, + __Dymola_Algorithm="Dassl"), + Documentation(info=" +

+This is a model of a so-called \"reservoir network\" (Sommer 2020), i.e., a fifth +generation district system with unidirectional mass flow rate in the +district loop, and energy transfer stations connected in series. +In this model, the temperature of the district loop is stabilized through +the operation of the plant and the borefield. +The main circulation pump has a constant mass flow rate. +Each substation takes water from the main district loop and feeds its return water back +into the main district loop downstream from the intake. +The pipes of the main loop are designed for a pressure drop of +dpDis_length_nominal=250 Pa/m at the design flow rate. +

+

References

+

+Sommer T., Sulzer M., Wetter M., Sotnikov A., Mennel S., Stettler C. +The reservoir network: A new network topology for district heating +and cooling. +Energy, Volume 199, 15 May 2020, 117418. +

+", revisions=" + +"), + __Dymola_experimentSetupOutput); +end district; +{% endraw %} diff --git a/geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_waste_heat_GHX.py b/geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_waste_heat_GHX.py new file mode 100644 index 000000000..b3cd75e22 --- /dev/null +++ b/geojson_modelica_translator/modelica/GMT_Lib/DHC/DHC_5G_waste_heat_GHX.py @@ -0,0 +1,72 @@ +import shutil +from pathlib import Path + +from geojson_modelica_translator.modelica.input_parser import PackageParser +from geojson_modelica_translator.modelica.simple_gmt_base import SimpleGMTBase +from geojson_modelica_translator.scaffold import Scaffold + + +class DHC5GWasteHeatAndGHX(SimpleGMTBase): + """Generates a full Modelica package with the DHC 5G waste heat and GHX model.""" + + def __init__(self, system_parameters): + self.system_parameters = system_parameters + self.template_dir = Path(__file__).parent + super().__init__(self.system_parameters, self.template_dir) + + def build_from_template(self, output_dir: Path, project_name: str) -> None: + """This is a bit past being a simple template as it is exporting an entire scaffolded package + that can be loaded and simulated in Modelica. The scaffold is very specific to DES. + + Args: + output_dir (Path): directory to save the package to (without the project name) + project_name (str, optional): The name of the project which is used in the Scaffold object. + """ + template_data = { + 'project_name': project_name, + 'save_file_name': 'district', + 'building_load_files': [] + } + + # create the directory structure + scaffold = Scaffold(output_dir, project_name=project_name) + scaffold.create(ignore_paths=['Loads', 'Networks', 'Plants', 'Substations']) + + # create the root package + package = PackageParser.new_from_template(scaffold.project_path, project_name, order=[]) + package.add_model('Districts') + + # create the district package with the template_data from above + files_to_copy = [] + + # 1: grab all of the time series files and place them in the proper location + for building in self.system_parameters.get_param("$.buildings[?load_model=time_series]"): + building_load_file = Path(building['load_model_parameters']['time_series']['filepath']) + + files_to_copy.append({ + "orig_file": building_load_file, + "geojson_id": building['geojson_id'], + "save_path": f"{scaffold.districts_path.resources_dir}/{building['geojson_id']}", + "save_filename": building_load_file.name + }) + + # 2: Copy the files to the appropriate location and ensure uniqueness by putting into a unique directory + # (since openstudio creates all files with modelica.mos) + for file_to_copy in files_to_copy: + # create the path if it doesn't exist + Path(file_to_copy['save_path']).mkdir(parents=True, exist_ok=True) + shutil.copy(file_to_copy['orig_file'], f"{file_to_copy['save_path']}/{file_to_copy['save_filename']}") + + # 3: add the path to the param data with Modelica friendly path names + rel_path_name = f"{project_name}/{scaffold.districts_path.resources_relative_dir}/{file_to_copy['geojson_id']}/{file_to_copy['save_filename']}" + template_data['building_load_files'].append(f"modelica://{rel_path_name}") # type: ignore + + # 4: generate the modelica files from the template + self.to_modelica(output_dir=Path(scaffold.districts_path.files_dir), + model_name='DHC_5G_waste_heat_GHX', + param_data=template_data, + save_file_name='district.mo', + generate_package=True) + + # 4. save the root package.mo + package.save() diff --git a/geojson_modelica_translator/modelica/input_parser.py b/geojson_modelica_translator/modelica/input_parser.py index 94d7f30a1..6fb043dfa 100644 --- a/geojson_modelica_translator/modelica/input_parser.py +++ b/geojson_modelica_translator/modelica/input_parser.py @@ -2,6 +2,8 @@ # See also https://github.com/urbanopt/geojson-modelica-translator/blob/develop/LICENSE.md import os +from pathlib import Path +from typing import Union from jinja2 import Environment, FileSystemLoader @@ -36,15 +38,18 @@ class method. self.template_env.filters.update(ALL_CUSTOM_FILTERS) @classmethod - def new_from_template(cls, path, name, order, within=None): - """ - Create new package data based on the package.mo template. If within is not specified, then it is + def new_from_template(cls, path: Union[str, Path], name: str, order: list[str], within: str = None) -> "PackageParser": + """Create new package data based on the package.mo template. If within is not specified, then it is assumed that this is a top level package and will load from the package_base template. - :param path: string, the path where the resulting files will be saved to. - :param name: string, the name of the model - :param order: list, ordered list of which models will be loaded (saved to package.order) - :param within: string, (optional), name where this package is within. + Args: + path (str): the path where the resulting package file and order will be saved to. + name (str): the name of the model + order (list[str]): ordered list of which models will be loaded (saved to package.order) + within (str, optional): name where this package is within.. Defaults to None. + + Returns: + PackageParser: object of the package parser """ klass = PackageParser(path) if within: diff --git a/geojson_modelica_translator/modelica/lib/runner/fmu_runner.py b/geojson_modelica_translator/modelica/lib/runner/fmu_runner.py index abbb2889a..157a6e9ed 100644 --- a/geojson_modelica_translator/modelica/lib/runner/fmu_runner.py +++ b/geojson_modelica_translator/modelica/lib/runner/fmu_runner.py @@ -108,12 +108,12 @@ def _get_var_metadata(self, fmu, var_list: List[str], inputs: bool = False) -> d return var_metadata - def _get_sim_options(self) -> List[dict]: + def _get_sim_options(self) -> tuple[dict, dict]: """render the sim options as needed for the .fmu.simulate command. This returns a list, the first element are the options to flatten/pass to the call, and the second are the sim options Returns: - List[dict, dict]: named_args, sim_options + tuple[dict, dict]: named_args, sim_options """ # first determine the simulate methods' named options named_args = {} @@ -129,13 +129,6 @@ def _get_sim_options(self) -> List[dict]: sim_options['initialize'] = True return named_args, sim_options - def advance(self) -> dict: - """Advances the test case model simulation forward one step. - - Returns: - dict: Contains the measurement data at the end of the step. - """ - def run(self): """Run the FMU from start to stop with step interval""" logger.info(f"Running FMU Model {self.fmu_path} with start: {self.start_time} stop: {self.stop_time} step: {self.step}") diff --git a/geojson_modelica_translator/modelica/lib/runner/spawn.py b/geojson_modelica_translator/modelica/lib/runner/spawn.py index 6c425c25a..75a9920f5 100644 --- a/geojson_modelica_translator/modelica/lib/runner/spawn.py +++ b/geojson_modelica_translator/modelica/lib/runner/spawn.py @@ -79,7 +79,7 @@ def run(fmu_name, start: Optional[int], stop: Optional[int], step: Optional[int] logger.info(f'args: {args}') if args.action == 'help': - print(parser.print_help()) + print(parser.print_help()) # type: ignore fmu_name = None if args.action == 'compile' or args.action == 'compile_and_run': diff --git a/geojson_modelica_translator/modelica/modelica_runner.py b/geojson_modelica_translator/modelica/modelica_runner.py index c4372d106..0dabeb867 100644 --- a/geojson_modelica_translator/modelica/modelica_runner.py +++ b/geojson_modelica_translator/modelica/modelica_runner.py @@ -5,7 +5,6 @@ import os import shutil import subprocess -from ast import Str from glob import glob from pathlib import Path from typing import Union @@ -49,7 +48,7 @@ def __init__(self, modelica_lib_path=None): r = subprocess.call(['docker', 'ps'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) self.docker_configured = r == 0 - def _verify_docker_run_capability(self, file_to_run): + def _verify_docker_run_capability(self, file_to_run: Union[str, Path]): if not self.docker_configured: raise SystemExit('Docker not configured on host computer, unable to run') @@ -59,23 +58,34 @@ def _verify_docker_run_capability(self, file_to_run): if not os.path.isfile(file_to_run): raise SystemExit(f'Expecting to run a file, not a folder in {file_to_run}') - def _verify_run_path_for_docker(self, run_path: Str, file_to_run: Str) -> Path: - """if there is no run_path, then run it in the same directory as the + def _verify_run_path_for_docker(self, run_path: Union[str, Path, None], file_to_run: Union[str, Path]) -> Path: + """If there is no run_path, then run it in the same directory as the file being run. This works fine for simple Modelica projects but typically the run_path needs to be a few levels higher in order to include other project dependencies (e.g., multiple mo files). + + Args: + run_path (str): directory of where to run the simulation + file_to_run (str): the name of the file to run. This should be the fully + qualified path to the file. + + Raises: + SystemExit: Throw an exception if the run_path or file_to_run has spaces in it + + Returns: + Path: Return the run_path as a Path object """ if not run_path: run_path = os.path.dirname(file_to_run) - run_path = Path(run_path) + new_run_path = Path(run_path) # Modelica can't handle spaces in project name or path - if (len(str(run_path).split()) > 1) or (len(str(file_to_run).split()) > 1): + if (len(str(new_run_path).split()) > 1) or (len(str(file_to_run).split()) > 1): raise SystemExit( f"\nModelica does not support spaces in project names or paths. " - f"You used '{run_path}' for run path and {file_to_run} for model project name. " + f"You used '{new_run_path}' for run path and {file_to_run} for model project name. " "Please update your directory path or model name to not include spaces anywhere.") - return run_path + return new_run_path def _copy_over_docker_resources(self, run_path: Path) -> None: """Copy over ipython and jmodelica needed to run the simulation @@ -84,14 +94,21 @@ def _copy_over_docker_resources(self, run_path: Path) -> None: shutil.copyfile(self.spawn_docker_path, new_spawn_docker) os.chmod(new_spawn_docker, 0o775) - def _subprocess_call_to_docker(self, run_path: Path, file_to_run: Str, action: Str, compiler: Str = 'optimica') -> int: + def _subprocess_call_to_docker(self, run_path: Union[str, Path], file_to_run: Union[str, Path], action: str, compiler: str = 'openmodelica') -> int: """Call out to a subprocess to run the command in docker - :param file_to_run: string, name of the file or directory to simulate - :param run_path: string, location where the Modelica simulatio or compilation will start - :param action: string, action to run either compile_and_run, compile, or run - :param compiler: string, compiler to use - :returns: int, exit code of the subprocess + Args: + run_path (Path): name of the file or directory to simulate + file_to_run (str): location where the Modelica simulatio or compilation will start + action (str): action to run either compile_and_run, compile, or run + compiler (str, optional): compiler to use, choose from 'optimica' and 'openmodelica'. Defaults to 'openmodelica'. + + Raises: + SystemExit: Invalid action, should be of type compile_and_run, compile, or run + SystemExit: Invaild compiler, should be of type optimica or openmodelica + + Returns: + int: exit code of the subprocess """ action_log_map = { 'compile_and_run': 'Compiling mo file and running FMU', @@ -102,7 +119,7 @@ def _subprocess_call_to_docker(self, run_path: Path, file_to_run: Str, action: S if action not in action_log_map: raise SystemExit(f'Invalid action {action}, must be one of {list(action_log_map.keys())}') - valid_compilers = ['optimica'] # , 'jmodelica', 'openmodelica' + valid_compilers = ['optimica', 'openmodelica'] # 'jmodelica', if compiler not in valid_compilers: raise SystemExit( f'Invalid compiler {compiler} in _subprocess_call_to_docker, needs to be one of {valid_compilers}' @@ -123,7 +140,7 @@ def _subprocess_call_to_docker(self, run_path: Path, file_to_run: Str, action: S exec_call = ['./spawn_docker.sh', action, run_model, run_path, compiler] logger.debug(f"Calling {exec_call}") p = subprocess.Popen( - exec_call, + exec_call, # type: ignore stdout=stdout_log, stderr=subprocess.STDOUT, cwd=run_path @@ -137,93 +154,100 @@ def _subprocess_call_to_docker(self, run_path: Path, file_to_run: Str, action: S return exitcode - def run_in_docker(self, file_to_run: Str, run_path: Str = None, project_name: Str = None) -> Union[bool, str]: - """ - Run the Modelica project in a docker-based environment. Results are saved into the path of the + def run_in_docker(self, file_to_run: Union[str, Path], run_path: Union[str, Path, None] = None, project_name: Union[str, None] = None) -> tuple[bool, Union[str, Path]]: + """ Run the Modelica project in a docker-based environment. Results are saved into the path of the file that was selected to run. stdout.log will store both stdout and stderr of the simulations - :param file_to_run: string, name of the file (could be directory?) to simulate - :param run_path: string, location where the Modelica simulation will start - :param project_name: string, name of the project being simulated. Will be used to determine name of results directory - :returns: tuple(bool, str), success status and path to the results directory + Args: + file_to_run (str, Path): name of the file (could be directory?) to simulate + run_path (str, optional): location where the Modelica simulation will start. Defaults to None. + project_name (str, optional): name of the project being simulated. Will be used to determine name + of results directory. Defaults to None. + + Returns: + tuple[bool, str]: success status and path to the results directory """ self._verify_docker_run_capability(file_to_run) - run_path = self._verify_run_path_for_docker(run_path, file_to_run) + verified_run_path = self._verify_run_path_for_docker(run_path, file_to_run) if not project_name: project_name = os.path.splitext(os.path.basename(file_to_run))[0] - self._copy_over_docker_resources(run_path) + self._copy_over_docker_resources(verified_run_path) - exitcode = self._subprocess_call_to_docker(run_path, file_to_run, 'compile_and_run') + exitcode = self._subprocess_call_to_docker(verified_run_path, file_to_run, 'compile_and_run') logger.debug('removing temporary files') # Cleanup all of the temporary files that get created - self._cleanup_path(run_path) + self._cleanup_path(verified_run_path) logger.debug('moving results to results directory') # get the location of the results path - results_path = Path(run_path / f'{project_name}_results') - self.move_results(run_path, results_path, project_name) + results_path = Path(verified_run_path / f'{project_name}_results') + self.move_results(verified_run_path, results_path, project_name) return (exitcode == 0, results_path) - def compile_in_docker(self, file_to_run: Str, save_path: Str = None) -> bool: + def compile_in_docker(self, file_to_run: str, save_path: Union[str, Path, None] = None) -> bool: """Build/compile the Modelica project in a docker-based environment using JModelica. The resulting FMU is saved to the save_path. stdout.log will store both stdout and stderr of the simulations - :param file_to_run: string, name of the file (could be directory?) to simulate - :param run_psave_pathath: string, location where the Modelica FMU will be saved - :returns: bool, success status + Args: + file_to_run (str): name of the file (could be directory?) to simulate + save_path (str, optional): location where the Modelica FMU will be saved. Defaults to None. + + Returns: + bool: success status """ self._verify_docker_run_capability(file_to_run) - save_path = self._verify_run_path_for_docker(save_path, file_to_run) + verified_save_path = self._verify_run_path_for_docker(save_path, file_to_run) - self._copy_over_docker_resources(save_path) + self._copy_over_docker_resources(verified_save_path) - exitcode = self._subprocess_call_to_docker(save_path, file_to_run, 'compile') + exitcode = self._subprocess_call_to_docker(verified_save_path, file_to_run, 'compile') # Cleanup all of the temporary files that get created logger.debug('removing temporary files') - self._cleanup_path(save_path) + self._cleanup_path(verified_save_path) logger.debug('moving results to results directory') return exitcode == 0 - def run_fmu_in_docker(self, file_to_run: Str, run_path: Str = None): + def run_fmu_in_docker(self, file_to_run: str, run_path: Union[str, None] = None) -> tuple[bool, Union[str, Path]]: """Run the FMU in a docker-based environment. Results are saved into the path of the file that was selected to run. stdout.log will store both stdout and stderr of the simulations - :param file_to_run: string, name of the file (could be directory?) to simulate - :param run_path: string, location where the Modelica simulation will start - :param project_name: string, name of the project being simulated. Will be used to determine name of results - directory - :return: tuple(bool, str), success status and path to the results directory + Args: + file_to_run (str): name of the file (could be directory?) to simulate + run_path (str, optional): location where the Modelica simulation will start. Defaults to None. + + Returns: + tuple[bool, str]: success status and path to the results directory """ self._verify_docker_run_capability(file_to_run) - run_path = self._verify_run_path_for_docker(run_path, file_to_run) + verified_run_path = self._verify_run_path_for_docker(run_path, file_to_run) project_name = os.path.splitext(os.path.basename(file_to_run))[0] - self._copy_over_docker_resources(run_path) + self._copy_over_docker_resources(verified_run_path) - exitcode = self._subprocess_call_to_docker(run_path, file_to_run, 'run') + exitcode = self._subprocess_call_to_docker(verified_run_path, file_to_run, 'run') logger.debug('removing temporary files') # Cleanup all of the temporary files that get created - self._cleanup_path(run_path) + self._cleanup_path(verified_run_path) logger.debug('moving results to results directory') # get the location of the results path - results_path = Path(run_path / f'{project_name}_results') - self.move_results(run_path, results_path, project_name) + results_path = Path(verified_run_path / f'{project_name}_results') + self.move_results(verified_run_path, results_path, project_name) return (exitcode == 0, results_path) - def move_results(self, from_path: Path, to_path: Path, project_name: Str = None) -> None: + def move_results(self, from_path: Path, to_path: Path, project_name: str = None) -> None: """This method moves the results of the simulation that are known for now. This method moves only specific files (stdout.log for now), plus all files and folders beginning with the "{project_name}_" name. diff --git a/geojson_modelica_translator/modelica/simple_gmt_base.py b/geojson_modelica_translator/modelica/simple_gmt_base.py index 0f5e51ec0..38f3934b2 100644 --- a/geojson_modelica_translator/modelica/simple_gmt_base.py +++ b/geojson_modelica_translator/modelica/simple_gmt_base.py @@ -4,6 +4,7 @@ from pathlib import Path from geojson_modelica_translator.model_connectors.model_base import ModelBase +from geojson_modelica_translator.modelica.input_parser import PackageParser class SimpleGMTBase(ModelBase): @@ -15,15 +16,44 @@ def __init__(self, system_parameters, template_dir): """ super().__init__(system_parameters, template_dir) - def to_modelica(self, output_dir: Path, model_name: str, param_data: dict, iteration='') -> None: - """ - Render the template to a Modelica file. + def to_modelica(self, output_dir: Path, model_name: str, param_data: dict, iteration=None, + save_file_name=None, generate_package=False) -> None: + """Render the template to a Modelica file. + + Args: + output_dir (Path): Directory to save the resulting template (modelica file) to. + model_name (str): Model to render and also the name of the saved file (if save_file_name is None). + param_data (dict): Data to pass to the rendering template. + iteration (Int, optional): If dynamically creating filenames, then this is the iteration to + be appended to the filename. Defaults to None. + save_file_name (Str, optional): Name that the file will be saved as, if None, then will default. + Do not include the directory, only the filename (with extension). + Defaults to None. + generate_package (bool, optional): If True, then a package.mo and package.order file will be created + alongside the rendered template (Modelica) file. Defaults to False. """ # render template to final modelica file model_template = self.template_env.get_template(f"{model_name}.mot") + + # If the user passes in save_file_name, then use that name instead of trying + # to figure out the name. + if not save_file_name: + if iteration is not None or iteration == '': + save_file_name = output_dir / f"{model_name}{iteration}.mo" + else: + save_file_name = output_dir / f"{model_name}.mo" + else: + save_file_name = output_dir / save_file_name + self.run_template( template=model_template, - save_file_name=output_dir / f"{model_name}{iteration}.mo", + save_file_name=save_file_name, project_name=output_dir.stem, data=param_data ) + + # include package.mo and package.order files if requested. + # TODO: This will need to be updated to support multiple models in the "order". + if generate_package: + package = PackageParser.new_from_template(str(output_dir), output_dir.stem, order=[save_file_name.stem], within=output_dir.parent.stem) + package.save() diff --git a/geojson_modelica_translator/scaffold.py b/geojson_modelica_translator/scaffold.py index 611a17301..00c73eb25 100644 --- a/geojson_modelica_translator/scaffold.py +++ b/geojson_modelica_translator/scaffold.py @@ -48,15 +48,34 @@ def __init__(self, root_dir, project_name, overwrite=False): else: shutil.rmtree(self.project_path) - def create(self): - """run the scaffolding""" + def create(self, ignore_paths=[]): + """run the scaffolding to create the directory structure for DES systems + + Args: + ignore_paths (list, optional): List of paths NOT to create. Choose from Loads, Substations, Plants, Districts, Networks. Defaults to []. + """ + # initialize all of path objects + self.loads_path = None + self.substations_path = None + self.plants_path = None + self.districts_path = None + self.networks_path = None # leverage the ModelicaPath function - self.loads_path = ModelicaPath("Loads", root_dir=self.project_path, overwrite=self.overwrite) - self.substations_path = ModelicaPath("Substations", root_dir=self.project_path, overwrite=self.overwrite) - self.plants_path = ModelicaPath("Plants", root_dir=self.project_path, overwrite=self.overwrite) - self.districts_path = ModelicaPath("Districts", root_dir=self.project_path, overwrite=self.overwrite) - self.networks_path = ModelicaPath("Networks", root_dir=self.project_path, overwrite=self.overwrite) + if 'Loads' not in ignore_paths: + self.loads_path = ModelicaPath("Loads", root_dir=self.project_path, overwrite=self.overwrite) + + if 'Substations' not in ignore_paths: + self.substations_path = ModelicaPath("Substations", root_dir=self.project_path, overwrite=self.overwrite) + + if 'Plants' not in ignore_paths: + self.plants_path = ModelicaPath("Plants", root_dir=self.project_path, overwrite=self.overwrite) + + if 'Districts' not in ignore_paths: + self.districts_path = ModelicaPath("Districts", root_dir=self.project_path, overwrite=self.overwrite) + + if 'Networks' not in ignore_paths: + self.networks_path = ModelicaPath("Networks", root_dir=self.project_path, overwrite=self.overwrite) def clear_or_create_path(self, path, overwrite=False): if os.path.exists(path): diff --git a/geojson_modelica_translator/system_parameters/system_parameters.py b/geojson_modelica_translator/system_parameters/system_parameters.py index b1b2e0784..7e3af3993 100644 --- a/geojson_modelica_translator/system_parameters/system_parameters.py +++ b/geojson_modelica_translator/system_parameters/system_parameters.py @@ -6,11 +6,12 @@ import os from copy import deepcopy from pathlib import Path +from typing import Union import pandas as pd import requests from jsonpath_ng.ext import parse -from jsonschema.validators import _LATEST_VERSION as LatestValidator +from jsonschema.validators import Draft202012Validator as LatestValidator logger = logging.getLogger(__name__) logging.basicConfig( @@ -45,13 +46,13 @@ def __init__(self, filename=None): # load the schema for validation schema = Path(__file__).parent / "schema.json" self.schema = json.loads(schema.read_text()) - self.data = {} + self.param_template = {} self.filename = filename if self.filename: if Path(self.filename).is_file(): with open(self.filename, "r") as f: - self.data = json.load(f) + self.param_template = json.load(f) else: raise Exception(f"System design parameters file does not exist: {self.filename}") @@ -61,7 +62,6 @@ def __init__(self, filename=None): self.resolve_paths() - self.param_template = {} self.sys_param_filename = None @classmethod @@ -73,7 +73,7 @@ def loadd(cls, d, validate_on_load=True): :return: object, SystemParameters """ sp = cls() - sp.data = d + sp.param_template = d if validate_on_load: errors = sp.validate() @@ -84,16 +84,16 @@ def loadd(cls, d, validate_on_load=True): def resolve_paths(self): """Resolve the paths in the file to be absolute if they were defined as relative. This method uses - the JSONPath (with ext) to find if the value exists in the self.data object. If so, it then uses + the JSONPath (with ext) to find if the value exists in the self.param_template object. If so, it then uses the set_param which navigates the JSON tree to set the value as needed.""" filepath = Path(self.filename).parent.resolve() for pe in self.PATH_ELEMENTS: - matches = parse(pe["json_path"]).find(self.data) + matches = parse(pe["json_path"]).find(self.param_template) for index, match in enumerate(matches): # print(f"Index {index} to update match {match.path} | {match.value} | {match.context}") new_path = Path(filepath) / match.value - parse(str(match.full_path)).update(self.data, new_path.as_posix()) + parse(str(match.full_path)).update(self.param_template, new_path.as_posix()) # def resolve_defaults(self): # """This method will expand the default data blocks into all the subsequent custom sections. If the value is @@ -125,7 +125,7 @@ def get_param(self, jsonpath, data=None, default=None, impute_default=True): return None # If this is the first entry into the method, then set the data to the - data = data or self.data + data = data or self.param_template matches = parse(jsonpath).find(data) default_value = default @@ -160,7 +160,7 @@ def get_param_by_building_id(self, building_id, jsonpath): :return: variant, the value from the data """ - for b in self.data.get("buildings", []): + for b in self.param_template.get("buildings", []): if b.get("geojson_id", None) == building_id: return self.get_param(jsonpath, data=b) else: @@ -175,12 +175,12 @@ def validate(self): """ results = [] v = LatestValidator(self.schema) - for error in sorted(v.iter_errors(self.data), key=str): + for error in sorted(v.iter_errors(self.param_template), key=str): results.append(error.message) return results - def download_weatherfile(self, filename, save_directory: str) -> str: + def download_weatherfile(self, filename, save_directory: str) -> Union[str, Path]: """Download the MOS or EPW weather file from energyplus.net This routine downloads the weather file, either an MOS or EPW, which is selected based @@ -825,7 +825,7 @@ def csv_to_sys_param(self, raise SystemExit(f"\nError: No scenario_optimization.json file found in {scenario_dir}\n" "Perhaps you haven't run REopt post-processing step in the UO sdk?") - # save + # save the file to disk self.save() def save(self): diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 000000000..17988533f --- /dev/null +++ b/mypy.ini @@ -0,0 +1,8 @@ +[mypy] +ignore_missing_imports = True +no_implicit_optional = False +disable_error_code = str-bytes-safe + +exclude = (?x)( + ^docs/conf.py$ + ) diff --git a/poetry.lock b/poetry.lock index 6759f9e6b..364094215 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.4.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. [[package]] name = "alabaster" @@ -25,22 +25,22 @@ files = [ [[package]] name = "attrs" -version = "22.2.0" +version = "23.1.0" description = "Classes Without Boilerplate" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "attrs-22.2.0-py3-none-any.whl", hash = "sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836"}, - {file = "attrs-22.2.0.tar.gz", hash = "sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99"}, + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, ] [package.extras] -cov = ["attrs[tests]", "coverage-enable-subprocess", "coverage[toml] (>=5.3)"] -dev = ["attrs[docs,tests]"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope.interface"] -tests = ["attrs[tests-no-zope]", "zope.interface"] -tests-no-zope = ["cloudpickle", "cloudpickle", "hypothesis", "hypothesis", "mypy (>=0.971,<0.990)", "mypy (>=0.971,<0.990)", "pympler", "pympler", "pytest (>=4.3.0)", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-mypy-plugins", "pytest-xdist[psutil]", "pytest-xdist[psutil]"] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] [[package]] name = "autopep8" @@ -496,19 +496,19 @@ test = ["pytest (>=6)"] [[package]] name = "filelock" -version = "3.11.0" +version = "3.12.0" description = "A platform independent file lock." category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "filelock-3.11.0-py3-none-any.whl", hash = "sha256:f08a52314748335c6460fc8fe40cd5638b85001225db78c2aa01c8c0db83b318"}, - {file = "filelock-3.11.0.tar.gz", hash = "sha256:3618c0da67adcc0506b015fd11ef7faf1b493f0b40d87728e19986b536890c37"}, + {file = "filelock-3.12.0-py3-none-any.whl", hash = "sha256:ad98852315c2ab702aeb628412cbf7e95b7ce8c3bf9565670b4eaecf1db370a9"}, + {file = "filelock-3.12.0.tar.gz", hash = "sha256:fc03ae43288c013d2ea83c8597001b1129db351aad9c57fe2409327916b8e718"}, ] [package.extras] -docs = ["furo (>=2023.3.27)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.2.2)", "diff-cover (>=7.5)", "pytest (>=7.2.2)", "pytest-cov (>=4)", "pytest-mock (>=3.10)", "pytest-timeout (>=2.1)"] +docs = ["furo (>=2023.3.27)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "diff-cover (>=7.5)", "pytest (>=7.3.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)", "pytest-timeout (>=2.1)"] [[package]] name = "fonttools" @@ -619,14 +619,14 @@ files = [ [[package]] name = "importlib-metadata" -version = "6.3.0" +version = "6.5.0" description = "Read metadata from Python packages" category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "importlib_metadata-6.3.0-py3-none-any.whl", hash = "sha256:8f8bd2af397cf33bd344d35cfe7f489219b7d14fc79a3f854b75b8417e9226b0"}, - {file = "importlib_metadata-6.3.0.tar.gz", hash = "sha256:23c2bcae4762dfb0bbe072d358faec24957901d75b6c4ab11172c0c982532402"}, + {file = "importlib_metadata-6.5.0-py3-none-any.whl", hash = "sha256:03ba783c3a2c69d751b109fc0c94a62c51f581b3d6acf8ed1331b6d5729321ff"}, + {file = "importlib_metadata-6.5.0.tar.gz", hash = "sha256:7a8bdf1bc3a726297f5cfbc999e6e7ff6b4fa41b26bba4afc580448624460045"}, ] [package.dependencies] @@ -1333,14 +1333,14 @@ six = ">=1.11" [[package]] name = "pygments" -version = "2.15.0" +version = "2.15.1" description = "Pygments is a syntax highlighting package written in Python." category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "Pygments-2.15.0-py3-none-any.whl", hash = "sha256:77a3299119af881904cd5ecd1ac6a66214b6e9bed1f2db16993b54adede64094"}, - {file = "Pygments-2.15.0.tar.gz", hash = "sha256:f7e36cffc4c517fbc252861b9a6e4644ca0e5abadf9a113c72d1358ad09b9500"}, + {file = "Pygments-2.15.1-py3-none-any.whl", hash = "sha256:db2db3deb4b4179f399a09054b023b6a586b76499d36965813c71aa8ed7b5fd1"}, + {file = "Pygments-2.15.1.tar.gz", hash = "sha256:8ace4d3c1dd481894b2005f560ead0f9f19ee64fe983366be1a21e171d12775c"}, ] [package.extras] @@ -1400,14 +1400,14 @@ files = [ [[package]] name = "pytest" -version = "7.3.0" +version = "7.3.1" description = "pytest: simple powerful testing with Python" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.3.0-py3-none-any.whl", hash = "sha256:933051fa1bfbd38a21e73c3960cebdad4cf59483ddba7696c48509727e17f201"}, - {file = "pytest-7.3.0.tar.gz", hash = "sha256:58ecc27ebf0ea643ebfdf7fb1249335da761a00c9f955bcd922349bcb68ee57d"}, + {file = "pytest-7.3.1-py3-none-any.whl", hash = "sha256:3799fa815351fea3a5e96ac7e503a96fa51cc9942c3753cda7651b93c1cfa362"}, + {file = "pytest-7.3.1.tar.gz", hash = "sha256:434afafd78b1d78ed0addf160ad2b77a30d35d4bdf8af234fe621919d9ed15e3"}, ] [package.dependencies] @@ -1591,14 +1591,14 @@ test = ["asv", "gmpy2", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeo [[package]] name = "setuptools" -version = "67.6.1" +version = "67.7.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "setuptools-67.6.1-py3-none-any.whl", hash = "sha256:e728ca814a823bf7bf60162daf9db95b93d532948c4c0bea762ce62f60189078"}, - {file = "setuptools-67.6.1.tar.gz", hash = "sha256:257de92a9d50a60b8e22abfcbb771571fde0dbf3ec234463212027a4eeecbe9a"}, + {file = "setuptools-67.7.0-py3-none-any.whl", hash = "sha256:888be97fde8cc3afd60f7784e678fa29ee13c4e5362daa7104a93bba33646c50"}, + {file = "setuptools-67.7.0.tar.gz", hash = "sha256:b7e53a01c6c654d26d2999ee033d8c6125e5fa55f03b7b193f937ae7ac999f22"}, ] [package.extras] @@ -1992,24 +1992,24 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "virtualenv" -version = "20.21.0" +version = "20.22.0" description = "Virtual Python Environment builder" category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "virtualenv-20.21.0-py3-none-any.whl", hash = "sha256:31712f8f2a17bd06234fa97fdf19609e789dd4e3e4bf108c3da71d710651adbc"}, - {file = "virtualenv-20.21.0.tar.gz", hash = "sha256:f50e3e60f990a0757c9b68333c9fdaa72d7188caa417f96af9e52407831a3b68"}, + {file = "virtualenv-20.22.0-py3-none-any.whl", hash = "sha256:48fd3b907b5149c5aab7c23d9790bea4cac6bc6b150af8635febc4cfeab1275a"}, + {file = "virtualenv-20.22.0.tar.gz", hash = "sha256:278753c47aaef1a0f14e6db8a4c5e1e040e90aea654d0fc1dc7e0d8a42616cc3"}, ] [package.dependencies] distlib = ">=0.3.6,<1" -filelock = ">=3.4.1,<4" -platformdirs = ">=2.4,<4" +filelock = ">=3.11,<4" +platformdirs = ">=3.2,<4" [package.extras] -docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=22.12)"] -test = ["covdefaults (>=2.2.2)", "coverage (>=7.1)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23)", "pytest (>=7.2.1)", "pytest-env (>=0.8.1)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.10)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)"] +docs = ["furo (>=2023.3.27)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=22.12)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.3.1)", "pytest-env (>=0.8.1)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.10)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)"] [[package]] name = "zipp" diff --git a/pyproject.toml b/pyproject.toml index 762226b58..5b33232e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/tests/GMT_Lib/test_gmt_lib_des.py b/tests/GMT_Lib/test_gmt_lib_des.py new file mode 100644 index 000000000..e4de88373 --- /dev/null +++ b/tests/GMT_Lib/test_gmt_lib_des.py @@ -0,0 +1,43 @@ +# :copyright (c) URBANopt, Alliance for Sustainable Energy, LLC, and other contributors. +# See also https://github.com/urbanopt/geojson-modelica-translator/blob/develop/LICENSE.md + +from pathlib import Path +from shutil import rmtree + +from jinja2 import Environment, FileSystemLoader, StrictUndefined + +from geojson_modelica_translator.modelica.GMT_Lib.DHC.DHC_5G_waste_heat_GHX import ( + DHC5GWasteHeatAndGHX +) +from geojson_modelica_translator.system_parameters.system_parameters import ( + SystemParameters +) +from geojson_modelica_translator.utils import linecount + +PARENT_DIR = Path(__file__).parent +GMT_LIB_PATH = PARENT_DIR.parent.parent / 'geojson_modelica_translator' / 'modelica' / 'GMT_Lib' +DES_PARAMS = PARENT_DIR.parent / 'data_shared' / 'system_params_des_5g.json' + +env = Environment( + loader=FileSystemLoader(GMT_LIB_PATH), + undefined=StrictUndefined, + variable_start_string='{$', + variable_end_string='$}' +) + + +def test_5G_des_waste_heat_and_ghx(): + # -- Setup + package_output_dir = PARENT_DIR / 'output' + package_name = 'DES_5G' + if (package_output_dir / package_name).exists(): + rmtree(package_output_dir / package_name) + sys_params = SystemParameters(DES_PARAMS) + + # -- Act + cpv = DHC5GWasteHeatAndGHX(sys_params) + cpv.build_from_template(package_output_dir, 'DES_5G') + + # -- Assert + # Did the mofile get created? + assert linecount(package_output_dir / package_name / 'Districts' / 'district.mo') > 20 diff --git a/tests/base_test_case.py b/tests/base_test_case.py index 436259f11..b23eae25c 100644 --- a/tests/base_test_case.py +++ b/tests/base_test_case.py @@ -53,13 +53,13 @@ def compile_and_assert_in_docker(self, file_to_run: str, project_path: Path, pro """ mr = ModelicaRunner() run_path = Path(project_path).parent.resolve() - success, results_path = mr.compile_in_docker(file_to_run, save_path=run_path) + success = mr.compile_in_docker(file_to_run, save_path=run_path) # on the exit of the docker command it should return a zero exit code, otherwise there was an issue. # Look at the stdout.log if this is non-zero. self.assertTrue(success) # make sure that the results log exist - self.assertTrue((Path(results_path) / 'stdout.log').exists()) + self.assertTrue((Path(run_path) / 'stdout.log').exists()) def run_and_assert_in_docker(self, file_to_run: str, project_path: Path, project_name: str): """Run the test in docker. diff --git a/tests/data_shared/B11.mos b/tests/data_shared/B11.mos new file mode 100644 index 000000000..e9cabeb18 --- /dev/null +++ b/tests/data_shared/B11.mos @@ -0,0 +1,8777 @@ +#1 +#Heating and Cooling Model loads from OpenStudio Prototype Buildings +# Building Type: {{BUILDINGTYPE}} +# Climate Zone: {{CLIMATEZONE}} +# Vintage: {{VINTAGE}} +# Simulation ID (for debugging): {{SIMID}} +# URL: https://github.com/urbanopt/openstudio-prototype-loads + +#First column: Seconds in the year (loads are hourly) +#Second column: cooling loads in Watts (as negative numbers). +#Third column: space heating loads in Watts +#Fourth column: water heating in Watts + +#Peak space cooling load = -190637.4 Watts +#Peak space heating load = 77145.0 Watts +#Peak water heating load = 5000 Watts +double tab1(8760,4) +3600;0;0;0.0 +7200;0;0;0.0 +10800;0;0;0.0 +14400;0;0;0.0 +18000;0;20560.2;0.0 +21600;0;16819.2;0.0 +25200;0;14069.4;0.0 +28800;-1545.4;115.7;0.0 +32400;0;0;0.0 +36000;0;3530.6;0.0 +39600;0;2777.6;0.0 +43200;0;70.5;0.0 +46800;-2532.7;0;0.0 +50400;-1842.7;0;0.0 +54000;0;0;0.0 +57600;0;826.4;0.0 +61200;0;66.2;0.0 +64800;-1367.0;0;0.0 +68400;-3360.8;0;0.0 +72000;-17710.2;0;0.0 +75600;-11900.9;0;0.0 +79200;0;0;0.0 +82800;0;7452.7;0.0 +86400;0;8786.0;0.0 +90000;0;0;0.0 +93600;0;0;0.0 +97200;0;0;0.0 +100800;0;0;0.0 +104400;0;27407.0;0.0 +108000;0;21270.6;0.0 +111600;0;16699.8;0.0 +115200;-1430.6;5164.8;0.0 +118800;0;2381.8;0.0 +122400;-3122.4;857.5;0.0 +126000;0;4549.0;0.0 +129600;-3936.7;0;0.0 +133200;-22188.6;0;0.0 +136800;-6233.5;0;0.0 +140400;-4157.2;0;0.0 +144000;0;1095.2;0.0 +147600;0;334.6;0.0 +151200;-2885.7;0;0.0 +154800;-21446.9;0;0.0 +158400;-29051.8;0;0.0 +162000;-20422.9;0;0.0 +165600;-1485.2;0;0.0 +169200;0;1124.1;0.0 +172800;0;7564.0;0.0 +176400;0;274.4;0.0 +180000;0;0;0.0 +183600;0;0;0.0 +187200;0;0;0.0 +190800;0;33489.4;0.0 +194400;0;24264.3;0.0 +198000;-453.8;19624.1;0.0 +201600;-1487.8;7966.0;0.0 +205200;0;3483.0;0.0 +208800;-3952.6;5348.1;0.0 +212400;0;9043.5;0.0 +216000;-3743.8;0;0.0 +219600;-30496.8;0;0.0 +223200;-23397.6;0;0.0 +226800;0;1325.7;0.0 +230400;0;6225.5;0.0 +234000;0;5412.0;0.0 +237600;-11240.7;0;0.0 +241200;-29600.8;0;0.0 +244800;-29494.9;0;0.0 +248400;-29011.1;0;0.0 +252000;-1661.8;0;0.0 +255600;0;4312.2;0.0 +259200;0;11994.5;0.0 +262800;0;2786.1;0.0 +266400;0;0;0.0 +270000;0;0;0.0 +273600;0;0;0.0 +277200;0;41270.6;0.0 +280800;0;31832.9;0.0 +284400;-653.9;27653.7;0.0 +288000;-1027.8;14854.7;0.0 +291600;0;9155.1;0.0 +295200;-4256.4;5942.8;0.0 +298800;0;9303.6;0.0 +302400;-3804.0;2892.9;0.0 +306000;-22474.2;0;0.0 +309600;-13720.4;0;0.0 +313200;0;3136.1;0.0 +316800;0;7049.1;0.0 +320400;0;7224.6;0.0 +324000;-9870.7;2657.5;0.0 +327600;-28809.2;0;0.0 +331200;-27697.4;0;0.0 +334800;-27031.4;0;0.0 +338400;-1789.6;1681.6;0.0 +342000;0;6626.3;0.0 +345600;0;13411.2;0.0 +349200;0;2753.0;0.0 +352800;0;0;0.0 +356400;0;0;0.0 +360000;0;0;0.0 +363600;0;42049.9;0.0 +367200;0;30601.4;0.0 +370800;-706.0;22384.5;0.0 +374400;-1351.3;10054.7;0.0 +378000;0;8150.4;0.0 +381600;-4213.9;4890.8;0.0 +385200;0;7694.1;0.0 +388800;0;2006.2;0.0 +392400;-22139.0;0;0.0 +396000;-24396.6;0;0.0 +399600;0;1505.7;0.0 +403200;0;4811.4;0.0 +406800;0;3793.8;0.0 +410400;-3112.2;0;0.0 +414000;-30260.2;0;0.0 +417600;-29504.4;0;0.0 +421200;-29094.1;0;0.0 +424800;-1796.8;0;0.0 +428400;0;4046.0;0.0 +432000;0;11512.5;0.0 +435600;0;1668.0;0.0 +439200;0;0;0.0 +442800;0;0;0.0 +446400;0;0;0.0 +450000;0;37550.4;0.0 +453600;0;26127.6;0.0 +457200;-716.5;17004.0;0.0 +460800;-1045.7;11196.4;0.0 +464400;0;6323.2;0.0 +468000;-4315.4;4297.6;0.0 +471600;0;3288.8;0.0 +475200;-5343.3;0;0.0 +478800;-27435.2;0;0.0 +482400;-20154.9;0;0.0 +486000;-955.4;0;0.0 +489600;0;1938.9;0.0 +493200;0;1779.6;0.0 +496800;-3152.4;0;0.0 +500400;-21372.0;0;0.0 +504000;-20311.3;0;0.0 +507600;-20604.6;0;0.0 +511200;-1866.6;0;0.0 +514800;0;3452.4;0.0 +518400;0;8567.5;0.0 +522000;0;502.7;0.0 +525600;0;0;0.0 +529200;0;0;0.0 +532800;0;0;0.0 +536400;0;35858.2;0.0 +540000;0;27460.1;0.0 +543600;0;21545.8;0.0 +547200;-3190.4;4461.6;0.0 +550800;0;6973.8;0.0 +554400;-3582.8;7726.8;0.0 +558000;0;12676.2;0.0 +561600;-2226.5;4600.2;0.0 +565200;-8006.1;3206.1;0.0 +568800;-2884.2;1476.0;0.0 +572400;-1934.9;7677.8;0.0 +576000;-337.6;9704.5;0.0 +579600;-792.9;8412.1;0.0 +583200;-868.2;10822.9;0.0 +586800;-21212.5;0;0.0 +590400;-34142.4;0;0.0 +594000;-19625.2;531.9;0.0 +597600;-16766.1;108.5;0.0 +601200;0;4377.6;0.0 +604800;0;12240.0;0.0 +608400;0;3696.7;0.0 +612000;0;0;0.0 +615600;0;0;0.0 +619200;0;0;0.0 +622800;0;49856.7;0.0 +626400;0;35013.2;0.0 +630000;0;33017.9;0.0 +633600;-1481.7;12082.5;0.0 +637200;0;8355.3;0.0 +640800;0;14027.5;0.0 +644400;0;11306.5;0.0 +648000;0;7519.4;0.0 +651600;0;3049.7;0.0 +655200;-2384.0;2006.3;0.0 +658800;0;5196.2;0.0 +662400;0;10717.3;0.0 +666000;0;9450.0;0.0 +669600;-1721.6;7713.7;0.0 +673200;-11126.0;778.5;0.0 +676800;-16439.7;57.6;0.0 +680400;-19305.3;0;0.0 +684000;0;5609.6;0.0 +687600;0;13339.5;0.0 +691200;0;18298.1;0.0 +694800;0;4010.4;0.0 +698400;0;0;0.0 +702000;0;0;0.0 +705600;0;0;0.0 +709200;0;43825.8;0.0 +712800;0;33048.2;0.0 +716400;-46.8;28886.9;0.0 +720000;-949.6;13383.3;0.0 +723600;0;9176.0;0.0 +727200;-3661.4;7392.4;0.0 +730800;0;12593.0;0.0 +734400;-3381.3;1736.9;0.0 +738000;-28315.3;0;0.0 +741600;-21053.9;205.4;0.0 +745200;-3510.3;3471.2;0.0 +748800;0;10559.6;0.0 +752400;0;10031.5;0.0 +756000;-8709.5;4573.7;0.0 +759600;-27251.3;0;0.0 +763200;0;1219.6;0.0 +766800;-18062.2;0;0.0 +770400;-1474.7;4463.4;0.0 +774000;0;10067.6;0.0 +777600;0;18105.0;0.0 +781200;0;3813.3;0.0 +784800;0;0;0.0 +788400;0;0;0.0 +792000;0;0;0.0 +795600;0;49438.8;0.0 +799200;0;42099.4;0.0 +802800;-541.7;32418.1;0.0 +806400;-1123.3;16220.8;0.0 +810000;0;8154.2;0.0 +813600;0;4821.6;0.0 +817200;0;6771.7;0.0 +820800;-4383.7;0;0.0 +824400;-23737.8;0;0.0 +828000;-15531.1;0;0.0 +831600;0;156.9;0.0 +835200;0;2969.8;0.0 +838800;0;1580.1;0.0 +842400;-2986.4;0;0.0 +846000;-21500.6;0;0.0 +849600;-20703.5;0;0.0 +853200;-19953.8;0;0.0 +856800;0;0;0.0 +860400;0;1808.8;0.0 +864000;0;5655.4;0.0 +867600;0;228.1;0.0 +871200;0;0;0.0 +874800;0;0;0.0 +878400;0;0;0.0 +882000;0;22797.4;0.0 +885600;0;0;0.0 +889200;0;0;0.0 +892800;-2782.8;3544.4;0.0 +896400;0;3745.0;0.0 +900000;-308.3;1725.9;0.0 +903600;0;3212.3;0.0 +907200;-1151.2;0;0.0 +910800;-22607.5;0;0.0 +914400;-19799.0;0;0.0 +918000;0;0;0.0 +921600;0;217.6;0.0 +925200;-251.4;0;0.0 +928800;-12694.5;0;0.0 +932400;-14903.2;0;0.0 +936000;-24353.2;0;0.0 +939600;-22641.7;0;0.0 +943200;0;1274.0;0.0 +946800;0;8621.7;0.0 +950400;0;15770.2;0.0 +954000;0;2771.4;0.0 +957600;0;0;0.0 +961200;0;0;0.0 +964800;0;0;0.0 +968400;0;64516.4;0.0 +972000;-363.8;49476.4;0.0 +975600;-1850.5;36572.1;0.0 +979200;-1346.5;29291.6;0.0 +982800;0;26045.7;0.0 +986400;-4900.3;18381.4;0.0 +990000;0;18472.8;0.0 +993600;0;9800.7;0.0 +997200;-19016.4;2239.4;0.0 +1000800;-22402.3;1508.5;0.0 +1004400;0;5992.0;0.0 +1008000;0;9564.4;0.0 +1011600;0;8918.0;0.0 +1015200;-8995.4;4887.1;0.0 +1018800;-27757.8;167.6;0.0 +1022400;-28123.6;0;0.0 +1026000;-27648.7;0;0.0 +1029600;-1942.8;4039.4;0.0 +1033200;0;5705.9;0.0 +1036800;0;11543.4;0.0 +1040400;0;2075.6;0.0 +1044000;0;0;0.0 +1047600;0;0;0.0 +1051200;0;0;0.0 +1054800;0;35099.1;0.0 +1058400;0;27677.6;0.0 +1062000;-930.6;23702.5;0.0 +1065600;-1242.1;10262.7;0.0 +1069200;0;9489.0;0.0 +1072800;-4438.2;6030.2;0.0 +1076400;0;5212.5;0.0 +1080000;-3989.9;786.3;0.0 +1083600;-22686.3;0;0.0 +1087200;-15938.2;0;0.0 +1090800;0;0;0.0 +1094400;0;1831.6;0.0 +1098000;0;782.2;0.0 +1101600;-3206.0;0;0.0 +1105200;-20989.7;0;0.0 +1108800;-20210.5;0;0.0 +1112400;-29411.0;0;0.0 +1116000;0;0;0.0 +1119600;0;1213.7;0.0 +1123200;0;6345.8;0.0 +1126800;0;59.9;0.0 +1130400;0;0;0.0 +1134000;0;0;0.0 +1137600;0;0;0.0 +1141200;0;22820.5;0.0 +1144800;0;0;0.0 +1148400;0;0;0.0 +1152000;-3568.8;3026.6;0.0 +1155600;0;488.9;0.0 +1159200;-3572.6;284.8;0.0 +1162800;0;2457.5;0.0 +1166400;0;0;0.0 +1170000;-3098.8;0;0.0 +1173600;-2753.3;0;0.0 +1177200;0;0;0.0 +1180800;0;0;0.0 +1184400;0;0;0.0 +1188000;0;0;0.0 +1191600;-7009.5;0;0.0 +1195200;-18818.1;0;0.0 +1198800;0;0;0.0 +1202400;-10662.9;0;0.0 +1206000;0;0;0.0 +1209600;0;0;0.0 +1213200;0;0;0.0 +1216800;0;0;0.0 +1220400;0;0;0.0 +1224000;0;0;0.0 +1227600;0;17465.8;0.0 +1231200;0;16607.9;0.0 +1234800;0;12977.6;0.0 +1238400;-3529.7;0;0.0 +1242000;0;0;0.0 +1245600;0;1998.5;0.0 +1249200;0;1434.4;0.0 +1252800;0;0;0.0 +1256400;-4637.9;0;0.0 +1260000;-2245.6;0;0.0 +1263600;-559.7;0;0.0 +1267200;0;31.0;0.0 +1270800;0;0;0.0 +1274400;0;0;0.0 +1278000;0;0;0.0 +1281600;-9055.3;0;0.0 +1285200;-10746.6;0;0.0 +1288800;0;1483.8;0.0 +1292400;0;4744.1;0.0 +1296000;0;3942.6;0.0 +1299600;0;0;0.0 +1303200;0;0;0.0 +1306800;0;0;0.0 +1310400;0;0;0.0 +1314000;0;21461.5;0.0 +1317600;0;18658.2;0.0 +1321200;-18.9;15368.7;0.0 +1324800;-1598.2;4485.6;0.0 +1328400;0;1469.4;0.0 +1332000;0;1541.9;0.0 +1335600;0;2714.6;0.0 +1339200;0;0;0.0 +1342800;-14518.1;0;0.0 +1346400;-16417.8;0;0.0 +1350000;-212.3;0;0.0 +1353600;0;228.0;0.0 +1357200;0;0;0.0 +1360800;0;0;0.0 +1364400;-13291.1;0;0.0 +1368000;-13721.5;0;0.0 +1371600;-13614.3;0;0.0 +1375200;0;0;0.0 +1378800;0;0;0.0 +1382400;0;1917.9;0.0 +1386000;0;0;0.0 +1389600;0;0;0.0 +1393200;0;0;0.0 +1396800;0;0;0.0 +1400400;0;11663.5;0.0 +1404000;0;0;0.0 +1407600;0;0;0.0 +1411200;-5987.6;263.0;0.0 +1414800;0;16.3;0.0 +1418400;-403.2;0;0.0 +1422000;0;0;0.0 +1425600;0;0;0.0 +1429200;-17745.9;0;0.0 +1432800;-5789.5;0;0.0 +1436400;0;0;0.0 +1440000;0;0;0.0 +1443600;0;0;0.0 +1447200;-649.3;0;0.0 +1450800;-19100.1;0;0.0 +1454400;-22987.6;0;0.0 +1458000;-17120.6;0;0.0 +1461600;-4472.2;0;0.0 +1465200;0;0;0.0 +1468800;0;3584.9;0.0 +1472400;0;0;0.0 +1476000;0;0;0.0 +1479600;0;0;0.0 +1483200;0;0;0.0 +1486800;0;20886.2;0.0 +1490400;0;0;0.0 +1494000;0;0;0.0 +1497600;-3328.2;4836.2;0.0 +1501200;0;4295.1;0.0 +1504800;-4285.4;432.3;0.0 +1508400;0;2988.4;0.0 +1512000;-4869.6;0;0.0 +1515600;-23152.1;0;0.0 +1519200;-7076.2;0;0.0 +1522800;0;0;0.0 +1526400;0;1182.3;0.0 +1530000;0;780.8;0.0 +1533600;-3942.1;0;0.0 +1537200;-22159.7;0;0.0 +1540800;-12622.4;0;0.0 +1544400;-20749.9;0;0.0 +1548000;-2036.3;0;0.0 +1551600;0;1857.1;0.0 +1555200;0;6575.3;0.0 +1558800;0;0;0.0 +1562400;0;0;0.0 +1566000;0;0;0.0 +1569600;0;0;0.0 +1573200;0;27211.1;0.0 +1576800;0;20142.0;0.0 +1580400;-917.7;16054.3;0.0 +1584000;-1988.2;3895.0;0.0 +1587600;0;2378.2;0.0 +1591200;-4216.9;268.9;0.0 +1594800;0;4641.1;0.0 +1598400;-3983.2;0;0.0 +1602000;-22383.4;0;0.0 +1605600;-23738.9;0;0.0 +1609200;0;0;0.0 +1612800;0;2985.7;0.0 +1616400;0;1764.5;0.0 +1620000;-3153.3;0;0.0 +1623600;-28778.6;0;0.0 +1627200;-20428.0;0;0.0 +1630800;-28912.7;0;0.0 +1634400;-1825.9;0;0.0 +1638000;0;829.4;0.0 +1641600;0;7818.6;0.0 +1645200;0;60.9;0.0 +1648800;0;0;0.0 +1652400;0;0;0.0 +1656000;0;0;0.0 +1659600;0;32697.2;0.0 +1663200;0;23594.8;0.0 +1666800;-773.4;18240.2;0.0 +1670400;-1604.7;7588.3;0.0 +1674000;0;4283.7;0.0 +1677600;-4161.4;2710.1;0.0 +1681200;0;5679.1;0.0 +1684800;-3878.7;0;0.0 +1688400;-21576.4;0;0.0 +1692000;-5620.9;0;0.0 +1695600;0;186.0;0.0 +1699200;0;6426.2;0.0 +1702800;0;2240.4;0.0 +1706400;-3636.6;0;0.0 +1710000;-22000.2;0;0.0 +1713600;-28984.8;0;0.0 +1717200;-19025.0;0;0.0 +1720800;-1797.1;38.3;0.0 +1724400;0;5190.2;0.0 +1728000;0;9867.2;0.0 +1731600;0;674.6;0.0 +1735200;0;0;0.0 +1738800;0;0;0.0 +1742400;0;0;0.0 +1746000;0;40031.5;0.0 +1749600;0;29566.7;0.0 +1753200;0;23279.3;0.0 +1756800;-1737.0;6350.0;0.0 +1760400;0;3182.1;0.0 +1764000;-3938.6;3059.9;0.0 +1767600;0;5691.7;0.0 +1771200;-2094.4;342.5;0.0 +1774800;-11342.7;0;0.0 +1778400;0;0;0.0 +1782000;0;2854.8;0.0 +1785600;0;2867.3;0.0 +1789200;0;1912.9;0.0 +1792800;0;1214.3;0.0 +1796400;-14402.9;0;0.0 +1800000;-26082.5;0;0.0 +1803600;-22008.9;0;0.0 +1807200;-18480.1;0;0.0 +1810800;0;0;0.0 +1814400;0;3001.5;0.0 +1818000;0;733.7;0.0 +1821600;0;0;0.0 +1825200;0;0;0.0 +1828800;0;0;0.0 +1832400;0;27468.2;0.0 +1836000;0;23489.3;0.0 +1839600;0;16764.7;0.0 +1843200;-2114.2;3462.7;0.0 +1846800;0;819.5;0.0 +1850400;0;7566.6;0.0 +1854000;0;7743.8;0.0 +1857600;0;1888.8;0.0 +1861200;-2984.4;0;0.0 +1864800;-8894.6;0;0.0 +1868400;0;2257.8;0.0 +1872000;0;0;0.0 +1875600;0;2905.9;0.0 +1879200;0;925.1;0.0 +1882800;-3486.2;0;0.0 +1886400;-17158.8;0;0.0 +1890000;-11374.3;0;0.0 +1893600;0;2337.0;0.0 +1897200;0;8956.3;0.0 +1900800;0;11355.5;0.0 +1904400;0;916.3;0.0 +1908000;0;0;0.0 +1911600;0;0;0.0 +1915200;0;0;0.0 +1918800;0;37664.9;0.0 +1922400;0;29517.9;0.0 +1926000;-12.2;23318.2;0.0 +1929600;-1108.1;12383.3;0.0 +1933200;0;8821.9;0.0 +1936800;0;7260.6;0.0 +1940400;0;10218.7;0.0 +1944000;0;3383.2;0.0 +1947600;-21412.6;0;0.0 +1951200;-20570.4;1073.6;0.0 +1954800;-3579.4;6551.7;0.0 +1958400;0;9970.0;0.0 +1962000;0;10564.4;0.0 +1965600;-9714.8;3290.1;0.0 +1969200;-27550.2;0;0.0 +1972800;-27011.5;0;0.0 +1976400;-25903.7;498.3;0.0 +1980000;-1727.5;7046.5;0.0 +1983600;0;14303.3;0.0 +1987200;0;24669.7;0.0 +1990800;0;6937.6;0.0 +1994400;0;0;0.0 +1998000;0;0;0.0 +2001600;0;0;0.0 +2005200;0;70899.1;0.0 +2008800;0;54867.1;0.0 +2012400;-530.6;41023.5;0.0 +2016000;-997.8;26409.2;0.0 +2019600;0;19292.2;0.0 +2023200;-4247.4;9057.2;0.0 +2026800;0;12973.7;0.0 +2030400;-3929.1;4383.9;0.0 +2034000;-30769.4;0;0.0 +2037600;-22597.4;0;0.0 +2041200;0;1074.2;0.0 +2044800;0;6709.7;0.0 +2048400;0;4774.1;0.0 +2052000;-11414.8;319.3;0.0 +2055600;-30030.9;0;0.0 +2059200;-28816.6;0;0.0 +2062800;-27968.6;0;0.0 +2066400;-1887.2;515.9;0.0 +2070000;0;4346.9;0.0 +2073600;0;10896.2;0.0 +2077200;0;2432.7;0.0 +2080800;0;0;0.0 +2084400;0;0;0.0 +2088000;0;0;0.0 +2091600;0;38031.5;0.0 +2095200;0;30574.8;0.0 +2098800;-671.8;24848.2;0.0 +2102400;-1170.7;12810.8;0.0 +2106000;0;7742.8;0.0 +2109600;-4269.6;5951.3;0.0 +2113200;0;7923.7;0.0 +2116800;-4992.8;0;0.0 +2120400;-22897.1;0;0.0 +2124000;-26920.6;0;0.0 +2127600;-5158.0;0;0.0 +2131200;0;2141.7;0.0 +2134800;0;4326.7;0.0 +2138400;-12510.7;0;0.0 +2142000;-30173.9;0;0.0 +2145600;-29186.7;0;0.0 +2149200;-28544.0;0;0.0 +2152800;-1870.4;672.2;0.0 +2156400;0;7599.6;0.0 +2160000;0;14611.4;0.0 +2163600;0;3303.3;0.0 +2167200;0;0;0.0 +2170800;0;0;0.0 +2174400;0;0;0.0 +2178000;0;50960.2;0.0 +2181600;0;40457.1;0.0 +2185200;-709.6;28691.7;0.0 +2188800;-1352.5;16066.0;0.0 +2192400;0;12329.6;0.0 +2196000;-4215.7;8250.7;0.0 +2199600;0;10740.8;0.0 +2203200;-3889.2;1763.6;0.0 +2206800;-29913.5;0;0.0 +2210400;-22303.4;0;0.0 +2214000;-3909.1;3543.1;0.0 +2217600;0;7908.1;0.0 +2221200;0;7123.8;0.0 +2224800;-10744.2;583.0;0.0 +2228400;-28936.6;0;0.0 +2232000;-28278.3;0;0.0 +2235600;-27990.4;0;0.0 +2239200;-1790.0;0;0.0 +2242800;0;3305.6;0.0 +2246400;0;11001.2;0.0 +2250000;0;1568.9;0.0 +2253600;0;0;0.0 +2257200;0;0;0.0 +2260800;0;0;0.0 +2264400;0;31508.1;0.0 +2268000;0;26242.8;0.0 +2271600;-733.9;20615.6;0.0 +2275200;-1579.1;8183.8;0.0 +2278800;0;4920.7;0.0 +2282400;-4685.8;1326.5;0.0 +2286000;0;3066.9;0.0 +2289600;-5017.8;0;0.0 +2293200;-32165.1;0;0.0 +2296800;-15438.0;0;0.0 +2300400;-4435.1;0;0.0 +2304000;0;3037.0;0.0 +2307600;0;3964.2;0.0 +2311200;-11899.2;0;0.0 +2314800;-29719.0;0;0.0 +2318400;-21454.3;0;0.0 +2322000;-28914.8;0;0.0 +2325600;-1822.5;0;0.0 +2329200;0;6142.8;0.0 +2332800;0;9535.5;0.0 +2336400;0;2000.7;0.0 +2340000;0;0;0.0 +2343600;0;0;0.0 +2347200;0;0;0.0 +2350800;0;43370.3;0.0 +2354400;0;36225.7;0.0 +2358000;0;31455.5;0.0 +2361600;-1449.0;10630.3;0.0 +2365200;0;7003.3;0.0 +2368800;-72.0;6614.0;0.0 +2372400;0;8647.7;0.0 +2376000;-2045.2;3348.9;0.0 +2379600;-3064.0;1042.1;0.0 +2383200;-9027.2;1387.0;0.0 +2386800;0;6134.0;0.0 +2390400;-260.7;6727.6;0.0 +2394000;-714.5;7712.5;0.0 +2397600;-796.4;5798.5;0.0 +2401200;-23197.1;0;0.0 +2404800;-34497.0;0;0.0 +2408400;-21251.5;0;0.0 +2412000;-17407.9;0;0.0 +2415600;0;1860.1;0.0 +2419200;0;12490.8;0.0 +2422800;0;3285.2;0.0 +2426400;0;0;0.0 +2430000;0;0;0.0 +2433600;0;0;0.0 +2437200;0;43001.5;0.0 +2440800;0;34712.4;0.0 +2444400;0;26424.8;0.0 +2448000;-1220.8;11099.8;0.0 +2451600;0;5355.7;0.0 +2455200;0;16779.2;0.0 +2458800;0;11251.7;0.0 +2462400;0;5904.5;0.0 +2466000;-9599.0;1186.7;0.0 +2469600;-7680.9;3594.9;0.0 +2473200;0;5534.0;0.0 +2476800;0;8020.6;0.0 +2480400;0;5924.6;0.0 +2484000;-1696.6;7470.5;0.0 +2487600;-11023.2;1491.2;0.0 +2491200;-16868.8;0;0.0 +2494800;-18810.7;132.2;0.0 +2498400;0;9301.8;0.0 +2502000;0;18471.0;0.0 +2505600;0;16424.6;0.0 +2509200;0;4018.8;0.0 +2512800;0;0;0.0 +2516400;0;0;0.0 +2520000;0;0;0.0 +2523600;0;49941.4;0.0 +2527200;0;36544.6;0.0 +2530800;-10.7;24276.0;0.0 +2534400;-943.8;11698.9;0.0 +2538000;0;10955.4;0.0 +2541600;-3639.2;7602.2;0.0 +2545200;0;11308.4;0.0 +2548800;0;2943.9;0.0 +2552400;-22731.7;0;0.0 +2556000;-4552.5;0;0.0 +2559600;0;3044.8;0.0 +2563200;0;5278.9;0.0 +2566800;0;5744.6;0.0 +2570400;-11324.2;0;0.0 +2574000;-29562.1;0;0.0 +2577600;-28819.6;0;0.0 +2581200;-27744.5;0;0.0 +2584800;-1498.7;984.1;0.0 +2588400;0;5933.9;0.0 +2592000;0;14194.4;0.0 +2595600;0;2767.9;0.0 +2599200;0;0;0.0 +2602800;0;0;0.0 +2606400;0;0;0.0 +2610000;0;40062.7;0.0 +2613600;0;35031.7;0.0 +2617200;-548.7;28384.9;0.0 +2620800;-992.5;13046.7;0.0 +2624400;0;18645.8;0.0 +2628000;-4104.9;9444.6;0.0 +2631600;0;10705.6;0.0 +2635200;-3732.9;3051.4;0.0 +2638800;-28748.2;0;0.0 +2642400;-22899.0;0;0.0 +2646000;-3757.7;3939.9;0.0 +2649600;0;8676.5;0.0 +2653200;0;10028.2;0.0 +2656800;-9890.6;4018.7;0.0 +2660400;-28538.5;0;0.0 +2664000;-27217.1;0;0.0 +2667600;-27051.7;0;0.0 +2671200;-1687.4;2858.3;0.0 +2674800;0;7292.5;0.0 +2678400;0;12851.2;0.0 +2682000;0;1535.2;0.0 +2685600;0;0;0.0 +2689200;0;0;0.0 +2692800;0;0;0.0 +2696400;0;17339.2;0.0 +2700000;0;0;0.0 +2703600;0;0;0.0 +2707200;-5472.4;1290.2;0.0 +2710800;0;879.6;0.0 +2714400;-276.4;6.7;0.0 +2718000;0;2312.8;0.0 +2721600;-5418.5;0;0.0 +2725200;-23845.9;0;0.0 +2728800;-8073.3;0;0.0 +2732400;0;0;0.0 +2736000;0;180.1;0.0 +2739600;0;0;0.0 +2743200;0;0;0.0 +2746800;-21557.9;0;0.0 +2750400;-12605.3;0;0.0 +2754000;-21179.1;0;0.0 +2757600;-1855.7;0;0.0 +2761200;0;49.3;0.0 +2764800;0;6376.7;0.0 +2768400;0;0;0.0 +2772000;0;0;0.0 +2775600;0;0;0.0 +2779200;0;0;0.0 +2782800;0;22989.4;0.0 +2786400;0;17930.6;0.0 +2790000;-769.5;15578.3;0.0 +2793600;-1915.7;4008.4;0.0 +2797200;0;4276.3;0.0 +2800800;-4038.9;978.8;0.0 +2804400;0;4112.1;0.0 +2808000;-4677.0;0;0.0 +2811600;-22951.0;0;0.0 +2815200;-15543.3;0;0.0 +2818800;-4648.4;0;0.0 +2822400;0;2614.6;0.0 +2826000;0;500.9;0.0 +2829600;-11784.1;0;0.0 +2833200;-30167.2;0;0.0 +2836800;-30174.1;0;0.0 +2840400;-30239.4;0;0.0 +2844000;-1719.9;0;0.0 +2847600;0;1010.2;0.0 +2851200;0;7712.0;0.0 +2854800;0;75.4;0.0 +2858400;0;0;0.0 +2862000;0;0;0.0 +2865600;0;0;0.0 +2869200;0;35801.1;0.0 +2872800;0;27597.5;0.0 +2876400;-732.6;23743.3;0.0 +2880000;-1184.0;10580.0;0.0 +2883600;0;9131.7;0.0 +2887200;-4257.8;4347.0;0.0 +2890800;0;5920.9;0.0 +2894400;-3827.2;0;0.0 +2898000;-23574.5;0;0.0 +2901600;-6609.6;0;0.0 +2905200;-4509.5;0;0.0 +2908800;0;2503.1;0.0 +2912400;0;899.9;0.0 +2916000;-3405.2;0;0.0 +2919600;-31275.0;0;0.0 +2923200;-30551.7;0;0.0 +2926800;-29799.8;0;0.0 +2930400;-1805.5;0;0.0 +2934000;0;3565.3;0.0 +2937600;0;9708.7;0.0 +2941200;0;1429.5;0.0 +2944800;0;0;0.0 +2948400;0;0;0.0 +2952000;0;0;0.0 +2955600;0;42005.6;0.0 +2959200;0;34365.3;0.0 +2962800;0;28355.0;0.0 +2966400;-1451.5;9100.6;0.0 +2970000;-2.0;5348.2;0.0 +2973600;-4091.2;5385.1;0.0 +2977200;0;5795.2;0.0 +2980800;0;1005.9;0.0 +2984400;-3056.0;0;0.0 +2988000;-9601.7;241.4;0.0 +2991600;0;1827.9;0.0 +2995200;-253.6;2910.9;0.0 +2998800;0;6485.7;0.0 +3002400;-787.8;5485.2;0.0 +3006000;-22003.9;0;0.0 +3009600;-34873.6;0;0.0 +3013200;-21719.2;0;0.0 +3016800;-17900.0;0;0.0 +3020400;0;1241.3;0.0 +3024000;0;9489.3;0.0 +3027600;0;2928.9;0.0 +3031200;0;0;0.0 +3034800;0;0;0.0 +3038400;0;0;0.0 +3042000;0;43036.3;0.0 +3045600;0;37115.5;0.0 +3049200;0;28789.0;0.0 +3052800;-1055.9;9406.2;0.0 +3056400;-1315.9;4170.5;0.0 +3060000;0;7704.7;0.0 +3063600;0;6018.4;0.0 +3067200;0;2013.2;0.0 +3070800;-11590.6;0;0.0 +3074400;-11587.8;0;0.0 +3078000;0;4188.2;0.0 +3081600;0;8778.6;0.0 +3085200;0;10869.2;0.0 +3088800;-1703.2;9023.5;0.0 +3092400;-9938.4;4596.3;0.0 +3096000;-15095.8;3491.2;0.0 +3099600;-17219.5;3691.5;0.0 +3103200;0;15564.8;0.0 +3106800;0;28511.1;0.0 +3110400;0;32790.7;0.0 +3114000;0;8969.8;0.0 +3117600;0;302.1;0.0 +3121200;0;0;0.0 +3124800;0;32.4;0.0 +3128400;0;73294.4;0.0 +3132000;0;55897.0;0.0 +3135600;-33.4;46524.1;0.0 +3139200;-731.2;32207.8;0.0 +3142800;0;30895.6;0.0 +3146400;-3749.6;32154.3;0.0 +3150000;0;30907.9;0.0 +3153600;-3421.2;17399.2;0.0 +3157200;-25405.6;7222.3;0.0 +3160800;-18117.3;9541.9;0.0 +3164400;-3469.5;12386.1;0.0 +3168000;0;19066.3;0.0 +3171600;0;21671.6;0.0 +3175200;-7317.5;12617.4;0.0 +3178800;-24565.2;7279.5;0.0 +3182400;-25056.7;3976.7;0.0 +3186000;-24922.2;3417.3;0.0 +3189600;-1449.3;14864.4;0.0 +3193200;0;25125.2;0.0 +3196800;0;33311.3;0.0 +3200400;0;7183.4;0.0 +3204000;0;7.0;0.0 +3207600;0;0;0.0 +3211200;0;183.4;0.0 +3214800;0;76288.9;0.0 +3218400;0;59411.1;0.0 +3222000;-554.5;46838.3;0.0 +3225600;-888.1;37840.6;0.0 +3229200;0;28008.4;0.0 +3232800;-4162.9;22871.9;0.0 +3236400;0;28412.9;0.0 +3240000;-3740.1;10185.8;0.0 +3243600;-18916.8;1064.3;0.0 +3247200;-12122.8;973.3;0.0 +3250800;0;3261.9;0.0 +3254400;0;9010.2;0.0 +3258000;0;9660.1;0.0 +3261600;-8556.8;4644.1;0.0 +3265200;-26928.0;349.2;0.0 +3268800;-25826.0;701.2;0.0 +3272400;-24969.0;1298.1;0.0 +3276000;-1751.5;4737.5;0.0 +3279600;0;11778.3;0.0 +3283200;0;24839.3;0.0 +3286800;0;6345.4;0.0 +3290400;0;0;0.0 +3294000;0;0;0.0 +3297600;0;0;0.0 +3301200;0;54908.2;0.0 +3304800;0;44203.1;0.0 +3308400;-675.4;33733.2;0.0 +3312000;-1167.4;18962.4;0.0 +3315600;0;9101.8;0.0 +3319200;0;5806.0;0.0 +3322800;0;9127.9;0.0 +3326400;-314.2;927.8;0.0 +3330000;-28042.2;0;0.0 +3333600;-17206.1;0;0.0 +3337200;0;772.2;0.0 +3340800;0;3516.0;0.0 +3344400;0;3311.6;0.0 +3348000;-3002.2;0;0.0 +3351600;-20723.1;0;0.0 +3355200;-28913.9;0;0.0 +3358800;-28701.9;0;0.0 +3362400;-1690.0;108.5;0.0 +3366000;0;5766.3;0.0 +3369600;0;11719.3;0.0 +3373200;0;3245.6;0.0 +3376800;0;0;0.0 +3380400;0;0;0.0 +3384000;0;0;0.0 +3387600;0;40296.3;0.0 +3391200;0;31250.9;0.0 +3394800;-703.4;21803.5;0.0 +3398400;-1176.3;8504.6;0.0 +3402000;0;4985.3;0.0 +3405600;-4284.3;3140.7;0.0 +3409200;0;8025.8;0.0 +3412800;-3877.7;557.2;0.0 +3416400;-29991.8;0;0.0 +3420000;-5826.4;0;0.0 +3423600;-3849.1;1151.8;0.0 +3427200;0;3967.8;0.0 +3430800;0;3135.6;0.0 +3434400;-3102.5;364.9;0.0 +3438000;-28016.8;0;0.0 +3441600;-26605.1;0;0.0 +3445200;-26532.6;0;0.0 +3448800;0;2706.7;0.0 +3452400;0;7736.7;0.0 +3456000;0;19109.4;0.0 +3459600;0;3506.6;0.0 +3463200;0;0;0.0 +3466800;0;0;0.0 +3470400;0;0;0.0 +3474000;0;44629.9;0.0 +3477600;0;34273.3;0.0 +3481200;-721.0;27208.2;0.0 +3484800;-1180.7;11199.4;0.0 +3488400;0;4813.0;0.0 +3492000;-11.7;2496.3;0.0 +3495600;0;4395.7;0.0 +3499200;0;0;0.0 +3502800;-17824.3;0;0.0 +3506400;-15834.1;0;0.0 +3510000;0;0;0.0 +3513600;0;798.4;0.0 +3517200;0;1927.8;0.0 +3520800;-11829.2;0;0.0 +3524400;-30071.1;0;0.0 +3528000;-30658.5;0;0.0 +3531600;-20154.2;0;0.0 +3535200;-1664.6;0;0.0 +3538800;0;2767.6;0.0 +3542400;0;8506.6;0.0 +3546000;0;1909.0;0.0 +3549600;0;0;0.0 +3553200;0;0;0.0 +3556800;0;0;0.0 +3560400;0;36917.6;0.0 +3564000;0;34149.9;0.0 +3567600;0;28410.4;0.0 +3571200;-1230.2;11130.7;0.0 +3574800;0;6679.0;0.0 +3578400;-4069.8;6048.4;0.0 +3582000;0;4721.3;0.0 +3585600;0;6.2;0.0 +3589200;-3012.8;0;0.0 +3592800;-2678.7;0;0.0 +3596400;0;21.6;0.0 +3600000;0;206.3;0.0 +3603600;0;279.5;0.0 +3607200;0;0;0.0 +3610800;-14571.6;0;0.0 +3614400;-26607.2;0;0.0 +3618000;-3890.8;0;0.0 +3621600;-17894.5;0;0.0 +3625200;0;0;0.0 +3628800;0;1950.4;0.0 +3632400;0;0;0.0 +3636000;0;0;0.0 +3639600;0;0;0.0 +3643200;0;0;0.0 +3646800;0;23774.3;0.0 +3650400;0;18831.9;0.0 +3654000;0;13905.4;0.0 +3657600;-2111.0;0;0.0 +3661200;0;0;0.0 +3664800;0;8803.0;0.0 +3668400;0;8474.9;0.0 +3672000;0;6002.6;0.0 +3675600;-8244.1;2254.3;0.0 +3679200;-6754.5;3154.4;0.0 +3682800;0;8009.5;0.0 +3686400;0;13082.6;0.0 +3690000;0;12001.4;0.0 +3693600;-1761.6;12609.0;0.0 +3697200;-9552.9;4726.1;0.0 +3700800;-14867.5;3366.8;0.0 +3704400;-17710.5;1545.8;0.0 +3708000;0;12054.8;0.0 +3711600;0;18447.3;0.0 +3715200;0;25529.1;0.0 +3718800;0;5734.2;0.0 +3722400;0;0;0.0 +3726000;0;0;0.0 +3729600;0;0;0.0 +3733200;0;77145.0;0.0 +3736800;0;58419.5;0.0 +3740400;-14.2;47959.2;0.0 +3744000;-949.0;32902.6;0.0 +3747600;0;26113.7;0.0 +3751200;-3730.8;16879.4;0.0 +3754800;0;18744.9;0.0 +3758400;-3561.5;8343.2;0.0 +3762000;-26266.9;1936.6;0.0 +3765600;-19482.7;1853.1;0.0 +3769200;-3558.7;5983.1;0.0 +3772800;0;12050.9;0.0 +3776400;0;14433.9;0.0 +3780000;-8541.3;4670.0;0.0 +3783600;-26874.1;72.4;0.0 +3787200;-26174.4;54.3;0.0 +3790800;-25320.3;541.8;0.0 +3794400;0;6318.0;0.0 +3798000;0;15450.2;0.0 +3801600;0;22028.0;0.0 +3805200;0;5382.3;0.0 +3808800;0;0;0.0 +3812400;0;0;0.0 +3816000;0;0;0.0 +3819600;0;60553.6;0.0 +3823200;0;44616.4;0.0 +3826800;-534.4;34892.9;0.0 +3830400;-1126.8;20739.6;0.0 +3834000;0;13369.4;0.0 +3837600;-4094.5;6552.1;0.0 +3841200;0;7131.7;0.0 +3844800;-3767.3;314.3;0.0 +3848400;-14779.2;0;0.0 +3852000;-17423.2;0;0.0 +3855600;0;0;0.0 +3859200;0;20.5;0.0 +3862800;0;570.7;0.0 +3866400;0;0;0.0 +3870000;-12896.8;0;0.0 +3873600;-20530.7;0;0.0 +3877200;-13549.3;0;0.0 +3880800;-347.6;0;0.0 +3884400;0;9.9;0.0 +3888000;0;2258.6;0.0 +3891600;0;0;0.0 +3895200;0;0;0.0 +3898800;0;0;0.0 +3902400;0;0;0.0 +3906000;0;20208.1;0.0 +3909600;0;0;0.0 +3913200;0;0;0.0 +3916800;-2301.9;4644.8;0.0 +3920400;0;2570.3;0.0 +3924000;-378.7;245.4;0.0 +3927600;0;1962.6;0.0 +3931200;-4215.5;365.9;0.0 +3934800;-21558.3;0;0.0 +3938400;-13485.4;0;0.0 +3942000;0;2117.6;0.0 +3945600;0;6721.0;0.0 +3949200;0;4527.9;0.0 +3952800;-3330.1;0;0.0 +3956400;-28860.3;0;0.0 +3960000;-19930.9;0;0.0 +3963600;-19888.7;0;0.0 +3967200;-1978.5;0;0.0 +3970800;0;1735.1;0.0 +3974400;0;7543.1;0.0 +3978000;0;29.8;0.0 +3981600;0;0;0.0 +3985200;0;0;0.0 +3988800;0;0;0.0 +3992400;0;35608.2;0.0 +3996000;0;25945.1;0.0 +3999600;-773.5;22208.2;0.0 +4003200;-1373.5;8938.0;0.0 +4006800;0;6935.1;0.0 +4010400;-107.5;3472.7;0.0 +4014000;0;5695.1;0.0 +4017600;0;310.9;0.0 +4021200;-13379.1;0;0.0 +4024800;-6119.6;0;0.0 +4028400;-3921.6;923.5;0.0 +4032000;0;6875.9;0.0 +4035600;0;4676.7;0.0 +4039200;0;1062.6;0.0 +4042800;-29212.2;0;0.0 +4046400;-20259.2;0;0.0 +4050000;-29050.0;0;0.0 +4053600;-1836.6;0;0.0 +4057200;0;808.8;0.0 +4060800;0;5610.8;0.0 +4064400;0;262.4;0.0 +4068000;0;0;0.0 +4071600;0;0;0.0 +4075200;0;0;0.0 +4078800;0;25063.6;0.0 +4082400;0;19238.4;0.0 +4086000;-744.2;14094.2;0.0 +4089600;-1906.4;3186.3;0.0 +4093200;0;972.6;0.0 +4096800;-4052.9;30.4;0.0 +4100400;0;2875.8;0.0 +4104000;0;0;0.0 +4107600;-5784.2;0;0.0 +4111200;-16053.8;0;0.0 +4114800;0;0;0.0 +4118400;0;1106.8;0.0 +4122000;0;431.2;0.0 +4125600;-3191.7;0;0.0 +4129200;-21167.0;0;0.0 +4132800;-11805.1;0;0.0 +4136400;-11751.4;0;0.0 +4140000;-1829.0;0;0.0 +4143600;0;0;0.0 +4147200;0;3371.0;0.0 +4150800;0;0;0.0 +4154400;0;0;0.0 +4158000;0;0;0.0 +4161600;0;0;0.0 +4165200;0;20600.7;0.0 +4168800;0;18913.6;0.0 +4172400;0;14024.9;0.0 +4176000;-2212.2;152.7;0.0 +4179600;0;0;0.0 +4183200;-3853.8;14.0;0.0 +4186800;0;3119.2;0.0 +4190400;0;0;0.0 +4194000;0;0;0.0 +4197600;-3334.5;0;0.0 +4201200;0;0;0.0 +4204800;0;153.3;0.0 +4208400;0;115.0;0.0 +4212000;0;15.4;0.0 +4215600;-15053.7;0;0.0 +4219200;-27308.3;0;0.0 +4222800;-4770.1;0;0.0 +4226400;-10238.1;0;0.0 +4230000;0;0;0.0 +4233600;0;306.9;0.0 +4237200;0;0;0.0 +4240800;0;0;0.0 +4244400;0;0;0.0 +4248000;0;0;0.0 +4251600;0;23444.2;0.0 +4255200;0;19543.9;0.0 +4258800;0;14030.0;0.0 +4262400;-2115.0;728.9;0.0 +4266000;0;0;0.0 +4269600;0;1331.6;0.0 +4273200;0;145.7;0.0 +4276800;0;0;0.0 +4280400;-2944.1;0;0.0 +4284000;0;0;0.0 +4287600;0;0;0.0 +4291200;0;241.9;0.0 +4294800;0;350.3;0.0 +4298400;0;0;0.0 +4302000;-4540.0;0;0.0 +4305600;-10143.9;0;0.0 +4309200;-12509.9;0;0.0 +4312800;0;0;0.0 +4316400;0;3124.5;0.0 +4320000;0;3052.8;0.0 +4323600;0;0;0.0 +4327200;0;0;0.0 +4330800;0;0;0.0 +4334400;0;0;0.0 +4338000;0;37031.4;0.0 +4341600;0;22457.6;0.0 +4345200;-17.7;16547.1;0.0 +4348800;-1602.2;6521.6;0.0 +4352400;0;4245.6;0.0 +4356000;0;845.1;0.0 +4359600;0;3592.4;0.0 +4363200;-3641.0;0;0.0 +4366800;-21278.5;0;0.0 +4370400;-14649.7;0;0.0 +4374000;0;0;0.0 +4377600;0;1815.3;0.0 +4381200;0;3080.8;0.0 +4384800;-3070.9;410.6;0.0 +4388400;-10449.4;0;0.0 +4392000;-17537.7;0;0.0 +4395600;-16894.9;0;0.0 +4399200;-1737.3;3326.7;0.0 +4402800;0;7354.9;0.0 +4406400;0;17758.0;0.0 +4410000;0;5519.2;0.0 +4413600;0;0;0.0 +4417200;0;0;0.0 +4420800;0;0;0.0 +4424400;0;62891.7;0.0 +4428000;0;51951.4;0.0 +4431600;-571.7;42167.9;0.0 +4435200;-895.2;24423.2;0.0 +4438800;0;15951.7;0.0 +4442400;-4220.8;12294.1;0.0 +4446000;0;13915.9;0.0 +4449600;-3821.5;3013.7;0.0 +4453200;-27903.1;284.4;0.0 +4456800;-20376.3;1363.9;0.0 +4460400;-3809.7;8794.2;0.0 +4464000;0;17788.4;0.0 +4467600;0;14913.5;0.0 +4471200;-7429.5;9120.0;0.0 +4474800;-26284.8;1432.2;0.0 +4478400;-26334.6;343.3;0.0 +4482000;-26632.6;0;0.0 +4485600;-1779.6;4657.5;0.0 +4489200;0;16273.3;0.0 +4492800;0;22586.2;0.0 +4496400;0;5866.8;0.0 +4500000;0;0;0.0 +4503600;0;0;0.0 +4507200;0;0;0.0 +4510800;0;51882.1;0.0 +4514400;0;41446.8;0.0 +4518000;-675.8;33935.0;0.0 +4521600;-1894.4;19444.2;0.0 +4525200;0;11370.3;0.0 +4528800;-4061.9;4512.4;0.0 +4532400;0;7208.1;0.0 +4536000;0;982.1;0.0 +4539600;-18467.5;0;0.0 +4543200;-24333.0;0;0.0 +4546800;0;0;0.0 +4550400;0;350.6;0.0 +4554000;0;0;0.0 +4557600;-5041.8;0;0.0 +4561200;-28342.4;0;0.0 +4564800;-25892.1;0;0.0 +4568400;-12736.3;0;0.0 +4572000;-3580.7;0;0.0 +4575600;0;0;0.0 +4579200;0;2722.9;0.0 +4582800;0;0;0.0 +4586400;0;0;0.0 +4590000;0;0;0.0 +4593600;0;0;0.0 +4597200;0;20027.7;0.0 +4600800;0;0;0.0 +4604400;0;0;0.0 +4608000;-4100.6;5509.5;0.0 +4611600;0;3154.6;0.0 +4615200;-4876.7;1161.5;0.0 +4618800;0;2964.8;0.0 +4622400;-5804.7;0;0.0 +4626000;-24882.9;0;0.0 +4629600;-8514.8;0;0.0 +4633200;-382.4;0;0.0 +4636800;0;3081.6;0.0 +4640400;0;1027.8;0.0 +4644000;-3748.4;0;0.0 +4647600;-21598.4;0;0.0 +4651200;-28643.0;0;0.0 +4654800;-20513.1;0;0.0 +4658400;-2293.2;0;0.0 +4662000;0;3840.0;0.0 +4665600;0;9817.9;0.0 +4669200;0;1850.1;0.0 +4672800;0;0;0.0 +4676400;0;0;0.0 +4680000;0;0;0.0 +4683600;0;40909.1;0.0 +4687200;-72.5;28606.0;0.0 +4690800;-1123.0;20029.5;0.0 +4694400;-1454.9;8381.6;0.0 +4698000;0;7190.4;0.0 +4701600;-4504.8;4199.3;0.0 +4705200;0;8339.5;0.0 +4708800;-4133.8;1283.9;0.0 +4712400;-21569.1;0;0.0 +4716000;-21905.0;0;0.0 +4719600;-4075.2;1443.8;0.0 +4723200;0;5255.3;0.0 +4726800;0;5873.1;0.0 +4730400;-3268.5;302.1;0.0 +4734000;-29000.0;0;0.0 +4737600;-28385.5;0;0.0 +4741200;-27861.3;0;0.0 +4744800;0;929.0;0.0 +4748400;0;4092.8;0.0 +4752000;0;13205.6;0.0 +4755600;0;3208.7;0.0 +4759200;0;0;0.0 +4762800;0;0;0.0 +4766400;0;0;0.0 +4770000;0;47390.0;0.0 +4773600;0;36477.9;0.0 +4777200;0;29631.6;0.0 +4780800;-1281.6;10580.6;0.0 +4784400;0;3885.6;0.0 +4788000;-4196.0;4078.0;0.0 +4791600;0;6678.4;0.0 +4795200;-2133.8;1032.1;0.0 +4798800;-3136.5;110.5;0.0 +4802400;-9077.2;835.3;0.0 +4806000;0;4457.0;0.0 +4809600;-311.1;4815.5;0.0 +4813200;-756.0;4502.6;0.0 +4816800;-834.8;4744.1;0.0 +4820400;-22172.0;0;0.0 +4824000;-34296.8;0;0.0 +4827600;-20761.3;0;0.0 +4831200;-17034.0;0;0.0 +4834800;0;1684.0;0.0 +4838400;0;10783.5;0.0 +4842000;0;3142.9;0.0 +4845600;0;0;0.0 +4849200;0;0;0.0 +4852800;0;0;0.0 +4856400;0;41341.8;0.0 +4860000;0;33829.2;0.0 +4863600;0;26193.1;0.0 +4867200;-1444.0;4134.2;0.0 +4870800;0;3859.3;0.0 +4874400;0;10958.3;0.0 +4878000;0;8836.7;0.0 +4881600;0;2851.3;0.0 +4885200;-10725.2;0;0.0 +4888800;-9611.2;0;0.0 +4892400;0;1590.8;0.0 +4896000;0;2034.9;0.0 +4899600;0;2009.6;0.0 +4903200;-1747.9;647.1;0.0 +4906800;-11577.9;0;0.0 +4910400;-17443.1;0;0.0 +4914000;-19853.8;0;0.0 +4917600;0;1435.8;0.0 +4921200;0;6873.4;0.0 +4924800;0;8148.9;0.0 +4928400;0;426.1;0.0 +4932000;0;0;0.0 +4935600;0;0;0.0 +4939200;0;0;0.0 +4942800;0;28440.0;0.0 +4946400;0;20743.3;0.0 +4950000;-15.5;18548.9;0.0 +4953600;-1313.7;7657.9;0.0 +4957200;0;4306.3;0.0 +4960800;-3611.1;4452.4;0.0 +4964400;0;6592.3;0.0 +4968000;-3491.7;0;0.0 +4971600;-20721.3;0;0.0 +4975200;-22510.7;0;0.0 +4978800;-3515.8;0;0.0 +4982400;0;2895.4;0.0 +4986000;0;2449.1;0.0 +4989600;-11572.1;0;0.0 +4993200;-21327.2;0;0.0 +4996800;-21895.0;0;0.0 +5000400;-31253.8;0;0.0 +5004000;-1548.7;0;0.0 +5007600;0;7.9;0.0 +5011200;0;5241.7;0.0 +5014800;0;0;0.0 +5018400;0;0;0.0 +5022000;0;0;0.0 +5025600;0;0;0.0 +5029200;0;40417.1;0.0 +5032800;0;28090.2;0.0 +5036400;-532.1;20455.7;0.0 +5040000;-1123.0;7168.9;0.0 +5043600;0;3697.0;0.0 +5047200;0;1720.8;0.0 +5050800;0;3698.8;0.0 +5054400;-1283.0;0;0.0 +5058000;-28893.7;0;0.0 +5061600;-11177.2;0;0.0 +5065200;-1268.1;0;0.0 +5068800;-444.1;1257.3;0.0 +5072400;0;827.6;0.0 +5076000;-3312.7;0;0.0 +5079600;-23043.9;0;0.0 +5083200;-3804.1;0;0.0 +5086800;-20707.3;0;0.0 +5090400;-1794.1;0;0.0 +5094000;0;1545.7;0.0 +5097600;0;4565.3;0.0 +5101200;0;497.0;0.0 +5104800;0;0;0.0 +5108400;0;0;0.0 +5112000;0;0;0.0 +5115600;0;31304.7;0.0 +5119200;0;23570.4;0.0 +5122800;-667.1;19747.4;0.0 +5126400;-1337.1;7431.3;0.0 +5130000;0;5025.2;0.0 +5133600;0;3538.1;0.0 +5137200;0;6112.4;0.0 +5140800;-870.0;956.7;0.0 +5144400;-25726.5;0;0.0 +5148000;-29122.5;0;0.0 +5151600;-1080.0;1904.4;0.0 +5155200;0;3599.8;0.0 +5158800;0;2217.2;0.0 +5162400;-3073.6;277.4;0.0 +5166000;-20671.3;0;0.0 +5169600;-3235.4;0;0.0 +5173200;-19010.4;0;0.0 +5176800;-1791.4;286.1;0.0 +5180400;0;1707.1;0.0 +5184000;0;6698.0;0.0 +5187600;0;1438.8;0.0 +5191200;0;0;0.0 +5194800;0;0;0.0 +5198400;0;0;0.0 +5202000;0;31488.2;0.0 +5205600;0;21132.5;0.0 +5209200;-704.0;16297.2;0.0 +5212800;-1905.3;3993.1;0.0 +5216400;0;2407.6;0.0 +5220000;0;1481.4;0.0 +5223600;0;2805.5;0.0 +5227200;-443.3;70.8;0.0 +5230800;-26043.8;0;0.0 +5234400;-4250.2;0;0.0 +5238000;-339.5;426.9;0.0 +5241600;0;1901.3;0.0 +5245200;0;920.6;0.0 +5248800;-11445.0;0;0.0 +5252400;-22070.5;0;0.0 +5256000;0;0;0.0 +5259600;-29646.0;0;0.0 +5263200;0;0;0.0 +5266800;0;38.0;0.0 +5270400;0;1624.2;0.0 +5274000;0;0;0.0 +5277600;0;0;0.0 +5281200;0;0;0.0 +5284800;0;0;0.0 +5288400;0;15651.3;0.0 +5292000;0;13023.5;0.0 +5295600;-775.1;11406.5;0.0 +5299200;-1607.1;2142.0;0.0 +5302800;0;866.0;0.0 +5306400;-108.6;435.0;0.0 +5310000;0;2120.4;0.0 +5313600;-4293.2;0;0.0 +5317200;-34894.8;0;0.0 +5320800;-26650.8;0;0.0 +5324400;0;771.1;0.0 +5328000;0;3296.5;0.0 +5331600;0;2830.6;0.0 +5335200;-3154.3;471.3;0.0 +5338800;-28474.9;0;0.0 +5342400;-28228.0;0;0.0 +5346000;-28370.1;0;0.0 +5349600;-1818.5;127.6;0.0 +5353200;0;2822.1;0.0 +5356800;0;9201.8;0.0 +5360400;0;1405.4;0.0 +5364000;0;0;0.0 +5367600;0;0;0.0 +5371200;0;0;0.0 +5374800;0;33102.8;0.0 +5378400;0;26479.5;0.0 +5382000;0;20909.6;0.0 +5385600;-1244.8;4464.0;0.0 +5389200;0;1058.4;0.0 +5392800;-4116.7;1948.0;0.0 +5396400;0;4677.8;0.0 +5400000;-2040.8;73.5;0.0 +5403600;-11042.0;0;0.0 +5407200;-10153.8;0;0.0 +5410800;0;1325.1;0.0 +5414400;0;2723.9;0.0 +5418000;0;2311.2;0.0 +5421600;-794.0;1916.0;0.0 +5425200;-22634.0;0;0.0 +5428800;-34949.1;0;0.0 +5432400;-21748.9;0;0.0 +5436000;-18346.0;0;0.0 +5439600;0;0;0.0 +5443200;0;3705.9;0.0 +5446800;0;3715.9;0.0 +5450400;0;0;0.0 +5454000;0;0;0.0 +5457600;0;0;0.0 +5461200;0;30724.1;0.0 +5464800;0;27208.0;0.0 +5468400;0;21418.2;0.0 +5472000;-1229.9;3637.7;0.0 +5475600;0;2099.9;0.0 +5479200;0;5711.5;0.0 +5482800;0;4711.5;0.0 +5486400;0;1654.5;0.0 +5490000;-3982.6;0;0.0 +5493600;-12813.0;0;0.0 +5497200;0;999.0;0.0 +5500800;0;2607.4;0.0 +5504400;0;2433.1;0.0 +5508000;0;1524.6;0.0 +5511600;-11722.4;0;0.0 +5515200;0;1394.6;0.0 +5518800;-10980.7;0;0.0 +5522400;0;3094.4;0.0 +5526000;0;8413.0;0.0 +5529600;0;11657.5;0.0 +5533200;0;2313.5;0.0 +5536800;0;0;0.0 +5540400;0;0;0.0 +5544000;0;0;0.0 +5547600;0;38848.0;0.0 +5551200;0;30134.1;0.0 +5554800;-16.3;23515.1;0.0 +5558400;-944.0;7465.2;0.0 +5562000;0;6842.6;0.0 +5565600;0;5516.2;0.0 +5569200;0;6790.4;0.0 +5572800;0;2038.3;0.0 +5576400;-33477.3;0;0.0 +5580000;-27156.8;0;0.0 +5583600;0;1946.3;0.0 +5587200;0;5453.9;0.0 +5590800;0;4158.7;0.0 +5594400;-2639.4;685.0;0.0 +5598000;-29090.0;0;0.0 +5601600;-20055.2;0;0.0 +5605200;-28513.7;0;0.0 +5608800;-1351.9;0;0.0 +5612400;0;2225.4;0.0 +5616000;0;7676.0;0.0 +5619600;0;2054.5;0.0 +5623200;0;0;0.0 +5626800;0;0;0.0 +5630400;0;0;0.0 +5634000;0;36650.1;0.0 +5637600;0;27175.5;0.0 +5641200;-531.4;22204.0;0.0 +5644800;-990.7;6463.9;0.0 +5648400;0;5215.9;0.0 +5652000;0;3679.2;0.0 +5655600;0;5205.9;0.0 +5659200;0;574.0;0.0 +5662800;-28247.5;0;0.0 +5666400;-20241.5;0;0.0 +5670000;-1411.3;0;0.0 +5673600;0;2020.0;0.0 +5677200;0;1223.1;0.0 +5680800;-3048.1;0;0.0 +5684400;-11604.3;0;0.0 +5688000;-28897.3;0;0.0 +5691600;-28541.7;0;0.0 +5695200;-1531.0;0;0.0 +5698800;0;2491.1;0.0 +5702400;0;7622.8;0.0 +5706000;0;1339.1;0.0 +5709600;0;0;0.0 +5713200;0;0;0.0 +5716800;0;0;0.0 +5720400;0;28769.9;0.0 +5724000;0;20967.7;0.0 +5727600;-666.4;17998.8;0.0 +5731200;-1335.4;4058.0;0.0 +5734800;0;1380.1;0.0 +5738400;0;474.8;0.0 +5742000;-257.1;1196.5;0.0 +5745600;-4248.9;0;0.0 +5749200;-11268.6;0;0.0 +5752800;-16740.5;0;0.0 +5756400;-8639.4;0;0.0 +5760000;-823.5;0;0.0 +5763600;0;0;0.0 +5767200;-900.9;0;0.0 +5770800;-25616.7;0;0.0 +5774400;-13585.9;0;0.0 +5778000;-3621.7;0;0.0 +5781600;-1935.3;0;0.0 +5785200;0;0;0.0 +5788800;0;2278.6;0.0 +5792400;0;0;0.0 +5796000;0;0;0.0 +5799600;0;0;0.0 +5803200;0;0;0.0 +5806800;0;10678.7;0.0 +5810400;0;0;0.0 +5814000;0;0;0.0 +5817600;-3379.7;510.8;0.0 +5821200;0;141.6;0.0 +5824800;-4862.3;0;0.0 +5828400;0;0;0.0 +5832000;0;0;0.0 +5835600;-12711.9;0;0.0 +5839200;-16432.5;0;0.0 +5842800;0;0;0.0 +5846400;0;0;0.0 +5850000;0;0;0.0 +5853600;0;0;0.0 +5857200;-21170.0;0;0.0 +5860800;-23275.7;0;0.0 +5864400;-13442.7;0;0.0 +5868000;-458.0;0;0.0 +5871600;0;0;0.0 +5875200;0;535.7;0.0 +5878800;0;0;0.0 +5882400;0;0;0.0 +5886000;0;0;0.0 +5889600;0;0;0.0 +5893200;0;13837.1;0.0 +5896800;0;0;0.0 +5900400;0;0;0.0 +5904000;-3955.1;1394.0;0.0 +5907600;0;817.1;0.0 +5911200;-5142.0;0;0.0 +5914800;0;0;0.0 +5918400;0;0;0.0 +5922000;-19052.5;0;0.0 +5925600;-23174.9;0;0.0 +5929200;0;0;0.0 +5932800;0;0;0.0 +5936400;0;0;0.0 +5940000;0;0;0.0 +5943600;-20677.1;0;0.0 +5947200;-1876.9;0;0.0 +5950800;-20832.9;0;0.0 +5954400;0;0;0.0 +5958000;0;0;0.0 +5961600;0;0;0.0 +5965200;0;0;0.0 +5968800;0;0;0.0 +5972400;0;0;0.0 +5976000;0;0;0.0 +5979600;0;9479.6;0.0 +5983200;0;0;0.0 +5986800;0;0;0.0 +5990400;-5836.3;6.7;0.0 +5994000;0;0;0.0 +5997600;-5400.2;0;0.0 +6001200;0;0;0.0 +6004800;0;0;0.0 +6008400;-899.7;0;0.0 +6012000;-1984.9;0;0.0 +6015600;0;0;0.0 +6019200;0;0;0.0 +6022800;0;0;0.0 +6026400;0;0;0.0 +6030000;-18532.6;0;0.0 +6033600;-13383.2;0;0.0 +6037200;-1892.0;0;0.0 +6040800;-7339.5;0;0.0 +6044400;-197.3;0;0.0 +6048000;0;0;0.0 +6051600;0;0;0.0 +6055200;0;0;0.0 +6058800;0;0;0.0 +6062400;0;5412.9;0.0 +6066000;0;5405.0;0.0 +6069600;-340.4;3324.5;0.0 +6073200;0;0;0.0 +6076800;0;0;0.0 +6080400;0;10329.5;0.0 +6084000;0;66.3;0.0 +6087600;-613.1;0;0.0 +6091200;-4035.1;0;0.0 +6094800;-3588.2;0;0.0 +6098400;-1211.6;0;0.0 +6102000;-885.3;0;0.0 +6105600;-12500.4;0;0.0 +6109200;-4593.9;0;0.0 +6112800;-13422.5;0;0.0 +6116400;-6099.4;0;0.0 +6120000;-17066.6;0;0.0 +6123600;-106.4;0;0.0 +6127200;0;0;0.0 +6130800;0;0;0.0 +6134400;0;0;0.0 +6138000;0;0;0.0 +6141600;0;0;0.0 +6145200;0;0;0.0 +6148800;0;4574.5;0.0 +6152400;0;0;0.0 +6156000;-646.7;0;0.0 +6159600;-5754.3;0;0.0 +6163200;0;0;0.0 +6166800;0;0;0.0 +6170400;0;0;0.0 +6174000;0;0;0.0 +6177600;-16828.8;0;0.0 +6181200;-18445.4;0;0.0 +6184800;-1054.6;0;0.0 +6188400;-647.7;0;0.0 +6192000;-1081.3;0;0.0 +6195600;-14305.2;0;0.0 +6199200;-40420.4;0;0.0 +6202800;-28626.3;0;0.0 +6206400;-27322.5;0;0.0 +6210000;-7311.4;0;0.0 +6213600;-62.8;0;0.0 +6217200;0;0;0.0 +6220800;0;0;0.0 +6224400;0;0;0.0 +6228000;0;0;0.0 +6231600;0;0;0.0 +6235200;0;604.4;0.0 +6238800;0;0;0.0 +6242400;-996.1;0;0.0 +6246000;-4488.9;0;0.0 +6249600;-1845.1;0;0.0 +6253200;-2515.9;0;0.0 +6256800;-11339.5;0;0.0 +6260400;-72759.2;0;0.0 +6264000;-108788.6;0;0.0 +6267600;-110499.1;0;0.0 +6271200;-87855.7;0;0.0 +6274800;-69431.4;0;0.0 +6278400;-78099.6;0;0.0 +6282000;-99746.2;0;0.0 +6285600;-123946.0;0;0.0 +6289200;-120467.8;0;0.0 +6292800;-116988.2;0;0.0 +6296400;-78046.8;0;0.0 +6300000;-30313.7;0;0.0 +6303600;-627.4;0;0.0 +6307200;0;0;0.0 +6310800;0;0;0.0 +6314400;0;0;0.0 +6318000;0;0;0.0 +6321600;-5354.5;0;0.0 +6325200;-5651.5;0;0.0 +6328800;-8278.8;0;0.0 +6332400;-25649.9;0;0.0 +6336000;-29743.8;0;0.0 +6339600;-51871.1;0;0.0 +6343200;-64530.9;0;0.0 +6346800;-105410.5;0;0.0 +6350400;-140702.9;0;0.0 +6354000;-138972.6;0;0.0 +6357600;-118340.1;0;0.0 +6361200;-98169.7;0;0.0 +6364800;-104061.7;0;0.0 +6368400;-126040.0;0;0.0 +6372000;-148301.0;0;0.0 +6375600;-143993.7;0;0.0 +6379200;-141642.5;0;0.0 +6382800;-108092.5;0;0.0 +6386400;-49390.2;0;0.0 +6390000;-22301.3;0;0.0 +6393600;-2410.5;0;0.0 +6397200;0;0;0.0 +6400800;0;0;0.0 +6404400;0;0;0.0 +6408000;-14601.0;0;0.0 +6411600;-7876.7;0;0.0 +6415200;-10114.5;0;0.0 +6418800;-15118.7;0;0.0 +6422400;-6249.5;0;0.0 +6426000;-35154.4;0;0.0 +6429600;-17897.9;0;0.0 +6433200;-55210.9;0;0.0 +6436800;-94737.1;0;0.0 +6440400;-94597.2;0;0.0 +6444000;-74161.6;0;0.0 +6447600;-66674.9;0;0.0 +6451200;-52601.1;0;0.0 +6454800;-19629.0;0;0.0 +6458400;-85358.6;0;0.0 +6462000;-94426.6;0;0.0 +6465600;-79005.9;0;0.0 +6469200;-58967.8;0;0.0 +6472800;-648.1;0;0.0 +6476400;0;0;0.0 +6480000;0;0;0.0 +6483600;0;0;0.0 +6487200;0;0;0.0 +6490800;0;0;0.0 +6494400;-2135.0;0;0.0 +6498000;-3390.6;0;0.0 +6501600;-5779.3;0;0.0 +6505200;-33127.7;0;0.0 +6508800;-5760.7;0;0.0 +6512400;-4734.4;0;0.0 +6516000;-1161.0;0;0.0 +6519600;-2330.6;0;0.0 +6523200;-45958.5;0;0.0 +6526800;-39793.7;0;0.0 +6530400;-29318.3;0;0.0 +6534000;-634.2;0;0.0 +6537600;-954.7;0;0.0 +6541200;-2363.1;0;0.0 +6544800;-27766.2;0;0.0 +6548400;-30193.0;0;0.0 +6552000;-4722.4;0;0.0 +6555600;-4242.5;0;0.0 +6559200;0;0;0.0 +6562800;0;0;0.0 +6566400;0;0;0.0 +6570000;0;0;0.0 +6573600;0;0;0.0 +6577200;0;0;0.0 +6580800;0;12240.3;0.0 +6584400;0;0;0.0 +6588000;0;0;0.0 +6591600;-6444.1;799.9;0.0 +6595200;0;0;0.0 +6598800;-2143.9;0;0.0 +6602400;0;927.7;0.0 +6606000;-4207.1;0;0.0 +6609600;-14035.7;0;0.0 +6613200;-125.0;0;0.0 +6616800;0;0;0.0 +6620400;0;0;0.0 +6624000;0;0;0.0 +6627600;0;0;0.0 +6631200;-15851.3;0;0.0 +6634800;-19350.5;0;0.0 +6638400;-14996.2;0;0.0 +6642000;-11225.0;0;0.0 +6645600;0;0;0.0 +6649200;0;0;0.0 +6652800;0;0;0.0 +6656400;0;0;0.0 +6660000;0;0;0.0 +6663600;0;0;0.0 +6667200;0;12125.8;0.0 +6670800;0;10620.7;0.0 +6674400;-400.9;7839.4;0.0 +6678000;-3163.8;0;0.0 +6681600;0;0;0.0 +6685200;0;1005.4;0.0 +6688800;0;0;0.0 +6692400;0;0;0.0 +6696000;-4194.9;0;0.0 +6699600;0;0;0.0 +6703200;0;0;0.0 +6706800;0;0;0.0 +6710400;0;0;0.0 +6714000;0;0;0.0 +6717600;0;0;0.0 +6721200;-8900.4;0;0.0 +6724800;-11906.6;0;0.0 +6728400;0;323.5;0.0 +6732000;0;5808.3;0.0 +6735600;0;7351.3;0.0 +6739200;0;504.9;0.0 +6742800;0;0;0.0 +6746400;0;0;0.0 +6750000;0;0;0.0 +6753600;0;30598.0;0.0 +6757200;0;24384.4;0.0 +6760800;-183.3;17776.6;0.0 +6764400;-1393.9;7334.8;0.0 +6768000;0;3863.6;0.0 +6771600;-3701.9;1021.4;0.0 +6775200;0;3176.5;0.0 +6778800;-3494.7;0;0.0 +6782400;-21863.9;0;0.0 +6786000;-14096.9;0;0.0 +6789600;0;0;0.0 +6793200;0;1274.7;0.0 +6796800;0;0;0.0 +6800400;-2888.1;0;0.0 +6804000;-21562.8;0;0.0 +6807600;-12130.8;0;0.0 +6811200;-2823.8;0;0.0 +6814800;-1597.2;0;0.0 +6818400;0;807.3;0.0 +6822000;0;6919.7;0.0 +6825600;0;0;0.0 +6829200;0;0;0.0 +6832800;0;0;0.0 +6836400;0;0;0.0 +6840000;0;28718.7;0.0 +6843600;0;21000.9;0.0 +6847200;-579.9;15678.9;0.0 +6850800;-1853.8;4025.8;0.0 +6854400;0;198.0;0.0 +6858000;0;0;0.0 +6861600;0;1104.8;0.0 +6865200;-988.3;0;0.0 +6868800;-28111.1;0;0.0 +6872400;-22397.6;0;0.0 +6876000;-3741.2;0;0.0 +6879600;-661.9;87.0;0.0 +6883200;-827.7;0;0.0 +6886800;-329.9;0;0.0 +6890400;-16430.2;0;0.0 +6894000;-13225.4;0;0.0 +6897600;-22839.3;0;0.0 +6901200;0;0;0.0 +6904800;0;0;0.0 +6908400;0;923.9;0.0 +6912000;0;0;0.0 +6915600;0;0;0.0 +6919200;0;0;0.0 +6922800;0;0;0.0 +6926400;0;7474.2;0.0 +6930000;0;0;0.0 +6933600;0;0;0.0 +6937200;-10760.1;0;0.0 +6940800;-628.3;0;0.0 +6944400;0;0;0.0 +6948000;0;0;0.0 +6951600;-1211.2;0;0.0 +6955200;-47412.5;0;0.0 +6958800;-60473.6;0;0.0 +6962400;-32531.8;0;0.0 +6966000;-7049.0;0;0.0 +6969600;-11812.0;0;0.0 +6973200;-20105.2;0;0.0 +6976800;-54058.1;0;0.0 +6980400;-37775.3;0;0.0 +6984000;-33335.5;0;0.0 +6987600;-647.1;0;0.0 +6991200;0;0;0.0 +6994800;0;25.4;0.0 +6998400;0;0;0.0 +7002000;0;0;0.0 +7005600;0;0;0.0 +7009200;0;0;0.0 +7012800;0;7355.5;0.0 +7016400;0;0;0.0 +7020000;-2036.4;0;0.0 +7023600;-8074.1;1667.5;0.0 +7027200;0;1513.8;0.0 +7030800;-1801.6;334.8;0.0 +7034400;-300.8;2521.3;0.0 +7038000;-6800.9;0;0.0 +7041600;-16452.1;0;0.0 +7045200;-18058.2;0;0.0 +7048800;0;0;0.0 +7052400;0;676.9;0.0 +7056000;0;319.0;0.0 +7059600;0;0;0.0 +7063200;-22133.6;0;0.0 +7066800;-12737.9;0;0.0 +7070400;-20867.4;0;0.0 +7074000;-2528.9;0;0.0 +7077600;0;505.6;0.0 +7081200;0;4108.8;0.0 +7084800;0;0;0.0 +7088400;0;0;0.0 +7092000;0;0;0.0 +7095600;0;0;0.0 +7099200;0;22140.9;0.0 +7102800;-233.6;15245.0;0.0 +7106400;-1536.2;10367.7;0.0 +7110000;-1503.1;1729.2;0.0 +7113600;0;147.3;0.0 +7117200;-5992.5;0;0.0 +7120800;0;917.8;0.0 +7124400;0;0;0.0 +7128000;-16935.7;0;0.0 +7131600;-16834.3;0;0.0 +7135200;0;0;0.0 +7138800;0;67.8;0.0 +7142400;0;20.2;0.0 +7146000;0;0;0.0 +7149600;-21934.4;0;0.0 +7153200;-21116.8;0;0.0 +7156800;-20785.7;0;0.0 +7160400;-1916.8;0;0.0 +7164000;0;0;0.0 +7167600;0;3636.4;0.0 +7171200;0;0;0.0 +7174800;0;0;0.0 +7178400;0;0;0.0 +7182000;0;0;0.0 +7185600;0;22358.0;0.0 +7189200;0;19410.9;0.0 +7192800;0;15190.9;0.0 +7196400;-1812.2;660.8;0.0 +7200000;0;0;0.0 +7203600;0;881.2;0.0 +7207200;0;3307.8;0.0 +7210800;0;787.7;0.0 +7214400;-3114.8;0;0.0 +7218000;-10936.0;0;0.0 +7221600;0;274.5;0.0 +7225200;0;851.5;0.0 +7228800;0;543.0;0.0 +7232400;0;562.0;0.0 +7236000;-78.2;0;0.0 +7239600;-26077.2;0;0.0 +7243200;-3882.0;0;0.0 +7246800;-2098.6;0;0.0 +7250400;0;0;0.0 +7254000;0;808.7;0.0 +7257600;0;103.2;0.0 +7261200;0;0;0.0 +7264800;0;0;0.0 +7268400;0;0;0.0 +7272000;0;19210.0;0.0 +7275600;0;17422.3;0.0 +7279200;0;12226.5;0.0 +7282800;-3057.3;526.4;0.0 +7286400;0;189.0;0.0 +7290000;0;4197.4;0.0 +7293600;0;4305.7;0.0 +7297200;0;481.7;0.0 +7300800;0;0;0.0 +7304400;-9796.7;0;0.0 +7308000;0;363.7;0.0 +7311600;0;1209.6;0.0 +7315200;0;436.3;0.0 +7318800;0;129.7;0.0 +7322400;0;0;0.0 +7326000;-9320.4;0;0.0 +7329600;-20743.1;0;0.0 +7333200;0;0;0.0 +7336800;0;4202.6;0.0 +7340400;0;5256.7;0.0 +7344000;0;329.0;0.0 +7347600;0;0;0.0 +7351200;0;0;0.0 +7354800;0;0;0.0 +7358400;0;21639.5;0.0 +7362000;0;16790.5;0.0 +7365600;-26.1;15048.5;0.0 +7369200;-1106.1;3546.6;0.0 +7372800;0;1983.2;0.0 +7376400;0;1742.8;0.0 +7380000;0;3321.5;0.0 +7383600;0;0;0.0 +7387200;-21728.9;0;0.0 +7390800;-14474.3;0;0.0 +7394400;0;0;0.0 +7398000;0;1278.1;0.0 +7401600;0;552.8;0.0 +7405200;-2740.4;0;0.0 +7408800;-11761.9;0;0.0 +7412400;-20188.4;0;0.0 +7416000;-19882.8;0;0.0 +7419600;-1471.7;0;0.0 +7423200;0;0;0.0 +7426800;0;4310.0;0.0 +7430400;0;174.3;0.0 +7434000;0;0;0.0 +7437600;0;0;0.0 +7441200;0;0;0.0 +7444800;0;24682.3;0.0 +7448400;0;17205.9;0.0 +7452000;-533.8;11589.1;0.0 +7455600;-1519.1;2102.5;0.0 +7459200;0;712.3;0.0 +7462800;0;170.9;0.0 +7466400;0;261.3;0.0 +7470000;-463.7;0;0.0 +7473600;-29387.0;0;0.0 +7477200;-26243.6;0;0.0 +7480800;-1032.9;0;0.0 +7484400;-59.7;0;0.0 +7488000;0;0;0.0 +7491600;-6275.7;0;0.0 +7495200;-1201.3;0;0.0 +7498800;-18131.7;0;0.0 +7502400;-558.3;0;0.0 +7506000;0;0;0.0 +7509600;0;0;0.0 +7513200;0;801.6;0.0 +7516800;0;0;0.0 +7520400;0;0;0.0 +7524000;0;0;0.0 +7527600;0;0;0.0 +7531200;0;13486.9;0.0 +7534800;0;10437.6;0.0 +7538400;-947.0;9679.0;0.0 +7542000;-1984.2;684.8;0.0 +7545600;0;27.1;0.0 +7549200;0;0;0.0 +7552800;0;0;0.0 +7556400;-1437.1;0;0.0 +7560000;-26300.5;0;0.0 +7563600;-30263.2;0;0.0 +7567200;-1085.2;0;0.0 +7570800;0;0;0.0 +7574400;0;0;0.0 +7578000;-5951.0;0;0.0 +7581600;-28884.5;0;0.0 +7585200;-21309.7;0;0.0 +7588800;-3144.4;0;0.0 +7592400;-4739.8;0;0.0 +7596000;0;0;0.0 +7599600;0;245.7;0.0 +7603200;0;0;0.0 +7606800;0;0;0.0 +7610400;0;0;0.0 +7614000;0;0;0.0 +7617600;0;9298.6;0.0 +7621200;0;0;0.0 +7624800;0;0;0.0 +7628400;-4544.8;155.6;0.0 +7632000;0;0;0.0 +7635600;-619.3;0;0.0 +7639200;0;0;0.0 +7642800;-405.5;0;0.0 +7646400;-20309.8;0;0.0 +7650000;-17535.1;0;0.0 +7653600;0;0;0.0 +7657200;0;0;0.0 +7660800;-3.6;0;0.0 +7664400;-1317.9;0;0.0 +7668000;-41879.6;0;0.0 +7671600;-1982.1;0;0.0 +7675200;-14510.6;0;0.0 +7678800;0;0;0.0 +7682400;0;0;0.0 +7686000;0;0;0.0 +7689600;0;0;0.0 +7693200;0;0;0.0 +7696800;0;0;0.0 +7700400;0;0;0.0 +7704000;0;6878.4;0.0 +7707600;0;0;0.0 +7711200;0;0;0.0 +7714800;-8748.6;0;0.0 +7718400;0;0;0.0 +7722000;-830.7;0;0.0 +7725600;0;0;0.0 +7729200;-8488.7;0;0.0 +7732800;-36115.9;0;0.0 +7736400;-20006.3;0;0.0 +7740000;-5510.7;0;0.0 +7743600;-727.9;0;0.0 +7747200;-1037.1;0;0.0 +7750800;-11259.6;0;0.0 +7754400;-27854.3;0;0.0 +7758000;-9066.4;0;0.0 +7761600;-33085.5;0;0.0 +7765200;-488.5;0;0.0 +7768800;0;0;0.0 +7772400;0;0;0.0 +7776000;0;0;0.0 +7779600;0;0;0.0 +7783200;0;0;0.0 +7786800;0;0;0.0 +7790400;0;8023.8;0.0 +7794000;0;8284.4;0.0 +7797600;-1021.9;7618.7;0.0 +7801200;-3865.2;0;0.0 +7804800;0;0;0.0 +7808400;-150.5;0;0.0 +7812000;-1831.3;0;0.0 +7815600;-8432.8;0;0.0 +7819200;-8028.7;0;0.0 +7822800;-15588.9;0;0.0 +7826400;-1653.1;0;0.0 +7830000;-1272.3;0;0.0 +7833600;-1303.9;0;0.0 +7837200;-1331.4;0;0.0 +7840800;-14473.1;0;0.0 +7844400;-31649.6;0;0.0 +7848000;-19049.4;0;0.0 +7851600;-601.5;0;0.0 +7855200;-124.6;0;0.0 +7858800;0;0;0.0 +7862400;0;0;0.0 +7866000;0;0;0.0 +7869600;0;0;0.0 +7873200;0;0;0.0 +7876800;0;4745.3;0.0 +7880400;0;3658.1;0.0 +7884000;-822.8;2564.2;0.0 +7887600;0;0;0.0 +7891200;0;0;0.0 +7894800;0;10129.0;0.0 +7898400;0;120.6;0.0 +7902000;-388.1;0;0.0 +7905600;-613.0;0;0.0 +7909200;-830.9;0;0.0 +7912800;-316.4;0;0.0 +7916400;-554.9;0;0.0 +7920000;-749.3;0;0.0 +7923600;-4205.4;0;0.0 +7927200;-132.9;0;0.0 +7930800;0;0;0.0 +7934400;-11966.0;0;0.0 +7938000;0;0;0.0 +7941600;0;346.7;0.0 +7945200;0;0;0.0 +7948800;0;0;0.0 +7952400;0;0;0.0 +7956000;0;0;0.0 +7959600;0;0;0.0 +7963200;0;8528.4;0.0 +7966800;0;7853.1;0.0 +7970400;0;5270.6;0.0 +7974000;-1289.9;0;0.0 +7977600;0;0;0.0 +7981200;-337.6;0;0.0 +7984800;-1492.2;0;0.0 +7988400;-3800.0;0;0.0 +7992000;-30413.2;0;0.0 +7995600;-16284.6;0;0.0 +7999200;-2743.4;0;0.0 +8002800;-2004.1;0;0.0 +8006400;-3100.5;0;0.0 +8010000;-8028.4;0;0.0 +8013600;-9988.0;0;0.0 +8017200;-22817.2;0;0.0 +8020800;-19254.9;0;0.0 +8024400;0;0;0.0 +8028000;0;0;0.0 +8031600;0;11.9;0.0 +8035200;0;0;0.0 +8038800;0;0;0.0 +8042400;0;0;0.0 +8046000;0;0;0.0 +8049600;0;2590.0;0.0 +8053200;0;0;0.0 +8056800;0;0;0.0 +8060400;-8023.2;0;0.0 +8064000;0;0;0.0 +8067600;-881.1;0;0.0 +8071200;0;81.2;0.0 +8074800;-6399.0;0;0.0 +8078400;-10196.1;0;0.0 +8082000;-1409.6;0;0.0 +8085600;0;0;0.0 +8089200;0;422.9;0.0 +8092800;0;0;0.0 +8096400;0;0;0.0 +8100000;-13982.5;0;0.0 +8103600;-21177.7;0;0.0 +8107200;-20713.7;0;0.0 +8110800;-2458.1;0;0.0 +8114400;0;438.6;0.0 +8118000;0;4813.4;0.0 +8121600;0;0;0.0 +8125200;0;0;0.0 +8128800;0;0;0.0 +8132400;0;0;0.0 +8136000;0;19571.0;0.0 +8139600;-10.2;14531.8;0.0 +8143200;-1175.8;11163.1;0.0 +8146800;-2044.3;563.3;0.0 +8150400;0;0;0.0 +8154000;-0.0;0;0.0 +8157600;-830.5;0;0.0 +8161200;-5144.3;0;0.0 +8164800;-29670.4;0;0.0 +8168400;-30111.4;0;0.0 +8172000;-669.3;0;0.0 +8175600;-462.7;0;0.0 +8179200;-377.9;0;0.0 +8182800;0;0;0.0 +8186400;-18821.6;0;0.0 +8190000;-18595.1;0;0.0 +8193600;-1537.8;0;0.0 +8197200;-3436.7;0;0.0 +8200800;0;0;0.0 +8204400;0;833.4;0.0 +8208000;0;0;0.0 +8211600;0;0;0.0 +8215200;0;0;0.0 +8218800;0;0;0.0 +8222400;0;9731.2;0.0 +8226000;-137.8;7053.5;0.0 +8229600;-1494.7;4713.4;0.0 +8233200;-2458.4;0;0.0 +8236800;0;0;0.0 +8240400;-534.6;0;0.0 +8244000;-2358.0;0;0.0 +8247600;-6998.9;0;0.0 +8251200;-25715.2;0;0.0 +8254800;-29876.6;0;0.0 +8258400;-10250.3;0;0.0 +8262000;-5673.1;0;0.0 +8265600;-6974.1;0;0.0 +8269200;-17701.4;0;0.0 +8272800;-20506.4;0;0.0 +8276400;-24432.4;0;0.0 +8280000;-6124.0;0;0.0 +8283600;-3798.0;0;0.0 +8287200;0;0;0.0 +8290800;0;0;0.0 +8294400;0;0;0.0 +8298000;0;0;0.0 +8301600;0;0;0.0 +8305200;0;0;0.0 +8308800;0;3046.9;0.0 +8312400;0;0;0.0 +8316000;0;0;0.0 +8319600;-18946.2;0;0.0 +8323200;-1937.0;0;0.0 +8326800;-1618.7;0;0.0 +8330400;-6769.5;0;0.0 +8334000;-46187.9;0;0.0 +8337600;-97007.5;0;0.0 +8341200;-95765.9;0;0.0 +8344800;-73259.7;0;0.0 +8348400;-48461.3;0;0.0 +8352000;-58715.5;0;0.0 +8355600;-80837.1;0;0.0 +8359200;-108172.5;0;0.0 +8362800;-108928.8;0;0.0 +8366400;-103382.3;0;0.0 +8370000;-65317.0;0;0.0 +8373600;-17464.8;0;0.0 +8377200;0;0;0.0 +8380800;0;0;0.0 +8384400;0;0;0.0 +8388000;0;0;0.0 +8391600;0;0;0.0 +8395200;-3068.2;0;0.0 +8398800;-5191.8;0;0.0 +8402400;-7386.2;0;0.0 +8406000;-10192.4;0;0.0 +8409600;-24219.0;0;0.0 +8413200;-27735.2;0;0.0 +8416800;-40077.9;0;0.0 +8420400;-80706.4;0;0.0 +8424000;-94430.1;0;0.0 +8427600;-100422.8;0;0.0 +8431200;-89797.9;0;0.0 +8434800;-82995.9;0;0.0 +8438400;-81287.7;0;0.0 +8442000;-71976.7;0;0.0 +8445600;-105821.8;0;0.0 +8449200;-124434.1;0;0.0 +8452800;-102020.1;0;0.0 +8456400;-91565.1;0;0.0 +8460000;-33551.2;0;0.0 +8463600;-9159.7;0;0.0 +8467200;0;0;0.0 +8470800;0;0;0.0 +8474400;0;0;0.0 +8478000;0;0;0.0 +8481600;-8616.3;0;0.0 +8485200;-16574.0;0;0.0 +8488800;-21683.8;0;0.0 +8492400;-1297.0;0;0.0 +8496000;-929.4;0;0.0 +8499600;-1168.7;6.0;0.0 +8503200;-9998.3;0;0.0 +8506800;-34908.9;0;0.0 +8510400;-60855.7;0;0.0 +8514000;-61427.6;0;0.0 +8517600;-52489.0;0;0.0 +8521200;-39611.5;0;0.0 +8524800;-47585.1;0;0.0 +8528400;-34889.1;0;0.0 +8532000;-24710.0;0;0.0 +8535600;-43002.3;0;0.0 +8539200;-39179.2;0;0.0 +8542800;-1194.0;0;0.0 +8546400;-80.7;0;0.0 +8550000;0;0;0.0 +8553600;0;0;0.0 +8557200;0;0;0.0 +8560800;0;0;0.0 +8564400;0;0;0.0 +8568000;-199.9;1814.2;0.0 +8571600;-1834.1;0;0.0 +8575200;-4506.9;0;0.0 +8578800;-13368.3;0;0.0 +8582400;-139.5;0;0.0 +8586000;0;0;0.0 +8589600;-18.0;0;0.0 +8593200;-13411.9;0;0.0 +8596800;-40647.4;0;0.0 +8600400;-28107.5;0;0.0 +8604000;-798.7;0;0.0 +8607600;0;0;0.0 +8611200;-129.0;0;0.0 +8614800;0;0;0.0 +8618400;-26441.2;0;0.0 +8622000;-17742.1;0;0.0 +8625600;-17070.1;0;0.0 +8629200;-230.7;0;0.0 +8632800;0;0;0.0 +8636400;0;742.1;0.0 +8640000;0;0;0.0 +8643600;0;0;0.0 +8647200;0;0;0.0 +8650800;0;0;0.0 +8654400;0;14794.1;0.0 +8658000;0;0;0.0 +8661600;0;0;0.0 +8665200;-5025.7;866.6;0.0 +8668800;0;0.8;0.0 +8672400;-975.7;0;0.0 +8676000;0;0;0.0 +8679600;-1094.4;0;0.0 +8683200;-22043.9;0;0.0 +8686800;-19028.7;0;0.0 +8690400;0;0;0.0 +8694000;0;0;0.0 +8697600;-172.6;0;0.0 +8701200;-12247.3;0;0.0 +8704800;-21665.7;0;0.0 +8708400;-1757.1;0;0.0 +8712000;-22729.2;0;0.0 +8715600;-27.9;0;0.0 +8719200;0;0;0.0 +8722800;0;0;0.0 +8726400;0;0;0.0 +8730000;0;0;0.0 +8733600;0;0;0.0 +8737200;0;0;0.0 +8740800;0;5281.5;0.0 +8744400;0;0;0.0 +8748000;0;0;0.0 +8751600;-15248.4;0;0.0 +8755200;-846.5;0;0.0 +8758800;-2933.3;0;0.0 +8762400;0;0;0.0 +8766000;-1375.8;0;0.0 +8769600;-39788.2;0;0.0 +8773200;-18298.7;0;0.0 +8776800;-2911.8;0;0.0 +8780400;-159.4;0;0.0 +8784000;-551.9;0;0.0 +8787600;-13571.9;0;0.0 +8791200;-6149.8;0;0.0 +8794800;-28764.3;0;0.0 +8798400;-20260.5;0;0.0 +8802000;-0.1;0;0.0 +8805600;0;0;0.0 +8809200;0;279.6;0.0 +8812800;0;0;0.0 +8816400;0;0;0.0 +8820000;0;0;0.0 +8823600;0;0;0.0 +8827200;0;12814.7;0.0 +8830800;0;0;0.0 +8834400;0;0;0.0 +8838000;-4956.9;1151.7;0.0 +8841600;0;79.9;0.0 +8845200;-535.2;0;0.0 +8848800;-803.3;297.3;0.0 +8852400;-8278.4;0;0.0 +8856000;-17033.0;0;0.0 +8859600;-20084.4;0;0.0 +8863200;-844.3;0;0.0 +8866800;-526.3;0;0.0 +8870400;-886.8;0;0.0 +8874000;-16532.4;0;0.0 +8877600;-1444.7;0;0.0 +8881200;-19382.9;0;0.0 +8884800;-1961.6;0;0.0 +8888400;-127.7;0;0.0 +8892000;0;0;0.0 +8895600;0;238.7;0.0 +8899200;0;0;0.0 +8902800;0;0;0.0 +8906400;0;0;0.0 +8910000;0;0;0.0 +8913600;0;11965.8;0.0 +8917200;0;0;0.0 +8920800;0;0;0.0 +8924400;-3699.1;702.5;0.0 +8928000;0;276.2;0.0 +8931600;-4382.9;0;0.0 +8935200;0;182.1;0.0 +8938800;-5066.4;0;0.0 +8942400;-23722.7;0;0.0 +8946000;-3414.6;0;0.0 +8949600;0;0;0.0 +8953200;0;0;0.0 +8956800;0;0;0.0 +8960400;-588.9;0;0.0 +8964000;-27187.3;0;0.0 +8967600;-38926.3;0;0.0 +8971200;-39391.2;0;0.0 +8974800;-1824.5;0;0.0 +8978400;0;0;0.0 +8982000;0;934.0;0.0 +8985600;0;0;0.0 +8989200;0;0;0.0 +8992800;0;0;0.0 +8996400;0;0;0.0 +9000000;0;14444.3;0.0 +9003600;0;0;0.0 +9007200;0;0;0.0 +9010800;-11947.3;206.2;0.0 +9014400;-392.5;0;0.0 +9018000;-1352.1;0;0.0 +9021600;0;53.5;0.0 +9025200;0;0;0.0 +9028800;-114.7;0;0.0 +9032400;-4555.6;0;0.0 +9036000;0;0;0.0 +9039600;0;0;0.0 +9043200;0;0;0.0 +9046800;0;0;0.0 +9050400;-16633.2;0;0.0 +9054000;-19552.4;0;0.0 +9057600;-1411.8;0;0.0 +9061200;-10122.2;0;0.0 +9064800;0;0;0.0 +9068400;0;340.5;0.0 +9072000;0;0;0.0 +9075600;0;0;0.0 +9079200;0;0;0.0 +9082800;0;0;0.0 +9086400;0;32463.6;0.0 +9090000;0;22303.3;0.0 +9093600;-163.6;16778.1;0.0 +9097200;-1966.0;4607.5;0.0 +9100800;0;333.2;0.0 +9104400;0;7537.1;0.0 +9108000;0;2607.8;0.0 +9111600;0;482.8;0.0 +9115200;-10811.4;0;0.0 +9118800;-10373.2;0;0.0 +9122400;0;54.1;0.0 +9126000;0;397.2;0.0 +9129600;0;0;0.0 +9133200;0;0;0.0 +9136800;0;0;0.0 +9140400;-1844.2;0;0.0 +9144000;-21003.8;0;0.0 +9147600;0;0;0.0 +9151200;0;1779.6;0.0 +9154800;0;3307.9;0.0 +9158400;0;0;0.0 +9162000;0;0;0.0 +9165600;0;0;0.0 +9169200;0;0;0.0 +9172800;0;16425.2;0.0 +9176400;0;12472.6;0.0 +9180000;-119.2;11552.5;0.0 +9183600;-1369.6;636.9;0.0 +9187200;0;0;0.0 +9190800;0;0;0.0 +9194400;0;1064.2;0.0 +9198000;0;0;0.0 +9201600;-16145.3;0;0.0 +9205200;-19584.0;0;0.0 +9208800;-574.7;0;0.0 +9212400;0;0;0.0 +9216000;0;0;0.0 +9219600;-4138.9;0;0.0 +9223200;-297.3;0;0.0 +9226800;-696.9;0;0.0 +9230400;-4171.9;0;0.0 +9234000;-3007.4;0;0.0 +9237600;0;0;0.0 +9241200;0;1213.5;0.0 +9244800;0;0;0.0 +9248400;0;0;0.0 +9252000;0;0;0.0 +9255600;0;0;0.0 +9259200;0;9624.3;0.0 +9262800;0;0;0.0 +9266400;0;0;0.0 +9270000;-5489.3;340.3;0.0 +9273600;0;0;0.0 +9277200;0;0;0.0 +9280800;0;0;0.0 +9284400;-684.3;0;0.0 +9288000;-24542.4;0;0.0 +9291600;-22002.1;0;0.0 +9295200;-803.3;0;0.0 +9298800;-679.2;0;0.0 +9302400;-1242.4;0;0.0 +9306000;-13814.4;0;0.0 +9309600;-8355.5;0;0.0 +9313200;-19942.7;0;0.0 +9316800;-3468.2;0;0.0 +9320400;-2309.0;0;0.0 +9324000;0;0;0.0 +9327600;0;0;0.0 +9331200;0;0;0.0 +9334800;0;0;0.0 +9338400;0;0;0.0 +9342000;0;0;0.0 +9345600;0;6172.5;0.0 +9349200;0;0;0.0 +9352800;0;0;0.0 +9356400;-5669.1;0;0.0 +9360000;-841.7;0;0.0 +9363600;-3877.2;0;0.0 +9367200;-2850.7;0;0.0 +9370800;-5582.9;0;0.0 +9374400;-38755.2;0;0.0 +9378000;-57017.5;0;0.0 +9381600;-27604.7;0;0.0 +9385200;-22979.9;0;0.0 +9388800;-33443.4;0;0.0 +9392400;-66834.2;0;0.0 +9396000;-61151.1;0;0.0 +9399600;-57965.3;0;0.0 +9403200;-56702.0;0;0.0 +9406800;-7628.5;0;0.0 +9410400;-1178.2;0;0.0 +9414000;0;0;0.0 +9417600;0;0;0.0 +9421200;0;0;0.0 +9424800;0;0;0.0 +9428400;0;0;0.0 +9432000;-292.7;173.0;0.0 +9435600;-1625.1;0;0.0 +9439200;-4309.9;0;0.0 +9442800;-23275.2;0;0.0 +9446400;-2806.9;0;0.0 +9450000;-8863.1;0;0.0 +9453600;-9777.8;0;0.0 +9457200;-36448.8;0;0.0 +9460800;-93210.8;0;0.0 +9464400;-58868.5;0;0.0 +9468000;-22029.2;0;0.0 +9471600;-17539.2;0;0.0 +9475200;-24009.4;0;0.0 +9478800;-61413.6;0;0.0 +9482400;-66587.6;0;0.0 +9486000;-38191.3;0;0.0 +9489600;-26748.3;0;0.0 +9493200;-11504.0;0;0.0 +9496800;-88.7;0;0.0 +9500400;0;0;0.0 +9504000;0;0;0.0 +9507600;0;0;0.0 +9511200;0;0;0.0 +9514800;0;0;0.0 +9518400;-157.0;1318.4;0.0 +9522000;-1079.1;0;0.0 +9525600;-3689.7;0;0.0 +9529200;-9068.7;0;0.0 +9532800;-2014.9;0;0.0 +9536400;-6374.8;0;0.0 +9540000;-4887.6;0;0.0 +9543600;-13518.5;0;0.0 +9547200;-76665.6;0;0.0 +9550800;-76335.1;0;0.0 +9554400;-29686.0;0;0.0 +9558000;-17631.9;0;0.0 +9561600;-11462.7;0;0.0 +9565200;-39268.5;0;0.0 +9568800;-43232.4;0;0.0 +9572400;-29950.6;0;0.0 +9576000;-23322.7;0;0.0 +9579600;-1143.0;0;0.0 +9583200;-84.1;0;0.0 +9586800;0;0;0.0 +9590400;0;0;0.0 +9594000;0;0;0.0 +9597600;0;0;0.0 +9601200;0;0;0.0 +9604800;0;1482.2;0.0 +9608400;-96.4;0;0.0 +9612000;-1866.9;0;0.0 +9615600;-10070.8;0;0.0 +9619200;-2860.1;0;0.0 +9622800;-11566.2;0;0.0 +9626400;-6547.0;0;0.0 +9630000;-11940.4;0;0.0 +9633600;-17562.2;0;0.0 +9637200;-38067.3;0;0.0 +9640800;-19160.1;0;0.0 +9644400;-24598.6;0;0.0 +9648000;-25897.3;0;0.0 +9651600;-22625.4;0;0.0 +9655200;-52707.6;0;0.0 +9658800;-60391.2;0;0.0 +9662400;-19344.5;0;0.0 +9666000;-3287.1;0;0.0 +9669600;-1550.1;0;0.0 +9673200;0;0;0.0 +9676800;0;0;0.0 +9680400;0;0;0.0 +9684000;0;0;0.0 +9687600;0;0;0.0 +9691200;0;2169.7;0.0 +9694800;-1180.7;1723.8;0.0 +9698400;-5180.8;916.7;0.0 +9702000;-940.8;0;0.0 +9705600;-1616.7;0;0.0 +9709200;-2755.3;1872.9;0.0 +9712800;-3816.0;0;0.0 +9716400;-8751.6;0;0.0 +9720000;-28498.2;0;0.0 +9723600;-48354.5;0;0.0 +9727200;-29190.5;0;0.0 +9730800;-19130.5;0;0.0 +9734400;-21567.1;0;0.0 +9738000;-15863.2;0;0.0 +9741600;-11813.8;0;0.0 +9745200;-26032.3;0;0.0 +9748800;-13125.7;0;0.0 +9752400;-951.1;0;0.0 +9756000;0;0;0.0 +9759600;0;0;0.0 +9763200;0;0;0.0 +9766800;0;0;0.0 +9770400;0;0;0.0 +9774000;0;0;0.0 +9777600;0;2425.5;0.0 +9781200;-353.9;1225.3;0.0 +9784800;-4204.1;363.1;0.0 +9788400;-5142.0;0;0.0 +9792000;-2958.8;0;0.0 +9795600;-4815.5;0;0.0 +9799200;-4716.7;0;0.0 +9802800;-8329.1;0;0.0 +9806400;-31358.5;0;0.0 +9810000;-21005.3;0;0.0 +9813600;-7407.5;0;0.0 +9817200;-3355.0;0;0.0 +9820800;-4302.7;0;0.0 +9824400;-5175.9;0;0.0 +9828000;-35683.0;0;0.0 +9831600;-20027.8;0;0.0 +9835200;-33729.9;0;0.0 +9838800;-831.8;0;0.0 +9842400;0;0;0.0 +9846000;0;0;0.0 +9849600;0;0;0.0 +9853200;0;0;0.0 +9856800;0;0;0.0 +9860400;0;0;0.0 +9864000;0;1438.3;0.0 +9867600;0;0;0.0 +9871200;-86.7;0;0.0 +9874800;-12153.2;0;0.0 +9878400;0;0;0.0 +9882000;-1311.9;0;0.0 +9885600;-61.1;0;0.0 +9889200;-10379.7;0;0.0 +9892800;-35834.0;0;0.0 +9896400;-28017.8;0;0.0 +9900000;-6215.9;0;0.0 +9903600;-749.6;0;0.0 +9907200;-1174.1;0;0.0 +9910800;-4634.5;0;0.0 +9914400;-11361.6;0;0.0 +9918000;-28782.0;0;0.0 +9921600;-6879.7;0;0.0 +9925200;0;0;0.0 +9928800;0;0;0.0 +9932400;0;0;0.0 +9936000;0;0;0.0 +9939600;0;0;0.0 +9943200;0;0;0.0 +9946800;0;0;0.0 +9950400;0;4490.4;0.0 +9954000;0;0;0.0 +9957600;0;0;0.0 +9961200;-6048.3;0;0.0 +9964800;-1274.2;0;0.0 +9968400;-2598.3;0;0.0 +9972000;-3761.9;0;0.0 +9975600;-7624.7;0;0.0 +9979200;-43329.9;0;0.0 +9982800;-63748.8;0;0.0 +9986400;-34267.3;0;0.0 +9990000;-12442.3;0;0.0 +9993600;-10974.9;0;0.0 +9997200;-10538.9;0;0.0 +10000800;-52368.6;0;0.0 +10004400;-27420.7;0;0.0 +10008000;-41346.8;0;0.0 +10011600;-1392.5;0;0.0 +10015200;-361.3;0;0.0 +10018800;0;0;0.0 +10022400;0;0;0.0 +10026000;0;0;0.0 +10029600;0;0;0.0 +10033200;0;0;0.0 +10036800;0;1542.3;0.0 +10040400;-230.0;0;0.0 +10044000;-2344.7;0;0.0 +10047600;-15604.5;0;0.0 +10051200;-1805.4;0;0.0 +10054800;-5775.8;0;0.0 +10058400;-2038.3;0;0.0 +10062000;-19266.5;0;0.0 +10065600;-56786.3;0;0.0 +10069200;-48822.6;0;0.0 +10072800;-4858.0;0;0.0 +10076400;-4131.3;0;0.0 +10080000;-18636.8;0;0.0 +10083600;-23296.4;0;0.0 +10087200;-56230.7;0;0.0 +10090800;-8846.7;0;0.0 +10094400;-22109.6;0;0.0 +10098000;-10121.6;0;0.0 +10101600;-47.3;0;0.0 +10105200;0;0;0.0 +10108800;0;0;0.0 +10112400;0;0;0.0 +10116000;0;0;0.0 +10119600;0;0;0.0 +10123200;0;900.8;0.0 +10126800;-369.6;0;0.0 +10130400;-2597.4;0;0.0 +10134000;-25750.6;0;0.0 +10137600;-2227.1;0;0.0 +10141200;-2207.6;0;0.0 +10144800;-688.6;0;0.0 +10148400;-21556.2;0;0.0 +10152000;-47150.9;0;0.0 +10155600;-20361.5;0;0.0 +10159200;-13410.6;0;0.0 +10162800;-1641.3;0;0.0 +10166400;-1571.7;0;0.0 +10170000;-8408.1;0;0.0 +10173600;-31836.7;0;0.0 +10177200;-30430.3;0;0.0 +10180800;-11500.1;0;0.0 +10184400;-15950.1;0;0.0 +10188000;0;0;0.0 +10191600;0;0;0.0 +10195200;0;0;0.0 +10198800;0;0;0.0 +10202400;0;0;0.0 +10206000;0;0;0.0 +10209600;0;3189.4;0.0 +10213200;0;0;0.0 +10216800;0;0;0.0 +10220400;-19807.0;0;0.0 +10224000;-1198.7;0;0.0 +10227600;-1316.5;0;0.0 +10231200;-131.7;0;0.0 +10234800;-3195.1;0;0.0 +10238400;-20440.1;0;0.0 +10242000;-14967.5;0;0.0 +10245600;-1964.7;0;0.0 +10249200;-1696.5;0;0.0 +10252800;-1874.2;0;0.0 +10256400;-1807.3;0;0.0 +10260000;-16257.9;0;0.0 +10263600;-24938.6;0;0.0 +10267200;-5553.2;0;0.0 +10270800;-12484.9;0;0.0 +10274400;-491.7;0;0.0 +10278000;0;0;0.0 +10281600;0;0;0.0 +10285200;0;0;0.0 +10288800;0;0;0.0 +10292400;0;0;0.0 +10296000;0;247.8;0.0 +10299600;-320.7;247.7;0.0 +10303200;-2167.0;0;0.0 +10306800;-100.3;0;0.0 +10310400;0;0;0.0 +10314000;0;4247.6;0.0 +10317600;-953.5;0;0.0 +10321200;-1717.3;0;0.0 +10324800;-10203.7;0;0.0 +10328400;-15108.9;0;0.0 +10332000;-2098.1;0;0.0 +10335600;-1951.9;0;0.0 +10339200;-4460.4;0;0.0 +10342800;-17260.2;0;0.0 +10346400;-24085.4;0;0.0 +10350000;-15951.0;0;0.0 +10353600;-15902.3;0;0.0 +10357200;-1133.2;0;0.0 +10360800;-82.5;0;0.0 +10364400;0;0;0.0 +10368000;0;0;0.0 +10371600;0;0;0.0 +10375200;0;0;0.0 +10378800;0;0;0.0 +10382400;0;1465.5;0.0 +10386000;-202.1;732.8;0.0 +10389600;-1859.1;0;0.0 +10393200;-6805.8;0;0.0 +10396800;-3063.7;0;0.0 +10400400;-5997.0;0;0.0 +10404000;-3863.8;0;0.0 +10407600;-13914.8;0;0.0 +10411200;-40192.2;0;0.0 +10414800;-40458.5;0;0.0 +10418400;-8606.6;0;0.0 +10422000;-2487.2;0;0.0 +10425600;-7792.1;0;0.0 +10429200;-42346.1;0;0.0 +10432800;-63142.1;0;0.0 +10436400;-38639.8;0;0.0 +10440000;-31572.4;0;0.0 +10443600;-9347.3;0;0.0 +10447200;-284.8;0;0.0 +10450800;0;0;0.0 +10454400;0;0;0.0 +10458000;0;0;0.0 +10461600;0;0;0.0 +10465200;0;0;0.0 +10468800;0;474.6;0.0 +10472400;-505.1;0;0.0 +10476000;-2843.8;0;0.0 +10479600;-16267.2;0;0.0 +10483200;-2396.9;0;0.0 +10486800;-6047.3;0;0.0 +10490400;-4404.9;0;0.0 +10494000;-39833.8;0;0.0 +10497600;-89494.4;0;0.0 +10501200;-87429.5;0;0.0 +10504800;-47076.2;0;0.0 +10508400;-26026.1;0;0.0 +10512000;-44125.9;0;0.0 +10515600;-44078.8;0;0.0 +10519200;-85264.3;0;0.0 +10522800;-66117.1;0;0.0 +10526400;-53856.3;0;0.0 +10530000;-33192.2;0;0.0 +10533600;-521.6;0;0.0 +10537200;0;0;0.0 +10540800;0;0;0.0 +10544400;0;0;0.0 +10548000;0;0;0.0 +10551600;0;0;0.0 +10555200;-800.7;899.7;0.0 +10558800;-3135.1;0;0.0 +10562400;-5632.9;0;0.0 +10566000;-24155.1;0;0.0 +10569600;-2313.7;0;0.0 +10573200;-10607.6;0;0.0 +10576800;-6987.9;0;0.0 +10580400;-13885.3;0;0.0 +10584000;-58902.5;0;0.0 +10587600;-71383.0;0;0.0 +10591200;-50941.5;0;0.0 +10594800;-29125.0;0;0.0 +10598400;-37100.2;0;0.0 +10602000;-53999.5;0;0.0 +10605600;-74702.6;0;0.0 +10609200;-72090.9;0;0.0 +10612800;-36823.4;0;0.0 +10616400;-19526.5;0;0.0 +10620000;-79.5;0;0.0 +10623600;0;0;0.0 +10627200;0;0;0.0 +10630800;0;0;0.0 +10634400;0;0;0.0 +10638000;0;0;0.0 +10641600;-1084.8;357.4;0.0 +10645200;-2324.2;0;0.0 +10648800;-4989.3;0;0.0 +10652400;-18191.5;0;0.0 +10656000;-12892.0;0;0.0 +10659600;-17008.0;0;0.0 +10663200;-4116.2;0;0.0 +10666800;-37372.3;0;0.0 +10670400;-84847.8;0;0.0 +10674000;-86328.9;0;0.0 +10677600;-58676.3;0;0.0 +10681200;-35605.7;0;0.0 +10684800;-47486.3;0;0.0 +10688400;-79179.3;0;0.0 +10692000;-88162.7;0;0.0 +10695600;-69855.9;0;0.0 +10699200;-56773.3;0;0.0 +10702800;-33279.4;0;0.0 +10706400;-1162.4;0;0.0 +10710000;0;0;0.0 +10713600;0;0;0.0 +10717200;0;0;0.0 +10720800;0;0;0.0 +10724400;0;0;0.0 +10728000;-1491.5;0;0.0 +10731600;-3364.1;0;0.0 +10735200;-5775.5;0;0.0 +10738800;-32543.0;0;0.0 +10742400;-6309.7;0;0.0 +10746000;-18426.6;0;0.0 +10749600;-14287.7;0;0.0 +10753200;-60090.9;0;0.0 +10756800;-105481.2;0;0.0 +10760400;-106097.4;0;0.0 +10764000;-63743.8;0;0.0 +10767600;-28226.0;0;0.0 +10771200;-37589.8;0;0.0 +10774800;-59358.7;0;0.0 +10778400;-55633.7;0;0.0 +10782000;-72345.1;0;0.0 +10785600;-47575.0;0;0.0 +10789200;-20962.0;0;0.0 +10792800;-64.9;0;0.0 +10796400;0;0;0.0 +10800000;0;0;0.0 +10803600;0;0;0.0 +10807200;0;0;0.0 +10810800;0;0;0.0 +10814400;-1322.8;203.1;0.0 +10818000;-2196.2;0;0.0 +10821600;-4812.4;0;0.0 +10825200;-32850.8;0;0.0 +10828800;-11008.7;0;0.0 +10832400;-17084.2;0;0.0 +10836000;-9787.2;0;0.0 +10839600;-22638.8;0;0.0 +10843200;-19370.6;0;0.0 +10846800;-37684.0;0;0.0 +10850400;-2768.0;0;0.0 +10854000;-8252.1;0;0.0 +10857600;-9577.9;0;0.0 +10861200;-22444.0;0;0.0 +10864800;-30086.6;0;0.0 +10868400;-35349.5;0;0.0 +10872000;-21901.1;0;0.0 +10875600;-23606.0;0;0.0 +10879200;-468.6;0;0.0 +10882800;0;0;0.0 +10886400;0;0;0.0 +10890000;0;0;0.0 +10893600;0;0;0.0 +10897200;0;0;0.0 +10900800;0;706.8;0.0 +10904400;-979.8;881.3;0.0 +10908000;-4683.8;255.8;0.0 +10911600;-1264.8;0;0.0 +10915200;-3098.9;0;0.0 +10918800;-2641.2;1122.1;0.0 +10922400;-3562.6;0;0.0 +10926000;-5192.8;0;0.0 +10929600;-17047.5;0;0.0 +10933200;-30728.2;0;0.0 +10936800;-12678.5;0;0.0 +10940400;-10920.3;0;0.0 +10944000;-16351.3;0;0.0 +10947600;-25513.8;0;0.0 +10951200;-28645.2;0;0.0 +10954800;-21474.1;0;0.0 +10958400;-9357.8;0;0.0 +10962000;-1627.4;0;0.0 +10965600;-68.3;0;0.0 +10969200;0;0;0.0 +10972800;0;0;0.0 +10976400;0;0;0.0 +10980000;0;0;0.0 +10983600;0;0;0.0 +10987200;0;1608.9;0.0 +10990800;-582.5;0;0.0 +10994400;-2882.5;0;0.0 +10998000;-8968.5;0;0.0 +11001600;-3029.3;0;0.0 +11005200;-15375.5;0;0.0 +11008800;-3910.3;0;0.0 +11012400;-8023.8;0;0.0 +11016000;-41856.9;0;0.0 +11019600;-61250.1;0;0.0 +11023200;-8876.6;0;0.0 +11026800;-7000.5;0;0.0 +11030400;-16447.7;0;0.0 +11034000;-30575.8;0;0.0 +11037600;-63202.1;0;0.0 +11041200;-34758.7;0;0.0 +11044800;-36136.1;0;0.0 +11048400;-6757.0;0;0.0 +11052000;-748.7;0;0.0 +11055600;0;0;0.0 +11059200;0;0;0.0 +11062800;0;0;0.0 +11066400;0;0;0.0 +11070000;0;0;0.0 +11073600;0;0;0.0 +11077200;-814.1;0;0.0 +11080800;-3424.0;0;0.0 +11084400;-19533.0;0;0.0 +11088000;-1318.4;0;0.0 +11091600;-9465.0;0;0.0 +11095200;-5683.1;0;0.0 +11098800;-43817.6;0;0.0 +11102400;-91942.1;0;0.0 +11106000;-95202.9;0;0.0 +11109600;-64329.2;0;0.0 +11113200;-52180.6;0;0.0 +11116800;-61559.5;0;0.0 +11120400;-83950.0;0;0.0 +11124000;-106766.4;0;0.0 +11127600;-108372.0;0;0.0 +11131200;-106123.7;0;0.0 +11134800;-66673.0;0;0.0 +11138400;-4925.2;0;0.0 +11142000;0;0;0.0 +11145600;0;0;0.0 +11149200;0;0;0.0 +11152800;0;0;0.0 +11156400;0;0;0.0 +11160000;-3268.5;0;0.0 +11163600;-5302.6;0;0.0 +11167200;-7474.5;0;0.0 +11170800;-11480.9;0;0.0 +11174400;-16991.4;0;0.0 +11178000;-39620.1;0;0.0 +11181600;-55911.3;0;0.0 +11185200;-101993.7;0;0.0 +11188800;-135462.7;0;0.0 +11192400;-132918.5;0;0.0 +11196000;-107368.1;0;0.0 +11199600;-92399.3;0;0.0 +11203200;-99520.6;0;0.0 +11206800;-119292.7;0;0.0 +11210400;-119997.9;0;0.0 +11214000;-128883.0;0;0.0 +11217600;-121816.6;0;0.0 +11221200;-85193.8;0;0.0 +11224800;-35210.5;0;0.0 +11228400;-10862.1;0;0.0 +11232000;-1007.7;0;0.0 +11235600;0;0;0.0 +11239200;0;0;0.0 +11242800;0;0;0.0 +11246400;-10049.4;0;0.0 +11250000;-6927.2;0;0.0 +11253600;-9261.3;0;0.0 +11257200;-20421.0;0;0.0 +11260800;-850.3;0;0.0 +11264400;-7726.4;0;0.0 +11268000;-5260.7;0;0.0 +11271600;-29994.3;0;0.0 +11275200;-65084.1;0;0.0 +11278800;-51845.1;0;0.0 +11282400;-28123.1;0;0.0 +11286000;-1046.8;0;0.0 +11289600;-2592.4;0;0.0 +11293200;-20047.6;0;0.0 +11296800;-40692.0;0;0.0 +11300400;-20496.6;0;0.0 +11304000;-24938.2;0;0.0 +11307600;-5843.0;0;0.0 +11311200;-20.0;0;0.0 +11314800;0;0;0.0 +11318400;0;0;0.0 +11322000;0;0;0.0 +11325600;0;0;0.0 +11329200;0;0;0.0 +11332800;-267.5;487.9;0.0 +11336400;-73.1;0;0.0 +11340000;-2055.1;0;0.0 +11343600;-30440.0;0;0.0 +11347200;-4066.4;0;0.0 +11350800;-6379.7;0;0.0 +11354400;-754.1;0;0.0 +11358000;-28387.3;0;0.0 +11361600;-54628.7;0;0.0 +11365200;-47339.1;0;0.0 +11368800;-7243.1;0;0.0 +11372400;-1555.3;0;0.0 +11376000;-3945.1;0;0.0 +11379600;-43616.4;0;0.0 +11383200;-69218.6;0;0.0 +11386800;-53014.3;0;0.0 +11390400;-40589.5;0;0.0 +11394000;-15294.2;0;0.0 +11397600;-65.3;0;0.0 +11401200;0;0;0.0 +11404800;0;0;0.0 +11408400;0;0;0.0 +11412000;0;0;0.0 +11415600;0;0;0.0 +11419200;-160.7;367.2;0.0 +11422800;-606.1;0;0.0 +11426400;-2928.6;0;0.0 +11430000;-7956.7;0;0.0 +11433600;-18002.8;0;0.0 +11437200;-13819.8;0;0.0 +11440800;-13432.6;0;0.0 +11444400;-69520.7;0;0.0 +11448000;-85036.4;0;0.0 +11451600;-95382.5;0;0.0 +11455200;-84837.8;0;0.0 +11458800;-83590.8;0;0.0 +11462400;-92776.2;0;0.0 +11466000;-95937.8;0;0.0 +11469600;-125578.3;0;0.0 +11473200;-138746.8;0;0.0 +11476800;-115179.5;0;0.0 +11480400;-103696.4;0;0.0 +11484000;-75826.0;0;0.0 +11487600;-36701.4;0;0.0 +11491200;-2194.7;0;0.0 +11494800;0;0;0.0 +11498400;0;0;0.0 +11502000;0;0;0.0 +11505600;-10364.0;0;0.0 +11509200;-19111.5;0;0.0 +11512800;-24455.5;0;0.0 +11516400;-2955.3;0;0.0 +11520000;-12611.7;0;0.0 +11523600;-41679.5;0;0.0 +11527200;-57016.2;0;0.0 +11530800;-87143.8;0;0.0 +11534400;-114037.9;0;0.0 +11538000;-119720.0;0;0.0 +11541600;-105345.9;0;0.0 +11545200;-99513.3;0;0.0 +11548800;-106556.9;0;0.0 +11552400;-86543.1;0;0.0 +11556000;-120581.4;0;0.0 +11559600;-107209.0;0;0.0 +11563200;-89338.9;0;0.0 +11566800;-31528.5;0;0.0 +11570400;-922.3;0;0.0 +11574000;0;0;0.0 +11577600;0;0;0.0 +11581200;0;0;0.0 +11584800;0;0;0.0 +11588400;0;0;0.0 +11592000;-5541.1;0;0.0 +11595600;-5354.3;0;0.0 +11599200;-7464.2;0;0.0 +11602800;-12418.5;0;0.0 +11606400;-20834.9;0;0.0 +11610000;-29483.7;0;0.0 +11613600;-14970.5;0;0.0 +11617200;-73345.4;0;0.0 +11620800;-118560.3;0;0.0 +11624400;-119166.1;0;0.0 +11628000;-83361.4;0;0.0 +11631600;-65324.9;0;0.0 +11635200;-73658.8;0;0.0 +11638800;-105080.8;0;0.0 +11642400;-129673.3;0;0.0 +11646000;-119800.4;0;0.0 +11649600;-80960.3;0;0.0 +11653200;-32104.9;0;0.0 +11656800;-4628.8;0;0.0 +11660400;0;0;0.0 +11664000;0;0;0.0 +11667600;0;0;0.0 +11671200;0;0;0.0 +11674800;0;0;0.0 +11678400;-3637.1;0;0.0 +11682000;-5032.6;0;0.0 +11685600;-6962.0;0;0.0 +11689200;-12008.3;0;0.0 +11692800;-18163.7;0;0.0 +11696400;-27963.3;0;0.0 +11700000;-28392.1;0;0.0 +11703600;-84419.8;0;0.0 +11707200;-123282.0;0;0.0 +11710800;-125125.7;0;0.0 +11714400;-101725.0;0;0.0 +11718000;-89257.5;0;0.0 +11721600;-98136.5;0;0.0 +11725200;-120999.4;0;0.0 +11728800;-143128.2;0;0.0 +11732400;-139816.4;0;0.0 +11736000;-137039.7;0;0.0 +11739600;-101483.3;0;0.0 +11743200;-50296.7;0;0.0 +11746800;-10782.1;0;0.0 +11750400;-1472.3;0;0.0 +11754000;0;0;0.0 +11757600;0;0;0.0 +11761200;0;0;0.0 +11764800;-10862.6;0;0.0 +11768400;-7260.6;0;0.0 +11772000;-9927.2;0;0.0 +11775600;-62657.3;0;0.0 +11779200;-70527.1;0;0.0 +11782800;-79934.6;0;0.0 +11786400;-73598.0;0;0.0 +11790000;-100366.3;0;0.0 +11793600;-131653.4;0;0.0 +11797200;-124912.6;0;0.0 +11800800;-89693.6;0;0.0 +11804400;-66103.8;0;0.0 +11808000;-76889.3;0;0.0 +11811600;-73599.5;0;0.0 +11815200;-113837.1;0;0.0 +11818800;-116063.5;0;0.0 +11822400;-106147.5;0;0.0 +11826000;-57528.8;0;0.0 +11829600;-12902.3;0;0.0 +11833200;-37.7;0;0.0 +11836800;0;0;0.0 +11840400;0;0;0.0 +11844000;0;0;0.0 +11847600;0;0;0.0 +11851200;-6652.7;0;0.0 +11854800;-5752.9;0;0.0 +11858400;-8224.2;0;0.0 +11862000;-9965.0;0;0.0 +11865600;-18864.5;0;0.0 +11869200;-27484.5;0;0.0 +11872800;-5551.8;0;0.0 +11876400;-24887.5;0;0.0 +11880000;-49173.3;0;0.0 +11883600;-75893.6;0;0.0 +11887200;-15408.1;0;0.0 +11890800;-4618.8;0;0.0 +11894400;-19306.7;0;0.0 +11898000;-45048.9;0;0.0 +11901600;-72781.8;0;0.0 +11905200;-63536.4;0;0.0 +11908800;-42005.7;0;0.0 +11912400;-17726.4;0;0.0 +11916000;-146.2;0;0.0 +11919600;0;0;0.0 +11923200;0;0;0.0 +11926800;0;0;0.0 +11930400;0;0;0.0 +11934000;0;0;0.0 +11937600;-939.2;20.7;0.0 +11941200;-1243.3;0;0.0 +11944800;-3892.1;0;0.0 +11948400;-33641.0;0;0.0 +11952000;-7236.2;0;0.0 +11955600;-10663.4;0;0.0 +11959200;-10364.3;0;0.0 +11962800;-55020.1;0;0.0 +11966400;-83288.3;0;0.0 +11970000;-82530.7;0;0.0 +11973600;-53812.5;0;0.0 +11977200;-28449.2;0;0.0 +11980800;-32377.2;0;0.0 +11984400;-61374.6;0;0.0 +11988000;-78520.4;0;0.0 +11991600;-76704.7;0;0.0 +11995200;-42092.4;0;0.0 +11998800;-24834.6;0;0.0 +12002400;-4079.9;0;0.0 +12006000;0;0;0.0 +12009600;0;0;0.0 +12013200;0;0;0.0 +12016800;0;0;0.0 +12020400;0;0;0.0 +12024000;-1556.7;0;0.0 +12027600;-2459.6;0;0.0 +12031200;-5034.7;0;0.0 +12034800;-36431.4;0;0.0 +12038400;-9306.2;0;0.0 +12042000;-17804.9;0;0.0 +12045600;-11680.6;0;0.0 +12049200;-55658.1;0;0.0 +12052800;-76524.8;0;0.0 +12056400;-87483.4;0;0.0 +12060000;-77538.9;0;0.0 +12063600;-78217.1;0;0.0 +12067200;-88203.4;0;0.0 +12070800;-85077.0;0;0.0 +12074400;-116510.0;0;0.0 +12078000;-132788.8;0;0.0 +12081600;-109750.1;0;0.0 +12085200;-103046.0;0;0.0 +12088800;-75587.9;0;0.0 +12092400;-27814.3;0;0.0 +12096000;-1987.4;0;0.0 +12099600;0;0;0.0 +12103200;0;0;0.0 +12106800;0;0;0.0 +12110400;-10335.1;0;0.0 +12114000;-18105.5;0;0.0 +12117600;-23316.3;0;0.0 +12121200;-2826.4;0;0.0 +12124800;-2980.5;0;0.0 +12128400;-26875.0;0;0.0 +12132000;-39077.3;0;0.0 +12135600;-62624.8;0;0.0 +12139200;-90972.1;0;0.0 +12142800;-101894.7;0;0.0 +12146400;-83157.8;0;0.0 +12150000;-77000.6;0;0.0 +12153600;-88775.4;0;0.0 +12157200;-97059.6;0;0.0 +12160800;-107589.2;0;0.0 +12164400;-105635.3;0;0.0 +12168000;-96932.8;0;0.0 +12171600;-41884.3;0;0.0 +12175200;-2577.7;0;0.0 +12178800;-19.6;0;0.0 +12182400;0;0;0.0 +12186000;0;0;0.0 +12189600;0;0;0.0 +12193200;0;0;0.0 +12196800;-4764.8;0;0.0 +12200400;-5570.6;0;0.0 +12204000;-8297.1;0;0.0 +12207600;-12191.1;0;0.0 +12211200;-21671.5;0;0.0 +12214800;-20403.7;0;0.0 +12218400;-23483.4;0;0.0 +12222000;-63893.5;0;0.0 +12225600;-108221.0;0;0.0 +12229200;-106896.6;0;0.0 +12232800;-75768.8;0;0.0 +12236400;-59791.5;0;0.0 +12240000;-72198.9;0;0.0 +12243600;-104729.2;0;0.0 +12247200;-133453.5;0;0.0 +12250800;-125154.8;0;0.0 +12254400;-91424.1;0;0.0 +12258000;-46610.9;0;0.0 +12261600;-3695.6;0;0.0 +12265200;-11.8;0;0.0 +12268800;0;0;0.0 +12272400;0;0;0.0 +12276000;0;0;0.0 +12279600;0;0;0.0 +12283200;-4071.4;0;0.0 +12286800;-5260.4;0;0.0 +12290400;-7214.1;0;0.0 +12294000;-12639.2;0;0.0 +12297600;-18992.3;0;0.0 +12301200;-48994.9;0;0.0 +12304800;-59045.1;0;0.0 +12308400;-102973.9;0;0.0 +12312000;-136279.8;0;0.0 +12315600;-132614.2;0;0.0 +12319200;-107390.0;0;0.0 +12322800;-93531.6;0;0.0 +12326400;-101791.4;0;0.0 +12330000;-126564.8;0;0.0 +12333600;-153028.8;0;0.0 +12337200;-146457.7;0;0.0 +12340800;-141635.7;0;0.0 +12344400;-110416.7;0;0.0 +12348000;-75979.2;0;0.0 +12351600;-47027.9;0;0.0 +12355200;-5819.3;0;0.0 +12358800;0;0;0.0 +12362400;0;0;0.0 +12366000;0;0;0.0 +12369600;-17817.7;0;0.0 +12373200;-9321.7;0;0.0 +12376800;-12249.6;0;0.0 +12380400;-43793.0;0;0.0 +12384000;-59523.0;0;0.0 +12387600;-75430.2;0;0.0 +12391200;-30360.3;0;0.0 +12394800;-70612.9;0;0.0 +12398400;-100732.9;0;0.0 +12402000;-74479.9;0;0.0 +12405600;-25015.7;0;0.0 +12409200;-12506.5;0;0.0 +12412800;-15430.3;0;0.0 +12416400;-44055.8;0;0.0 +12420000;-69189.1;0;0.0 +12423600;-74711.4;0;0.0 +12427200;-71668.7;0;0.0 +12430800;-24619.1;0;0.0 +12434400;-948.3;0;0.0 +12438000;0;0;0.0 +12441600;0;0;0.0 +12445200;0;0;0.0 +12448800;0;0;0.0 +12452400;0;0;0.0 +12456000;-1905.6;0;0.0 +12459600;-3287.1;0;0.0 +12463200;-5793.5;0;0.0 +12466800;-34624.4;0;0.0 +12470400;-6426.8;0;0.0 +12474000;-25826.3;0;0.0 +12477600;-13012.0;0;0.0 +12481200;-71963.9;0;0.0 +12484800;-111926.1;0;0.0 +12488400;-109221.0;0;0.0 +12492000;-83056.3;0;0.0 +12495600;-48692.6;0;0.0 +12499200;-52023.7;0;0.0 +12502800;-59521.6;0;0.0 +12506400;-102166.5;0;0.0 +12510000;-86971.3;0;0.0 +12513600;-81345.2;0;0.0 +12517200;-36130.8;0;0.0 +12520800;-6126.2;0;0.0 +12524400;-183.3;0;0.0 +12528000;0;0;0.0 +12531600;0;0;0.0 +12535200;0;0;0.0 +12538800;0;0;0.0 +12542400;-3450.3;0;0.0 +12546000;-5348.6;0;0.0 +12549600;-7473.4;0;0.0 +12553200;-12567.0;0;0.0 +12556800;-17356.1;0;0.0 +12560400;-31475.5;0;0.0 +12564000;-45103.9;0;0.0 +12567600;-96424.3;0;0.0 +12571200;-132080.2;0;0.0 +12574800;-126922.4;0;0.0 +12578400;-103477.7;0;0.0 +12582000;-87234.9;0;0.0 +12585600;-99792.3;0;0.0 +12589200;-126298.5;0;0.0 +12592800;-153020.9;0;0.0 +12596400;-148159.0;0;0.0 +12600000;-139451.4;0;0.0 +12603600;-79031.4;0;0.0 +12607200;-17568.5;0;0.0 +12610800;-376.3;0;0.0 +12614400;0;0;0.0 +12618000;0;0;0.0 +12621600;0;0;0.0 +12625200;0;0;0.0 +12628800;-8163.0;0;0.0 +12632400;-5708.9;0;0.0 +12636000;-9139.5;0;0.0 +12639600;-19040.6;0;0.0 +12643200;-42140.5;0;0.0 +12646800;-50306.7;0;0.0 +12650400;-60719.7;0;0.0 +12654000;-105490.1;0;0.0 +12657600;-115121.5;0;0.0 +12661200;-119108.4;0;0.0 +12664800;-105430.5;0;0.0 +12668400;-103377.5;0;0.0 +12672000;-111560.0;0;0.0 +12675600;-115225.4;0;0.0 +12679200;-149010.7;0;0.0 +12682800;-158239.5;0;0.0 +12686400;-130448.3;0;0.0 +12690000;-114937.1;0;0.0 +12693600;-73773.1;0;0.0 +12697200;-22839.4;0;0.0 +12700800;-490.4;0;0.0 +12704400;0;0;0.0 +12708000;0;0;0.0 +12711600;0;0;0.0 +12715200;-12796.4;0;0.0 +12718800;-23039.6;0;0.0 +12722400;-29078.1;0;0.0 +12726000;-4765.6;0;0.0 +12729600;-16195.7;0;0.0 +12733200;-46914.5;0;0.0 +12736800;-59564.9;0;0.0 +12740400;-55715.3;0;0.0 +12744000;-75356.3;0;0.0 +12747600;-51688.5;0;0.0 +12751200;-21472.6;0;0.0 +12754800;-33292.9;0;0.0 +12758400;-41961.9;0;0.0 +12762000;-53105.1;0;0.0 +12765600;-75951.8;0;0.0 +12769200;-86828.4;0;0.0 +12772800;-95060.9;0;0.0 +12776400;-45382.3;0;0.0 +12780000;-11844.5;0;0.0 +12783600;-281.7;0;0.0 +12787200;-269.1;0;0.0 +12790800;0;0;0.0 +12794400;0;0;0.0 +12798000;0;0;0.0 +12801600;-6603.0;0;0.0 +12805200;-6303.3;0;0.0 +12808800;-9096.0;0;0.0 +12812400;-58221.4;0;0.0 +12816000;-61612.6;0;0.0 +12819600;-54619.4;0;0.0 +12823200;-58119.7;0;0.0 +12826800;-100557.2;0;0.0 +12830400;-128303.9;0;0.0 +12834000;-119283.2;0;0.0 +12837600;-79892.2;0;0.0 +12841200;-61617.7;0;0.0 +12844800;-66582.6;0;0.0 +12848400;-78679.8;0;0.0 +12852000;-104981.5;0;0.0 +12855600;-85413.3;0;0.0 +12859200;-78555.4;0;0.0 +12862800;-41409.3;0;0.0 +12866400;-17757.5;0;0.0 +12870000;-5.5;0;0.0 +12873600;0;0;0.0 +12877200;0;0;0.0 +12880800;0;0;0.0 +12884400;0;0;0.0 +12888000;-5575.5;0;0.0 +12891600;-5573.5;0;0.0 +12895200;-8100.1;0;0.0 +12898800;-11791.0;0;0.0 +12902400;-7506.7;0;0.0 +12906000;-24937.7;0;0.0 +12909600;-21677.1;0;0.0 +12913200;-77093.9;0;0.0 +12916800;-117794.7;0;0.0 +12920400;-115757.6;0;0.0 +12924000;-89682.7;0;0.0 +12927600;-70628.0;0;0.0 +12931200;-79211.9;0;0.0 +12934800;-107741.6;0;0.0 +12938400;-133407.6;0;0.0 +12942000;-120204.9;0;0.0 +12945600;-104457.9;0;0.0 +12949200;-57392.1;0;0.0 +12952800;-13516.8;0;0.0 +12956400;-765.3;0;0.0 +12960000;0;0;0.0 +12963600;0;0;0.0 +12967200;0;0;0.0 +12970800;0;0;0.0 +12974400;-6387.2;0;0.0 +12978000;-5597.6;0;0.0 +12981600;-9115.9;0;0.0 +12985200;-39045.8;0;0.0 +12988800;-52990.9;0;0.0 +12992400;-67748.5;0;0.0 +12996000;-64338.2;0;0.0 +12999600;-106620.8;0;0.0 +13003200;-139619.0;0;0.0 +13006800;-135040.2;0;0.0 +13010400;-109677.8;0;0.0 +13014000;-93707.9;0;0.0 +13017600;-107015.8;0;0.0 +13021200;-132567.0;0;0.0 +13024800;-160916.7;0;0.0 +13028400;-156634.9;0;0.0 +13032000;-147706.3;0;0.0 +13035600;-111597.0;0;0.0 +13039200;-69431.1;0;0.0 +13042800;-28144.9;0;0.0 +13046400;-2753.1;0;0.0 +13050000;0;0;0.0 +13053600;0;0;0.0 +13057200;0;0;0.0 +13060800;-15167.2;0;0.0 +13064400;-8108.1;0;0.0 +13068000;-11072.7;0;0.0 +13071600;-40217.8;0;0.0 +13075200;-66297.3;0;0.0 +13078800;-80830.0;0;0.0 +13082400;-72664.5;0;0.0 +13086000;-116422.0;0;0.0 +13089600;-151038.0;0;0.0 +13093200;-148064.5;0;0.0 +13096800;-122303.4;0;0.0 +13100400;-107032.5;0;0.0 +13104000;-120043.9;0;0.0 +13107600;-146837.3;0;0.0 +13111200;-173046.3;0;0.0 +13114800;-164149.7;0;0.0 +13118400;-156622.9;0;0.0 +13122000;-123196.9;0;0.0 +13125600;-87233.6;0;0.0 +13129200;-52753.4;0;0.0 +13132800;-6181.0;0;0.0 +13136400;0;0;0.0 +13140000;0;0;0.0 +13143600;0;0;0.0 +13147200;-22470.8;0;0.0 +13150800;-11265.6;0;0.0 +13154400;-14508.4;0;0.0 +13158000;-96872.7;0;0.0 +13161600;-107036.7;0;0.0 +13165200;-119164.6;0;0.0 +13168800;-115045.1;0;0.0 +13172400;-150666.5;0;0.0 +13176000;-179240.8;0;0.0 +13179600;-169428.3;0;0.0 +13183200;-136202.4;0;0.0 +13186800;-117318.0;0;0.0 +13190400;-123100.9;0;0.0 +13194000;-143068.6;0;0.0 +13197600;-164243.8;0;0.0 +13201200;-157346.2;0;0.0 +13204800;-152662.3;0;0.0 +13208400;-117422.4;0;0.0 +13212000;-79308.2;0;0.0 +13215600;-36619.0;0;0.0 +13219200;-3601.2;0;0.0 +13222800;0;0;0.0 +13226400;0;0;0.0 +13230000;0;0;0.0 +13233600;-16897.2;0;0.0 +13237200;-8017.0;0;0.0 +13240800;-10687.1;0;0.0 +13244400;-20293.7;0;0.0 +13248000;-22759.6;0;0.0 +13251600;-42255.5;0;0.0 +13255200;-36513.8;0;0.0 +13258800;-81987.3;0;0.0 +13262400;-105917.0;0;0.0 +13266000;-111873.2;0;0.0 +13269600;-101162.8;0;0.0 +13273200;-99371.4;0;0.0 +13276800;-106061.4;0;0.0 +13280400;-107884.6;0;0.0 +13284000;-140353.4;0;0.0 +13287600;-158893.6;0;0.0 +13291200;-126968.4;0;0.0 +13294800;-106863.5;0;0.0 +13298400;-41379.9;0;0.0 +13302000;-7765.7;0;0.0 +13305600;0;0;0.0 +13309200;0;0;0.0 +13312800;0;0;0.0 +13316400;0;0;0.0 +13320000;-9711.4;0;0.0 +13323600;-17921.8;0;0.0 +13327200;-23717.4;0;0.0 +13330800;-2873.7;0;0.0 +13334400;-3662.0;0;0.0 +13338000;-3449.9;0;0.0 +13341600;-16995.6;0;0.0 +13345200;-51567.6;0;0.0 +13348800;-87611.0;0;0.0 +13352400;-96855.4;0;0.0 +13356000;-82870.2;0;0.0 +13359600;-79990.6;0;0.0 +13363200;-92580.8;0;0.0 +13366800;-105047.8;0;0.0 +13370400;-121703.7;0;0.0 +13374000;-121778.0;0;0.0 +13377600;-120058.3;0;0.0 +13381200;-67572.8;0;0.0 +13384800;-29915.7;0;0.0 +13388400;-4712.1;0;0.0 +13392000;-700.3;0;0.0 +13395600;0;0;0.0 +13399200;0;0;0.0 +13402800;0;0;0.0 +13406400;-8862.0;0;0.0 +13410000;-6637.4;0;0.0 +13413600;-9135.0;0;0.0 +13417200;-21806.7;0;0.0 +13420800;-12674.3;0;0.0 +13424400;-46572.3;0;0.0 +13428000;-33814.5;0;0.0 +13431600;-77820.9;0;0.0 +13435200;-115496.4;0;0.0 +13438800;-115996.3;0;0.0 +13442400;-94585.7;0;0.0 +13446000;-75140.3;0;0.0 +13449600;-85236.1;0;0.0 +13453200;-115582.2;0;0.0 +13456800;-143585.5;0;0.0 +13460400;-140950.6;0;0.0 +13464000;-112108.1;0;0.0 +13467600;-64553.3;0;0.0 +13471200;-5680.9;0;0.0 +13474800;-170.8;0;0.0 +13478400;0;0;0.0 +13482000;0;0;0.0 +13485600;0;0;0.0 +13489200;0;0;0.0 +13492800;-5643.9;0;0.0 +13496400;-5366.5;0;0.0 +13500000;-8316.3;0;0.0 +13503600;-12753.8;0;0.0 +13507200;-24515.4;0;0.0 +13510800;-31509.6;0;0.0 +13514400;-34643.4;0;0.0 +13518000;-97109.4;0;0.0 +13521600;-131822.6;0;0.0 +13525200;-128093.5;0;0.0 +13528800;-105194.3;0;0.0 +13532400;-91755.3;0;0.0 +13536000;-103591.3;0;0.0 +13539600;-131806.0;0;0.0 +13543200;-157332.2;0;0.0 +13546800;-153864.3;0;0.0 +13550400;-145493.9;0;0.0 +13554000;-109682.1;0;0.0 +13557600;-50566.5;0;0.0 +13561200;-4568.0;0;0.0 +13564800;-41.5;0;0.0 +13568400;0;0;0.0 +13572000;0;0;0.0 +13575600;0;0;0.0 +13579200;-11441.4;0;0.0 +13582800;-6962.0;0;0.0 +13586400;-9394.2;0;0.0 +13590000;-46363.2;0;0.0 +13593600;-58233.8;0;0.0 +13597200;-73268.9;0;0.0 +13600800;-71524.9;0;0.0 +13604400;-111927.5;0;0.0 +13608000;-140458.4;0;0.0 +13611600;-129466.6;0;0.0 +13615200;-102779.0;0;0.0 +13618800;-85682.3;0;0.0 +13622400;-93703.5;0;0.0 +13626000;-118482.9;0;0.0 +13629600;-138368.0;0;0.0 +13633200;-136840.5;0;0.0 +13636800;-136673.0;0;0.0 +13640400;-100864.2;0;0.0 +13644000;-62804.3;0;0.0 +13647600;-27915.7;0;0.0 +13651200;-3144.9;0;0.0 +13654800;0;0;0.0 +13658400;0;0;0.0 +13662000;0;0;0.0 +13665600;-15026.3;0;0.0 +13669200;-8312.7;0;0.0 +13672800;-11014.1;0;0.0 +13676400;-65563.7;0;0.0 +13680000;-76976.4;0;0.0 +13683600;-83447.5;0;0.0 +13687200;-79452.8;0;0.0 +13690800;-121438.5;0;0.0 +13694400;-150596.4;0;0.0 +13698000;-144965.2;0;0.0 +13701600;-118903.3;0;0.0 +13705200;-88875.0;0;0.0 +13708800;-105252.9;0;0.0 +13712400;-125774.6;0;0.0 +13716000;-150016.4;0;0.0 +13719600;-144497.7;0;0.0 +13723200;-138952.6;0;0.0 +13726800;-104879.8;0;0.0 +13730400;-47554.7;0;0.0 +13734000;-10098.1;0;0.0 +13737600;-56.4;0;0.0 +13741200;0;0;0.0 +13744800;0;0;0.0 +13748400;0;0;0.0 +13752000;-13179.9;0;0.0 +13755600;-7462.2;0;0.0 +13759200;-9745.6;0;0.0 +13762800;-18386.2;0;0.0 +13766400;-23056.2;0;0.0 +13770000;-45370.9;0;0.0 +13773600;-50128.7;0;0.0 +13777200;-100446.9;0;0.0 +13780800;-135310.5;0;0.0 +13784400;-129701.2;0;0.0 +13788000;-99250.6;0;0.0 +13791600;-80877.9;0;0.0 +13795200;-90914.6;0;0.0 +13798800;-114242.0;0;0.0 +13802400;-140201.2;0;0.0 +13806000;-141295.7;0;0.0 +13809600;-135383.4;0;0.0 +13813200;-91445.7;0;0.0 +13816800;-24905.9;0;0.0 +13820400;-293.9;0;0.0 +13824000;0;0;0.0 +13827600;0;0;0.0 +13831200;0;0;0.0 +13834800;0;0;0.0 +13838400;-8206.0;0;0.0 +13842000;-5823.5;0;0.0 +13845600;-9341.2;0;0.0 +13849200;-16338.8;0;0.0 +13852800;-40172.1;0;0.0 +13856400;-46466.8;0;0.0 +13860000;-38151.1;0;0.0 +13863600;-91345.6;0;0.0 +13867200;-105749.4;0;0.0 +13870800;-112532.7;0;0.0 +13874400;-100451.2;0;0.0 +13878000;-99281.5;0;0.0 +13881600;-107093.4;0;0.0 +13885200;-112841.3;0;0.0 +13888800;-148241.0;0;0.0 +13892400;-164795.0;0;0.0 +13896000;-138398.4;0;0.0 +13899600;-126574.3;0;0.0 +13903200;-90530.1;0;0.0 +13906800;-38328.9;0;0.0 +13910400;-2463.3;0;0.0 +13914000;0;0;0.0 +13917600;0;0;0.0 +13921200;0;0;0.0 +13924800;-15179.2;0;0.0 +13928400;-25638.5;0;0.0 +13932000;-32864.7;0;0.0 +13935600;-11945.8;0;0.0 +13939200;-22908.9;0;0.0 +13942800;-87267.0;0;0.0 +13946400;-104605.4;0;0.0 +13950000;-122282.4;0;0.0 +13953600;-138713.1;0;0.0 +13957200;-138902.1;0;0.0 +13960800;-120335.9;0;0.0 +13964400;-113157.8;0;0.0 +13968000;-123382.1;0;0.0 +13971600;-135236.7;0;0.0 +13975200;-150303.5;0;0.0 +13978800;-154075.7;0;0.0 +13982400;-148216.4;0;0.0 +13986000;-107900.5;0;0.0 +13989600;-72522.6;0;0.0 +13993200;-50532.4;0;0.0 +13996800;-6081.6;0;0.0 +14000400;0;0;0.0 +14004000;0;0;0.0 +14007600;0;0;0.0 +14011200;-23691.3;0;0.0 +14014800;-11626.1;0;0.0 +14018400;-14988.4;0;0.0 +14022000;-100455.3;0;0.0 +14025600;-110865.0;0;0.0 +14029200;-122993.1;0;0.0 +14032800;-121022.8;0;0.0 +14036400;-158684.0;0;0.0 +14040000;-187433.1;0;0.0 +14043600;-178532.9;0;0.0 +14047200;-149390.7;0;0.0 +14050800;-130374.1;0;0.0 +14054400;-139131.4;0;0.0 +14058000;-158310.4;0;0.0 +14061600;-178031.1;0;0.0 +14065200;-167816.4;0;0.0 +14068800;-160707.1;0;0.0 +14072400;-128283.4;0;0.0 +14076000;-74761.8;0;0.0 +14079600;-27491.2;0;0.0 +14083200;-2736.7;0;0.0 +14086800;0;0;0.0 +14090400;0;0;0.0 +14094000;0;0;0.0 +14097600;-15340.8;0;0.0 +14101200;-8059.6;0;0.0 +14104800;-10099.2;0;0.0 +14108400;-12448.3;0;0.0 +14112000;-6253.2;0;0.0 +14115600;-13359.3;0;0.0 +14119200;-10022.0;0;0.0 +14122800;-23611.9;0;0.0 +14126400;-46167.2;0;0.0 +14130000;-49659.2;0;0.0 +14133600;-5202.1;0;0.0 +14137200;-6060.0;0;0.0 +14140800;-14436.6;0;0.0 +14144400;-36078.5;0;0.0 +14148000;-79428.9;0;0.0 +14151600;-78533.9;0;0.0 +14155200;-42333.8;0;0.0 +14158800;-17595.1;0;0.0 +14162400;-86.7;0;0.0 +14166000;0;0;0.0 +14169600;0;0;0.0 +14173200;0;0;0.0 +14176800;0;0;0.0 +14180400;0;0;0.0 +14184000;-1301.0;33.4;0.0 +14187600;-1376.6;0;0.0 +14191200;-4531.3;0;0.0 +14194800;-32752.6;0;0.0 +14198400;-10896.4;0;0.0 +14202000;-21935.8;0;0.0 +14205600;-7764.2;0;0.0 +14209200;-27184.2;0;0.0 +14212800;-73948.1;0;0.0 +14216400;-79885.3;0;0.0 +14220000;-47334.1;0;0.0 +14223600;-29289.5;0;0.0 +14227200;-45372.3;0;0.0 +14230800;-85211.6;0;0.0 +14234400;-119596.1;0;0.0 +14238000;-114307.2;0;0.0 +14241600;-100132.5;0;0.0 +14245200;-47866.5;0;0.0 +14248800;-2781.1;0;0.0 +14252400;-21.8;0;0.0 +14256000;0;0;0.0 +14259600;0;0;0.0 +14263200;0;0;0.0 +14266800;0;0;0.0 +14270400;-2306.3;0;0.0 +14274000;-4280.2;0;0.0 +14277600;-6667.6;0;0.0 +14281200;-12014.8;0;0.0 +14284800;-22590.1;0;0.0 +14288400;-32641.3;0;0.0 +14292000;-26653.8;0;0.0 +14295600;-81429.8;0;0.0 +14299200;-120762.7;0;0.0 +14302800;-118253.9;0;0.0 +14306400;-92212.4;0;0.0 +14310000;-69308.8;0;0.0 +14313600;-85996.3;0;0.0 +14317200;-111845.1;0;0.0 +14320800;-138782.4;0;0.0 +14324400;-136054.1;0;0.0 +14328000;-126518.3;0;0.0 +14331600;-84734.0;0;0.0 +14335200;-28433.7;0;0.0 +14338800;-328.1;0;0.0 +14342400;-19.1;0;0.0 +14346000;0;0;0.0 +14349600;0;0;0.0 +14353200;0;0;0.0 +14356800;-7186.0;0;0.0 +14360400;-5909.9;0;0.0 +14364000;-8721.0;0;0.0 +14367600;-21515.4;0;0.0 +14371200;-47080.6;0;0.0 +14374800;-66181.1;0;0.0 +14378400;-63322.6;0;0.0 +14382000;-110254.1;0;0.0 +14385600;-144150.0;0;0.0 +14389200;-135827.2;0;0.0 +14392800;-114346.8;0;0.0 +14396400;-94297.8;0;0.0 +14400000;-105512.3;0;0.0 +14403600;-126790.9;0;0.0 +14407200;-150116.5;0;0.0 +14410800;-146836.6;0;0.0 +14414400;-143062.7;0;0.0 +14418000;-111614.5;0;0.0 +14421600;-75926.2;0;0.0 +14425200;-45646.6;0;0.0 +14428800;-5224.9;0;0.0 +14432400;0;0;0.0 +14436000;0;0;0.0 +14439600;0;0;0.0 +14443200;-18762.6;0;0.0 +14446800;-9527.9;0;0.0 +14450400;-12144.5;0;0.0 +14454000;-90833.9;0;0.0 +14457600;-100191.3;0;0.0 +14461200;-105181.8;0;0.0 +14464800;-102019.1;0;0.0 +14468400;-134081.9;0;0.0 +14472000;-142621.2;0;0.0 +14475600;-138383.0;0;0.0 +14479200;-123246.9;0;0.0 +14482800;-117965.5;0;0.0 +14486400;-126350.8;0;0.0 +14490000;-133938.4;0;0.0 +14493600;-161330.8;0;0.0 +14497200;-169567.7;0;0.0 +14500800;-146978.0;0;0.0 +14504400;-136835.7;0;0.0 +14508000;-107707.7;0;0.0 +14511600;-72622.4;0;0.0 +14515200;-8696.3;0;0.0 +14518800;0;0;0.0 +14522400;0;0;0.0 +14526000;0;0;0.0 +14529600;-24936.2;0;0.0 +14533200;-38980.3;0;0.0 +14536800;-50894.0;0;0.0 +14540400;-22221.6;0;0.0 +14544000;-29278.0;0;0.0 +14547600;-116548.9;0;0.0 +14551200;-116910.1;0;0.0 +14554800;-135845.8;0;0.0 +14558400;-151030.3;0;0.0 +14562000;-149779.7;0;0.0 +14565600;-128498.8;0;0.0 +14569200;-120066.7;0;0.0 +14572800;-123224.5;0;0.0 +14576400;-136319.2;0;0.0 +14580000;-151018.3;0;0.0 +14583600;-147828.2;0;0.0 +14587200;-145313.5;0;0.0 +14590800;-107060.1;0;0.0 +14594400;-71604.3;0;0.0 +14598000;-47654.3;0;0.0 +14601600;-4995.3;0;0.0 +14605200;0;0;0.0 +14608800;0;0;0.0 +14612400;0;0;0.0 +14616000;-20954.7;0;0.0 +14619600;-10570.2;0;0.0 +14623200;-13589.8;0;0.0 +14626800;-53718.4;0;0.0 +14630400;-79969.6;0;0.0 +14634000;-90384.5;0;0.0 +14637600;-85826.1;0;0.0 +14641200;-130859.3;0;0.0 +14644800;-163311.9;0;0.0 +14648400;-157094.4;0;0.0 +14652000;-129751.0;0;0.0 +14655600;-112569.2;0;0.0 +14659200;-124242.3;0;0.0 +14662800;-149989.6;0;0.0 +14666400;-176858.7;0;0.0 +14670000;-171191.4;0;0.0 +14673600;-161516.0;0;0.0 +14677200;-125661.4;0;0.0 +14680800;-86677.3;0;0.0 +14684400;-46081.1;0;0.0 +14688000;-4354.9;0;0.0 +14691600;0;0;0.0 +14695200;0;0;0.0 +14698800;0;0;0.0 +14702400;-19649.9;0;0.0 +14706000;-8749.3;0;0.0 +14709600;-13041.8;0;0.0 +14713200;-51790.0;0;0.0 +14716800;-89012.0;0;0.0 +14720400;-104658.1;0;0.0 +14724000;-108724.8;0;0.0 +14727600;-146695.3;0;0.0 +14731200;-176192.3;0;0.0 +14734800;-169365.7;0;0.0 +14738400;-140868.8;0;0.0 +14742000;-122492.8;0;0.0 +14745600;-134467.5;0;0.0 +14749200;-158175.1;0;0.0 +14752800;-182011.9;0;0.0 +14756400;-176176.4;0;0.0 +14760000;-166403.4;0;0.0 +14763600;-131403.0;0;0.0 +14767200;-94613.3;0;0.0 +14770800;-58734.5;0;0.0 +14774400;-6799.5;0;0.0 +14778000;0;0;0.0 +14781600;0;0;0.0 +14785200;0;0;0.0 +14788800;-25788.1;0;0.0 +14792400;-11173.4;0;0.0 +14796000;-14947.0;0;0.0 +14799600;-94366.9;0;0.0 +14803200;-104302.7;0;0.0 +14806800;-102628.4;0;0.0 +14810400;-97779.5;0;0.0 +14814000;-134252.2;0;0.0 +14817600;-161492.3;0;0.0 +14821200;-154110.9;0;0.0 +14824800;-129076.7;0;0.0 +14828400;-112508.8;0;0.0 +14832000;-123902.6;0;0.0 +14835600;-149996.6;0;0.0 +14839200;-173314.3;0;0.0 +14842800;-163704.4;0;0.0 +14846400;-158272.5;0;0.0 +14850000;-124141.4;0;0.0 +14853600;-74443.0;0;0.0 +14857200;-30595.6;0;0.0 +14860800;-3066.3;0;0.0 +14864400;0;0;0.0 +14868000;0;0;0.0 +14871600;0;0;0.0 +14875200;-17432.2;0;0.0 +14878800;-8381.1;0;0.0 +14882400;-12218.8;0;0.0 +14886000;-31420.4;0;0.0 +14889600;-53969.2;0;0.0 +14893200;-77538.9;0;0.0 +14896800;-82154.9;0;0.0 +14900400;-126854.7;0;0.0 +14904000;-156797.4;0;0.0 +14907600;-150511.1;0;0.0 +14911200;-122728.6;0;0.0 +14914800;-105432.0;0;0.0 +14918400;-115875.6;0;0.0 +14922000;-141689.2;0;0.0 +14925600;-168448.9;0;0.0 +14929200;-163876.5;0;0.0 +14932800;-151682.8;0;0.0 +14936400;-114729.1;0;0.0 +14940000;-59979.4;0;0.0 +14943600;-25059.0;0;0.0 +14947200;-1904.4;0;0.0 +14950800;0;0;0.0 +14954400;0;0;0.0 +14958000;0;0;0.0 +14961600;-15727.3;0;0.0 +14965200;-7714.5;0;0.0 +14968800;-11382.3;0;0.0 +14972400;-21635.4;0;0.0 +14976000;-57856.3;0;0.0 +14979600;-76293.8;0;0.0 +14983200;-66475.7;0;0.0 +14986800;-115537.7;0;0.0 +14990400;-149520.6;0;0.0 +14994000;-143137.7;0;0.0 +14997600;-117068.6;0;0.0 +15001200;-102252.4;0;0.0 +15004800;-114018.0;0;0.0 +15008400;-140127.9;0;0.0 +15012000;-165676.6;0;0.0 +15015600;-159643.4;0;0.0 +15019200;-149902.2;0;0.0 +15022800;-111200.6;0;0.0 +15026400;-54408.6;0;0.0 +15030000;-10613.5;0;0.0 +15033600;-227.5;0;0.0 +15037200;0;0;0.0 +15040800;0;0;0.0 +15044400;0;0;0.0 +15048000;-12440.6;0;0.0 +15051600;-6787.2;0;0.0 +15055200;-9600.8;0;0.0 +15058800;-21833.8;0;0.0 +15062400;-65272.4;0;0.0 +15066000;-75466.6;0;0.0 +15069600;-81389.3;0;0.0 +15073200;-121549.2;0;0.0 +15076800;-129680.2;0;0.0 +15080400;-132724.7;0;0.0 +15084000;-119245.3;0;0.0 +15087600;-116553.7;0;0.0 +15091200;-122414.9;0;0.0 +15094800;-127436.1;0;0.0 +15098400;-161409.8;0;0.0 +15102000;-172982.0;0;0.0 +15105600;-146378.8;0;0.0 +15109200;-130696.8;0;0.0 +15112800;-81700.8;0;0.0 +15116400;-51051.4;0;0.0 +15120000;-2348.4;0;0.0 +15123600;0;0;0.0 +15127200;0;0;0.0 +15130800;0;0;0.0 +15134400;-15523.5;0;0.0 +15138000;-25167.0;0;0.0 +15141600;-31590.9;0;0.0 +15145200;-4356.0;0;0.0 +15148800;-11165.3;0;0.0 +15152400;-66762.0;0;0.0 +15156000;-92146.8;0;0.0 +15159600;-115367.9;0;0.0 +15163200;-136041.0;0;0.0 +15166800;-137005.2;0;0.0 +15170400;-119623.7;0;0.0 +15174000;-111585.6;0;0.0 +15177600;-123042.8;0;0.0 +15181200;-135133.6;0;0.0 +15184800;-149860.5;0;0.0 +15188400;-151799.8;0;0.0 +15192000;-145793.8;0;0.0 +15195600;-106533.5;0;0.0 +15199200;-72468.6;0;0.0 +15202800;-54746.7;0;0.0 +15206400;-7376.6;0;0.0 +15210000;0;0;0.0 +15213600;0;0;0.0 +15217200;0;0;0.0 +15220800;-22937.2;0;0.0 +15224400;-11850.6;0;0.0 +15228000;-14789.6;0;0.0 +15231600;-90479.6;0;0.0 +15235200;-99984.6;0;0.0 +15238800;-106313.3;0;0.0 +15242400;-101289.4;0;0.0 +15246000;-137626.8;0;0.0 +15249600;-169190.2;0;0.0 +15253200;-164595.3;0;0.0 +15256800;-139884.4;0;0.0 +15260400;-120555.7;0;0.0 +15264000;-133013.3;0;0.0 +15267600;-155934.4;0;0.0 +15271200;-173690.9;0;0.0 +15274800;-166447.4;0;0.0 +15278400;-159670.9;0;0.0 +15282000;-126091.3;0;0.0 +15285600;-90369.0;0;0.0 +15289200;-58522.2;0;0.0 +15292800;-7953.4;0;0.0 +15296400;0;0;0.0 +15300000;0;0;0.0 +15303600;0;0;0.0 +15307200;-22625.8;0;0.0 +15310800;-12231.9;0;0.0 +15314400;-15473.5;0;0.0 +15318000;-98731.7;0;0.0 +15321600;-109394.0;0;0.0 +15325200;-121468.0;0;0.0 +15328800;-118177.3;0;0.0 +15332400;-156270.6;0;0.0 +15336000;-185639.8;0;0.0 +15339600;-178761.5;0;0.0 +15343200;-146702.9;0;0.0 +15346800;-126265.3;0;0.0 +15350400;-136184.6;0;0.0 +15354000;-161789.5;0;0.0 +15357600;-184012.6;0;0.0 +15361200;-174545.7;0;0.0 +15364800;-166401.1;0;0.0 +15368400;-131706.8;0;0.0 +15372000;-95266.9;0;0.0 +15375600;-60716.1;0;0.0 +15379200;-8256.9;0;0.0 +15382800;0;0;0.0 +15386400;0;0;0.0 +15390000;0;0;0.0 +15393600;-26589.0;0;0.0 +15397200;-11332.2;0;0.0 +15400800;-14877.4;0;0.0 +15404400;-79973.4;0;0.0 +15408000;-97887.1;0;0.0 +15411600;-106923.7;0;0.0 +15415200;-110089.7;0;0.0 +15418800;-147896.4;0;0.0 +15422400;-174260.7;0;0.0 +15426000;-167336.0;0;0.0 +15429600;-139460.2;0;0.0 +15433200;-123235.9;0;0.0 +15436800;-133881.9;0;0.0 +15440400;-158443.1;0;0.0 +15444000;-176497.7;0;0.0 +15447600;-169344.4;0;0.0 +15451200;-160406.3;0;0.0 +15454800;-126680.8;0;0.0 +15458400;-88683.5;0;0.0 +15462000;-54670.4;0;0.0 +15465600;-5593.9;0;0.0 +15469200;0;0;0.0 +15472800;0;0;0.0 +15476400;0;0;0.0 +15480000;-23857.3;0;0.0 +15483600;-11341.2;0;0.0 +15487200;-14317.3;0;0.0 +15490800;-97010.2;0;0.0 +15494400;-107466.0;0;0.0 +15498000;-119931.1;0;0.0 +15501600;-116268.2;0;0.0 +15505200;-154760.6;0;0.0 +15508800;-180647.7;0;0.0 +15512400;-172158.4;0;0.0 +15516000;-144363.6;0;0.0 +15519600;-125475.7;0;0.0 +15523200;-136477.5;0;0.0 +15526800;-155496.8;0;0.0 +15530400;-178364.5;0;0.0 +15534000;-172719.7;0;0.0 +15537600;-163673.7;0;0.0 +15541200;-129462.1;0;0.0 +15544800;-92389.9;0;0.0 +15548400;-55387.4;0;0.0 +15552000;-6316.4;0;0.0 +15555600;0;0;0.0 +15559200;0;0;0.0 +15562800;0;0;0.0 +15566400;-22871.6;0;0.0 +15570000;-10684.1;0;0.0 +15573600;-14593.1;0;0.0 +15577200;-83357.1;0;0.0 +15580800;-103681.7;0;0.0 +15584400;-113296.1;0;0.0 +15588000;-112479.2;0;0.0 +15591600;-150234.1;0;0.0 +15595200;-176435.1;0;0.0 +15598800;-167625.0;0;0.0 +15602400;-138569.3;0;0.0 +15606000;-121348.8;0;0.0 +15609600;-131508.9;0;0.0 +15613200;-155692.6;0;0.0 +15616800;-180546.6;0;0.0 +15620400;-174497.8;0;0.0 +15624000;-163985.1;0;0.0 +15627600;-128109.3;0;0.0 +15631200;-86328.9;0;0.0 +15634800;-42717.0;0;0.0 +15638400;-3715.3;0;0.0 +15642000;0;0;0.0 +15645600;0;0;0.0 +15649200;0;0;0.0 +15652800;-20340.8;0;0.0 +15656400;-8609.2;0;0.0 +15660000;-12807.4;0;0.0 +15663600;-80189.9;0;0.0 +15667200;-107000.4;0;0.0 +15670800;-106504.6;0;0.0 +15674400;-105789.6;0;0.0 +15678000;-137229.3;0;0.0 +15681600;-141645.6;0;0.0 +15685200;-145171.7;0;0.0 +15688800;-129373.2;0;0.0 +15692400;-124832.0;0;0.0 +15696000;-127735.5;0;0.0 +15699600;-132766.5;0;0.0 +15703200;-162151.0;0;0.0 +15706800;-174101.2;0;0.0 +15710400;-150740.0;0;0.0 +15714000;-138710.0;0;0.0 +15717600;-106869.3;0;0.0 +15721200;-63437.8;0;0.0 +15724800;-5204.7;0;0.0 +15728400;0;0;0.0 +15732000;0;0;0.0 +15735600;0;0;0.0 +15739200;-23583.5;0;0.0 +15742800;-37045.1;0;0.0 +15746400;-47725.0;0;0.0 +15750000;-17385.5;0;0.0 +15753600;-24420.4;0;0.0 +15757200;-77000.5;0;0.0 +15760800;-97980.0;0;0.0 +15764400;-115044.2;0;0.0 +15768000;-132146.0;0;0.0 +15771600;-138091.4;0;0.0 +15775200;-121323.6;0;0.0 +15778800;-113005.1;0;0.0 +15782400;-123895.1;0;0.0 +15786000;-136296.5;0;0.0 +15789600;-152604.1;0;0.0 +15793200;-156030.2;0;0.0 +15796800;-149573.8;0;0.0 +15800400;-108348.9;0;0.0 +15804000;-46413.2;0;0.0 +15807600;-8433.2;0;0.0 +15811200;-441.6;0;0.0 +15814800;0;0;0.0 +15818400;0;0;0.0 +15822000;0;0;0.0 +15825600;-14140.6;0;0.0 +15829200;-7565.2;0;0.0 +15832800;-11367.3;0;0.0 +15836400;-29435.2;0;0.0 +15840000;-74353.0;0;0.0 +15843600;-94781.9;0;0.0 +15847200;-100151.7;0;0.0 +15850800;-140061.4;0;0.0 +15854400;-169419.1;0;0.0 +15858000;-161304.7;0;0.0 +15861600;-134500.3;0;0.0 +15865200;-117809.5;0;0.0 +15868800;-128468.4;0;0.0 +15872400;-153152.2;0;0.0 +15876000;-179850.0;0;0.0 +15879600;-175045.4;0;0.0 +15883200;-162579.6;0;0.0 +15886800;-127375.9;0;0.0 +15890400;-89591.6;0;0.0 +15894000;-50759.8;0;0.0 +15897600;-4990.2;0;0.0 +15901200;0;0;0.0 +15904800;0;0;0.0 +15908400;0;0;0.0 +15912000;-21160.3;0;0.0 +15915600;-9610.5;0;0.0 +15919200;-13682.2;0;0.0 +15922800;-74842.5;0;0.0 +15926400;-100555.7;0;0.0 +15930000;-112463.4;0;0.0 +15933600;-111603.8;0;0.0 +15937200;-147780.7;0;0.0 +15940800;-175328.7;0;0.0 +15944400;-167610.6;0;0.0 +15948000;-141973.1;0;0.0 +15951600;-122876.5;0;0.0 +15955200;-134294.5;0;0.0 +15958800;-154503.4;0;0.0 +15962400;-174893.8;0;0.0 +15966000;-168199.6;0;0.0 +15969600;-162923.3;0;0.0 +15973200;-129553.0;0;0.0 +15976800;-93285.0;0;0.0 +15980400;-58051.8;0;0.0 +15984000;-7470.8;0;0.0 +15987600;0;0;0.0 +15991200;0;0;0.0 +15994800;0;0;0.0 +15998400;-24013.5;0;0.0 +16002000;-11764.9;0;0.0 +16005600;-14603.7;0;0.0 +16009200;-89125.1;0;0.0 +16012800;-100092.3;0;0.0 +16016400;-108724.1;0;0.0 +16020000;-105129.5;0;0.0 +16023600;-139597.3;0;0.0 +16027200;-168942.9;0;0.0 +16030800;-155301.5;0;0.0 +16034400;-125303.9;0;0.0 +16038000;-112881.8;0;0.0 +16041600;-125323.5;0;0.0 +16045200;-149347.6;0;0.0 +16048800;-166072.0;0;0.0 +16052400;-161094.5;0;0.0 +16056000;-156498.0;0;0.0 +16059600;-122922.7;0;0.0 +16063200;-82731.5;0;0.0 +16066800;-43208.9;0;0.0 +16070400;-3986.9;0;0.0 +16074000;0;0;0.0 +16077600;0;0;0.0 +16081200;0;0;0.0 +16084800;-17356.2;0;0.0 +16088400;-8598.1;0;0.0 +16092000;-11761.7;0;0.0 +16095600;-26614.2;0;0.0 +16099200;-66957.8;0;0.0 +16102800;-83997.8;0;0.0 +16106400;-88475.8;0;0.0 +16110000;-131959.4;0;0.0 +16113600;-161835.8;0;0.0 +16117200;-155332.7;0;0.0 +16120800;-129331.5;0;0.0 +16124400;-111639.0;0;0.0 +16128000;-122995.0;0;0.0 +16131600;-147984.0;0;0.0 +16135200;-175098.5;0;0.0 +16138800;-167949.4;0;0.0 +16142400;-158465.9;0;0.0 +16146000;-124187.6;0;0.0 +16149600;-67418.5;0;0.0 +16153200;-13260.2;0;0.0 +16156800;-709.4;0;0.0 +16160400;0;0;0.0 +16164000;0;0;0.0 +16167600;0;0;0.0 +16171200;-15850.0;0;0.0 +16174800;-7704.3;0;0.0 +16178400;-10620.4;0;0.0 +16182000;-28086.1;0;0.0 +16185600;-64955.7;0;0.0 +16189200;-84341.7;0;0.0 +16192800;-89345.8;0;0.0 +16196400;-132738.9;0;0.0 +16200000;-162608.7;0;0.0 +16203600;-156049.9;0;0.0 +16207200;-127449.8;0;0.0 +16210800;-112197.3;0;0.0 +16214400;-120849.1;0;0.0 +16218000;-138364.8;0;0.0 +16221600;-164219.9;0;0.0 +16225200;-162013.9;0;0.0 +16228800;-154090.1;0;0.0 +16232400;-120599.7;0;0.0 +16236000;-82552.3;0;0.0 +16239600;-51115.2;0;0.0 +16243200;-5122.4;0;0.0 +16246800;0;0;0.0 +16250400;0;0;0.0 +16254000;0;0;0.0 +16257600;-20944.6;0;0.0 +16261200;-9615.4;0;0.0 +16264800;-13193.9;0;0.0 +16268400;-93068.7;0;0.0 +16272000;-105166.4;0;0.0 +16275600;-102794.9;0;0.0 +16279200;-101991.5;0;0.0 +16282800;-131632.6;0;0.0 +16286400;-132711.3;0;0.0 +16290000;-136962.7;0;0.0 +16293600;-126369.9;0;0.0 +16297200;-123402.9;0;0.0 +16300800;-130766.4;0;0.0 +16304400;-134359.5;0;0.0 +16308000;-169786.3;0;0.0 +16311600;-183247.9;0;0.0 +16315200;-156562.1;0;0.0 +16318800;-141558.5;0;0.0 +16322400;-109095.2;0;0.0 +16326000;-62869.4;0;0.0 +16329600;-5442.6;0;0.0 +16333200;0;0;0.0 +16336800;0;0;0.0 +16340400;0;0;0.0 +16344000;-23232.6;0;0.0 +16347600;-37817.6;0;0.0 +16351200;-45203.6;0;0.0 +16354800;-12628.5;0;0.0 +16358400;-25588.6;0;0.0 +16362000;-83865.1;0;0.0 +16365600;-109539.1;0;0.0 +16369200;-125756.5;0;0.0 +16372800;-143583.0;0;0.0 +16376400;-144224.5;0;0.0 +16380000;-126751.6;0;0.0 +16383600;-115998.5;0;0.0 +16387200;-121473.6;0;0.0 +16390800;-128116.5;0;0.0 +16394400;-139794.6;0;0.0 +16398000;-146551.0;0;0.0 +16401600;-144631.2;0;0.0 +16405200;-104446.9;0;0.0 +16408800;-51106.2;0;0.0 +16412400;-19520.3;0;0.0 +16416000;-2148.5;0;0.0 +16419600;0;0;0.0 +16423200;0;0;0.0 +16426800;0;0;0.0 +16430400;-13585.0;0;0.0 +16434000;-7873.9;0;0.0 +16437600;-11927.4;0;0.0 +16441200;-54590.4;0;0.0 +16444800;-88990.9;0;0.0 +16448400;-101983.3;0;0.0 +16452000;-103689.1;0;0.0 +16455600;-143715.1;0;0.0 +16459200;-172297.8;0;0.0 +16462800;-164268.6;0;0.0 +16466400;-137050.5;0;0.0 +16470000;-119470.7;0;0.0 +16473600;-129572.4;0;0.0 +16477200;-155393.8;0;0.0 +16480800;-182966.9;0;0.0 +16484400;-177552.3;0;0.0 +16488000;-165085.9;0;0.0 +16491600;-129869.8;0;0.0 +16495200;-92418.0;0;0.0 +16498800;-58205.7;0;0.0 +16502400;-7015.6;0;0.0 +16506000;0;0;0.0 +16509600;0;0;0.0 +16513200;0;0;0.0 +16516800;-24086.8;0;0.0 +16520400;-11516.6;0;0.0 +16524000;-14956.8;0;0.0 +16527600;-94290.8;0;0.0 +16531200;-98923.3;0;0.0 +16534800;-109285.2;0;0.0 +16538400;-110050.1;0;0.0 +16542000;-150133.5;0;0.0 +16545600;-178431.6;0;0.0 +16549200;-171447.1;0;0.0 +16552800;-142878.2;0;0.0 +16556400;-122723.8;0;0.0 +16560000;-131359.2;0;0.0 +16563600;-157033.6;0;0.0 +16567200;-186308.4;0;0.0 +16570800;-180479.1;0;0.0 +16574400;-166919.9;0;0.0 +16578000;-130705.7;0;0.0 +16581600;-93025.7;0;0.0 +16585200;-46833.6;0;0.0 +16588800;-5130.3;0;0.0 +16592400;0;0;0.0 +16596000;0;0;0.0 +16599600;0;0;0.0 +16603200;-21807.6;0;0.0 +16606800;-10147.8;0;0.0 +16610400;-13464.2;0;0.0 +16614000;-61189.2;0;0.0 +16617600;-95002.6;0;0.0 +16621200;-106924.5;0;0.0 +16624800;-107658.7;0;0.0 +16628400;-146138.6;0;0.0 +16632000;-175499.8;0;0.0 +16635600;-165783.3;0;0.0 +16639200;-136646.9;0;0.0 +16642800;-118842.5;0;0.0 +16646400;-127167.7;0;0.0 +16650000;-147712.4;0;0.0 +16653600;-170044.8;0;0.0 +16657200;-165607.2;0;0.0 +16660800;-158351.0;0;0.0 +16664400;-120054.7;0;0.0 +16668000;-75819.0;0;0.0 +16671600;-32187.8;0;0.0 +16675200;-2837.4;0;0.0 +16678800;0;0;0.0 +16682400;0;0;0.0 +16686000;0;0;0.0 +16689600;-16779.6;0;0.0 +16693200;-8115.7;0;0.0 +16696800;-12203.2;0;0.0 +16700400;-29126.7;0;0.0 +16704000;-71402.3;0;0.0 +16707600;-96315.2;0;0.0 +16711200;-100750.0;0;0.0 +16714800;-138161.6;0;0.0 +16718400;-169665.7;0;0.0 +16722000;-162333.6;0;0.0 +16725600;-133982.3;0;0.0 +16729200;-116831.4;0;0.0 +16732800;-128520.9;0;0.0 +16736400;-154568.0;0;0.0 +16740000;-180558.3;0;0.0 +16743600;-171984.2;0;0.0 +16747200;-162127.2;0;0.0 +16750800;-127869.4;0;0.0 +16754400;-90390.4;0;0.0 +16758000;-52822.9;0;0.0 +16761600;-4955.2;0;0.0 +16765200;0;0;0.0 +16768800;0;0;0.0 +16772400;0;0;0.0 +16776000;-21437.3;0;0.0 +16779600;-9563.1;0;0.0 +16783200;-13381.2;0;0.0 +16786800;-73842.8;0;0.0 +16790400;-99936.5;0;0.0 +16794000;-113747.8;0;0.0 +16797600;-112690.6;0;0.0 +16801200;-151637.1;0;0.0 +16804800;-179388.2;0;0.0 +16808400;-171350.6;0;0.0 +16812000;-143917.5;0;0.0 +16815600;-126698.4;0;0.0 +16819200;-135131.2;0;0.0 +16822800;-159092.1;0;0.0 +16826400;-184670.2;0;0.0 +16830000;-176302.4;0;0.0 +16833600;-167019.8;0;0.0 +16837200;-132255.1;0;0.0 +16840800;-95384.6;0;0.0 +16844400;-63391.9;0;0.0 +16848000;-8848.0;0;0.0 +16851600;0;0;0.0 +16855200;0;0;0.0 +16858800;0;0;0.0 +16862400;-27326.8;0;0.0 +16866000;-12908.2;0;0.0 +16869600;-15631.0;0;0.0 +16873200;-105095.3;0;0.0 +16876800;-116213.6;0;0.0 +16880400;-115547.1;0;0.0 +16884000;-106628.7;0;0.0 +16887600;-135314.4;0;0.0 +16891200;-138773.2;0;0.0 +16894800;-146323.0;0;0.0 +16898400;-136577.0;0;0.0 +16902000;-134630.3;0;0.0 +16905600;-136238.4;0;0.0 +16909200;-129438.1;0;0.0 +16912800;-158621.1;0;0.0 +16916400;-174612.8;0;0.0 +16920000;-152469.1;0;0.0 +16923600;-142700.6;0;0.0 +16927200;-112332.2;0;0.0 +16930800;-76969.5;0;0.0 +16934400;-9610.3;0;0.0 +16938000;0;0;0.0 +16941600;0;0;0.0 +16945200;0;0;0.0 +16948800;-28167.6;0;0.0 +16952400;-42011.9;0;0.0 +16956000;-52755.6;0;0.0 +16959600;-22526.6;0;0.0 +16963200;-28793.6;0;0.0 +16966800;-120733.1;0;0.0 +16970400;-129993.3;0;0.0 +16974000;-145485.1;0;0.0 +16977600;-160289.8;0;0.0 +16981200;-155395.6;0;0.0 +16984800;-137456.8;0;0.0 +16988400;-123712.6;0;0.0 +16992000;-136786.0;0;0.0 +16995600;-146527.3;0;0.0 +16999200;-159897.9;0;0.0 +17002800;-158998.2;0;0.0 +17006400;-153207.6;0;0.0 +17010000;-114112.3;0;0.0 +17013600;-79555.0;0;0.0 +17017200;-61623.7;0;0.0 +17020800;-8900.3;0;0.0 +17024400;0;0;0.0 +17028000;0;0;0.0 +17031600;0;0;0.0 +17035200;-28039.0;0;0.0 +17038800;-13754.6;0;0.0 +17042400;-16635.3;0;0.0 +17046000;-105978.8;0;0.0 +17049600;-117010.7;0;0.0 +17053200;-125920.5;0;0.0 +17056800;-119248.7;0;0.0 +17060400;-156839.5;0;0.0 +17064000;-185345.6;0;0.0 +17067600;-176631.8;0;0.0 +17071200;-147056.9;0;0.0 +17074800;-123164.2;0;0.0 +17078400;-124498.7;0;0.0 +17082000;-149888.3;0;0.0 +17085600;-176060.1;0;0.0 +17089200;-171524.9;0;0.0 +17092800;-164680.1;0;0.0 +17096400;-130699.6;0;0.0 +17100000;-94820.9;0;0.0 +17103600;-61527.4;0;0.0 +17107200;-7984.7;0;0.0 +17110800;0;0;0.0 +17114400;0;0;0.0 +17118000;0;0;0.0 +17121600;-26974.6;0;0.0 +17125200;-12160.8;0;0.0 +17128800;-15847.1;0;0.0 +17132400;-99602.3;0;0.0 +17136000;-110541.1;0;0.0 +17139600;-122355.1;0;0.0 +17143200;-119787.4;0;0.0 +17146800;-156727.6;0;0.0 +17150400;-183517.3;0;0.0 +17154000;-175743.4;0;0.0 +17157600;-147104.4;0;0.0 +17161200;-128076.4;0;0.0 +17164800;-140471.4;0;0.0 +17168400;-164537.3;0;0.0 +17172000;-188345.9;0;0.0 +17175600;-182007.0;0;0.0 +17179200;-170503.3;0;0.0 +17182800;-135342.0;0;0.0 +17186400;-98086.3;0;0.0 +17190000;-65728.9;0;0.0 +17193600;-9592.8;0;0.0 +17197200;0;0;0.0 +17200800;0;0;0.0 +17204400;0;0;0.0 +17208000;-29010.5;0;0.0 +17211600;-13813.9;0;0.0 +17215200;-16592.5;0;0.0 +17218800;-102261.3;0;0.0 +17222400;-104954.1;0;0.0 +17226000;-113565.4;0;0.0 +17229600;-116282.3;0;0.0 +17233200;-155885.6;0;0.0 +17236800;-185003.7;0;0.0 +17240400;-177510.0;0;0.0 +17244000;-151437.2;0;0.0 +17247600;-132917.9;0;0.0 +17251200;-140736.1;0;0.0 +17254800;-160906.9;0;0.0 +17258400;-180422.3;0;0.0 +17262000;-176527.7;0;0.0 +17265600;-169123.2;0;0.0 +17269200;-135557.6;0;0.0 +17272800;-99695.8;0;0.0 +17276400;-67769.1;0;0.0 +17280000;-10247.7;0;0.0 +17283600;0;0;0.0 +17287200;0;0;0.0 +17290800;0;0;0.0 +17294400;-29816.0;0;0.0 +17298000;-49901.2;0;0.0 +17301600;-62431.0;0;0.0 +17305200;-93676.3;0;0.0 +17308800;-103249.8;0;0.0 +17312400;-118481.2;0;0.0 +17316000;-119964.4;0;0.0 +17319600;-159699.8;0;0.0 +17323200;-185597.2;0;0.0 +17326800;-178657.5;0;0.0 +17330400;-149683.6;0;0.0 +17334000;-124286.0;0;0.0 +17337600;-134383.1;0;0.0 +17341200;-156090.5;0;0.0 +17344800;-176923.7;0;0.0 +17348400;-172111.9;0;0.0 +17352000;-165525.0;0;0.0 +17355600;-132855.3;0;0.0 +17359200;-96734.1;0;0.0 +17362800;-65304.6;0;0.0 +17366400;-10393.8;0;0.0 +17370000;0;0;0.0 +17373600;0;0;0.0 +17377200;0;0;0.0 +17380800;-37823.1;0;0.0 +17384400;-52862.1;0;0.0 +17388000;-64558.1;0;0.0 +17391600;-92575.1;0;0.0 +17395200;-103299.5;0;0.0 +17398800;-120686.0;0;0.0 +17402400;-121986.6;0;0.0 +17406000;-160564.1;0;0.0 +17409600;-188859.8;0;0.0 +17413200;-180934.4;0;0.0 +17416800;-153568.0;0;0.0 +17420400;-129356.3;0;0.0 +17424000;-135658.8;0;0.0 +17427600;-161027.0;0;0.0 +17431200;-179363.0;0;0.0 +17434800;-172435.3;0;0.0 +17438400;-163950.9;0;0.0 +17442000;-130620.5;0;0.0 +17445600;-94761.9;0;0.0 +17449200;-63395.0;0;0.0 +17452800;-9610.9;0;0.0 +17456400;0;0;0.0 +17460000;0;0;0.0 +17463600;0;0;0.0 +17467200;-27835.2;0;0.0 +17470800;-13296.5;0;0.0 +17474400;-15626.1;0;0.0 +17478000;-102526.5;0;0.0 +17481600;-111191.3;0;0.0 +17485200;-107904.0;0;0.0 +17488800;-100694.8;0;0.0 +17492400;-131459.1;0;0.0 +17496000;-136984.0;0;0.0 +17499600;-134459.5;0;0.0 +17503200;-119362.1;0;0.0 +17506800;-113718.2;0;0.0 +17510400;-121249.5;0;0.0 +17514000;-123016.6;0;0.0 +17517600;-153435.9;0;0.0 +17521200;-167011.5;0;0.0 +17524800;-144693.1;0;0.0 +17528400;-134555.9;0;0.0 +17532000;-105394.1;0;0.0 +17535600;-69157.1;0;0.0 +17539200;-7295.3;0;0.0 +17542800;0;0;0.0 +17546400;0;0;0.0 +17550000;0;0;0.0 +17553600;-23891.2;0;0.0 +17557200;-34825.3;0;0.0 +17560800;-43987.3;0;0.0 +17564400;-15084.1;0;0.0 +17568000;-23929.7;0;0.0 +17571600;-83666.7;0;0.0 +17575200;-99968.1;0;0.0 +17578800;-121200.9;0;0.0 +17582400;-141232.4;0;0.0 +17586000;-143361.8;0;0.0 +17589600;-119782.0;0;0.0 +17593200;-113266.0;0;0.0 +17596800;-120840.3;0;0.0 +17600400;-127710.7;0;0.0 +17604000;-143288.3;0;0.0 +17607600;-145940.4;0;0.0 +17611200;-142858.1;0;0.0 +17614800;-105207.7;0;0.0 +17618400;-70113.0;0;0.0 +17622000;-46963.4;0;0.0 +17625600;-4784.2;0;0.0 +17629200;0;0;0.0 +17632800;0;0;0.0 +17636400;0;0;0.0 +17640000;-20027.3;0;0.0 +17643600;-10367.0;0;0.0 +17647200;-12987.7;0;0.0 +17650800;-67492.4;0;0.0 +17654400;-94762.7;0;0.0 +17658000;-106624.5;0;0.0 +17661600;-109488.0;0;0.0 +17665200;-150026.5;0;0.0 +17668800;-178910.1;0;0.0 +17672400;-171024.9;0;0.0 +17676000;-143430.6;0;0.0 +17679600;-121338.2;0;0.0 +17683200;-133078.1;0;0.0 +17686800;-154606.0;0;0.0 +17690400;-177642.5;0;0.0 +17694000;-169993.0;0;0.0 +17697600;-161561.6;0;0.0 +17701200;-127561.4;0;0.0 +17704800;-90893.4;0;0.0 +17708400;-49615.5;0;0.0 +17712000;-5499.2;0;0.0 +17715600;0;0;0.0 +17719200;0;0;0.0 +17722800;0;0;0.0 +17726400;-21358.8;0;0.0 +17730000;-10089.1;0;0.0 +17733600;-13123.3;0;0.0 +17737200;-54476.7;0;0.0 +17740800;-89731.2;0;0.0 +17744400;-98107.6;0;0.0 +17748000;-105466.6;0;0.0 +17751600;-146512.1;0;0.0 +17755200;-176894.7;0;0.0 +17758800;-168950.2;0;0.0 +17762400;-141689.8;0;0.0 +17766000;-123901.9;0;0.0 +17769600;-133655.7;0;0.0 +17773200;-156960.7;0;0.0 +17776800;-183172.2;0;0.0 +17780400;-177009.5;0;0.0 +17784000;-165788.5;0;0.0 +17787600;-130846.3;0;0.0 +17791200;-94913.7;0;0.0 +17794800;-62152.4;0;0.0 +17798400;-8545.5;0;0.0 +17802000;0;0;0.0 +17805600;0;0;0.0 +17809200;0;0;0.0 +17812800;-27345.7;0;0.0 +17816400;-12781.9;0;0.0 +17820000;-15723.8;0;0.0 +17823600;-100492.0;0;0.0 +17827200;-104234.9;0;0.0 +17830800;-112169.3;0;0.0 +17834400;-112087.6;0;0.0 +17838000;-153992.4;0;0.0 +17841600;-180349.8;0;0.0 +17845200;-169980.0;0;0.0 +17848800;-142446.5;0;0.0 +17852400;-126363.7;0;0.0 +17856000;-134568.9;0;0.0 +17859600;-152114.0;0;0.0 +17863200;-172415.7;0;0.0 +17866800;-165706.9;0;0.0 +17870400;-160533.2;0;0.0 +17874000;-127556.4;0;0.0 +17877600;-91661.1;0;0.0 +17881200;-57984.7;0;0.0 +17884800;-7439.3;0;0.0 +17888400;0;0;0.0 +17892000;0;0;0.0 +17895600;0;0;0.0 +17899200;-25047.1;0;0.0 +17902800;-12091.8;0;0.0 +17906400;-15171.5;0;0.0 +17910000;-97962.4;0;0.0 +17913600;-104089.9;0;0.0 +17917200;-115173.6;0;0.0 +17920800;-112457.6;0;0.0 +17924400;-152413.6;0;0.0 +17928000;-183753.6;0;0.0 +17931600;-176571.3;0;0.0 +17935200;-148704.8;0;0.0 +17938800;-130301.9;0;0.0 +17942400;-137081.3;0;0.0 +17946000;-156887.5;0;0.0 +17949600;-174885.4;0;0.0 +17953200;-168028.2;0;0.0 +17956800;-161162.9;0;0.0 +17960400;-128011.1;0;0.0 +17964000;-90324.0;0;0.0 +17967600;-53664.6;0;0.0 +17971200;-6018.1;0;0.0 +17974800;0;0;0.0 +17978400;0;0;0.0 +17982000;0;0;0.0 +17985600;-24969.9;0;0.0 +17989200;-11919.0;0;0.0 +17992800;-15062.0;0;0.0 +17996400;-97203.1;0;0.0 +18000000;-93981.4;0;0.0 +18003600;-106892.6;0;0.0 +18007200;-100512.9;0;0.0 +18010800;-135480.0;0;0.0 +18014400;-164099.4;0;0.0 +18018000;-159565.0;0;0.0 +18021600;-128587.5;0;0.0 +18025200;-108882.1;0;0.0 +18028800;-116499.5;0;0.0 +18032400;-138272.5;0;0.0 +18036000;-162379.4;0;0.0 +18039600;-158078.1;0;0.0 +18043200;-153715.5;0;0.0 +18046800;-122018.6;0;0.0 +18050400;-86604.9;0;0.0 +18054000;-55150.1;0;0.0 +18057600;-7339.5;0;0.0 +18061200;0;0;0.0 +18064800;0;0;0.0 +18068400;0;0;0.0 +18072000;-24316.2;0;0.0 +18075600;-11617.4;0;0.0 +18079200;-13851.9;0;0.0 +18082800;-96338.1;0;0.0 +18086400;-106140.9;0;0.0 +18090000;-107931.3;0;0.0 +18093600;-106638.7;0;0.0 +18097200;-143146.8;0;0.0 +18100800;-148023.4;0;0.0 +18104400;-148466.6;0;0.0 +18108000;-133650.7;0;0.0 +18111600;-129665.4;0;0.0 +18115200;-135066.5;0;0.0 +18118800;-134818.9;0;0.0 +18122400;-169093.9;0;0.0 +18126000;-178263.4;0;0.0 +18129600;-153350.7;0;0.0 +18133200;-142391.0;0;0.0 +18136800;-111378.4;0;0.0 +18140400;-74561.7;0;0.0 +18144000;-8521.6;0;0.0 +18147600;0;0;0.0 +18151200;0;0;0.0 +18154800;0;0;0.0 +18158400;-25688.9;0;0.0 +18162000;-39517.4;0;0.0 +18165600;-48505.0;0;0.0 +18169200;-18417.0;0;0.0 +18172800;-27636.7;0;0.0 +18176400;-87083.4;0;0.0 +18180000;-115763.5;0;0.0 +18183600;-132680.6;0;0.0 +18187200;-152186.4;0;0.0 +18190800;-152773.5;0;0.0 +18194400;-131123.4;0;0.0 +18198000;-118247.9;0;0.0 +18201600;-128462.9;0;0.0 +18205200;-137593.5;0;0.0 +18208800;-152236.8;0;0.0 +18212400;-152463.0;0;0.0 +18216000;-147980.8;0;0.0 +18219600;-109693.2;0;0.0 +18223200;-75376.5;0;0.0 +18226800;-54190.5;0;0.0 +18230400;-6381.2;0;0.0 +18234000;0;0;0.0 +18237600;0;0;0.0 +18241200;0;0;0.0 +18244800;-21901.2;0;0.0 +18248400;-10873.7;0;0.0 +18252000;-13900.8;0;0.0 +18255600;-78121.9;0;0.0 +18259200;-102398.7;0;0.0 +18262800;-113177.2;0;0.0 +18266400;-109405.8;0;0.0 +18270000;-148923.0;0;0.0 +18273600;-177285.2;0;0.0 +18277200;-170032.9;0;0.0 +18280800;-141239.8;0;0.0 +18284400;-123939.6;0;0.0 +18288000;-132959.1;0;0.0 +18291600;-158429.9;0;0.0 +18295200;-181814.7;0;0.0 +18298800;-177305.4;0;0.0 +18302400;-167592.0;0;0.0 +18306000;-132764.4;0;0.0 +18309600;-95360.7;0;0.0 +18313200;-60682.2;0;0.0 +18316800;-7823.2;0;0.0 +18320400;0;0;0.0 +18324000;0;0;0.0 +18327600;0;0;0.0 +18331200;-22647.7;0;0.0 +18334800;-10123.7;0;0.0 +18338400;-13502.2;0;0.0 +18342000;-21895.3;0;0.0 +18345600;-69331.0;0;0.0 +18349200;-97037.8;0;0.0 +18352800;-103043.7;0;0.0 +18356400;-141039.6;0;0.0 +18360000;-172650.4;0;0.0 +18363600;-166459.9;0;0.0 +18367200;-138455.1;0;0.0 +18370800;-120906.0;0;0.0 +18374400;-130341.3;0;0.0 +18378000;-153933.9;0;0.0 +18381600;-176212.3;0;0.0 +18385200;-168124.2;0;0.0 +18388800;-160144.1;0;0.0 +18392400;-124246.1;0;0.0 +18396000;-83876.8;0;0.0 +18399600;-34114.6;0;0.0 +18403200;-3266.8;0;0.0 +18406800;0;0;0.0 +18410400;0;0;0.0 +18414000;0;0;0.0 +18417600;-18355.7;0;0.0 +18421200;-8361.5;0;0.0 +18424800;-11900.4;0;0.0 +18428400;-43047.4;0;0.0 +18432000;-80263.0;0;0.0 +18435600;-99017.2;0;0.0 +18439200;-100374.5;0;0.0 +18442800;-140194.7;0;0.0 +18446400;-170273.7;0;0.0 +18450000;-162916.0;0;0.0 +18453600;-135083.7;0;0.0 +18457200;-117204.7;0;0.0 +18460800;-128237.7;0;0.0 +18464400;-153195.6;0;0.0 +18468000;-177174.1;0;0.0 +18471600;-172459.7;0;0.0 +18475200;-161464.2;0;0.0 +18478800;-126022.0;0;0.0 +18482400;-77770.6;0;0.0 +18486000;-18617.6;0;0.0 +18489600;-1725.7;0;0.0 +18493200;0;0;0.0 +18496800;0;0;0.0 +18500400;0;0;0.0 +18504000;-16144.5;0;0.0 +18507600;-7901.4;0;0.0 +18511200;-10221.7;0;0.0 +18514800;-32784.6;0;0.0 +18518400;-67811.5;0;0.0 +18522000;-93378.2;0;0.0 +18525600;-100621.3;0;0.0 +18529200;-142710.5;0;0.0 +18532800;-172453.1;0;0.0 +18536400;-165653.0;0;0.0 +18540000;-139149.1;0;0.0 +18543600;-121159.5;0;0.0 +18547200;-130065.7;0;0.0 +18550800;-154911.4;0;0.0 +18554400;-179186.9;0;0.0 +18558000;-171429.7;0;0.0 +18561600;-161727.2;0;0.0 +18565200;-127434.6;0;0.0 +18568800;-84586.3;0;0.0 +18572400;-31598.4;0;0.0 +18576000;-3007.5;0;0.0 +18579600;0;0;0.0 +18583200;0;0;0.0 +18586800;0;0;0.0 +18590400;-17184.1;0;0.0 +18594000;-8262.3;0;0.0 +18597600;-10920.4;0;0.0 +18601200;-26568.5;0;0.0 +18604800;-78850.9;0;0.0 +18608400;-99921.3;0;0.0 +18612000;-106544.7;0;0.0 +18615600;-145533.3;0;0.0 +18619200;-175092.4;0;0.0 +18622800;-168791.1;0;0.0 +18626400;-140789.4;0;0.0 +18630000;-122456.2;0;0.0 +18633600;-133404.1;0;0.0 +18637200;-158199.7;0;0.0 +18640800;-183211.1;0;0.0 +18644400;-177280.2;0;0.0 +18648000;-164696.5;0;0.0 +18651600;-129755.8;0;0.0 +18655200;-92450.6;0;0.0 +18658800;-52652.7;0;0.0 +18662400;-5859.6;0;0.0 +18666000;0;0;0.0 +18669600;0;0;0.0 +18673200;0;0;0.0 +18676800;-23144.3;0;0.0 +18680400;-9749.7;0;0.0 +18684000;-12540.6;0;0.0 +18687600;-89086.5;0;0.0 +18691200;-114900.6;0;0.0 +18694800;-118008.1;0;0.0 +18698400;-117875.4;0;0.0 +18702000;-151138.8;0;0.0 +18705600;-155882.1;0;0.0 +18709200;-154994.7;0;0.0 +18712800;-141144.8;0;0.0 +18716400;-135835.6;0;0.0 +18720000;-138960.9;0;0.0 +18723600;-137656.7;0;0.0 +18727200;-163490.0;0;0.0 +18730800;-176263.8;0;0.0 +18734400;-152781.7;0;0.0 +18738000;-142000.5;0;0.0 +18741600;-111733.9;0;0.0 +18745200;-74677.8;0;0.0 +18748800;-8314.4;0;0.0 +18752400;0;0;0.0 +18756000;0;0;0.0 +18759600;0;0;0.0 +18763200;-26089.0;0;0.0 +18766800;-38979.6;0;0.0 +18770400;-48631.9;0;0.0 +18774000;-19912.3;0;0.0 +18777600;-26508.6;0;0.0 +18781200;-96660.8;0;0.0 +18784800;-117418.9;0;0.0 +18788400;-135419.1;0;0.0 +18792000;-149252.8;0;0.0 +18795600;-152010.5;0;0.0 +18799200;-130522.2;0;0.0 +18802800;-124072.2;0;0.0 +18806400;-130912.2;0;0.0 +18810000;-142754.4;0;0.0 +18813600;-149532.9;0;0.0 +18817200;-151249.8;0;0.0 +18820800;-148212.1;0;0.0 +18824400;-111049.1;0;0.0 +18828000;-76988.9;0;0.0 +18831600;-59044.5;0;0.0 +18835200;-8362.1;0;0.0 +18838800;0;0;0.0 +18842400;0;0;0.0 +18846000;0;0;0.0 +18849600;-24738.3;0;0.0 +18853200;-12374.4;0;0.0 +18856800;-15328.0;0;0.0 +18860400;-95952.2;0;0.0 +18864000;-100151.1;0;0.0 +18867600;-107323.3;0;0.0 +18871200;-103579.0;0;0.0 +18874800;-136275.7;0;0.0 +18878400;-167638.1;0;0.0 +18882000;-157062.5;0;0.0 +18885600;-128205.1;0;0.0 +18889200;-114293.1;0;0.0 +18892800;-126157.1;0;0.0 +18896400;-144063.3;0;0.0 +18900000;-164939.6;0;0.0 +18903600;-160945.8;0;0.0 +18907200;-156069.0;0;0.0 +18910800;-123862.0;0;0.0 +18914400;-88242.0;0;0.0 +18918000;-55614.8;0;0.0 +18921600;-7254.6;0;0.0 +18925200;0;0;0.0 +18928800;0;0;0.0 +18932400;0;0;0.0 +18936000;-22676.3;0;0.0 +18939600;-11963.8;0;0.0 +18943200;-14873.0;0;0.0 +18946800;-96986.6;0;0.0 +18950400;-106008.3;0;0.0 +18954000;-118417.7;0;0.0 +18957600;-117089.6;0;0.0 +18961200;-155035.1;0;0.0 +18964800;-183555.8;0;0.0 +18968400;-175226.3;0;0.0 +18972000;-146896.0;0;0.0 +18975600;-128478.2;0;0.0 +18979200;-137733.3;0;0.0 +18982800;-162265.5;0;0.0 +18986400;-185295.3;0;0.0 +18990000;-176794.3;0;0.0 +18993600;-166495.6;0;0.0 +18997200;-132191.7;0;0.0 +19000800;-94653.9;0;0.0 +19004400;-58930.4;0;0.0 +19008000;-7104.1;0;0.0 +19011600;0;0;0.0 +19015200;0;0;0.0 +19018800;0;0;0.0 +19022400;-24476.4;0;0.0 +19026000;-10919.0;0;0.0 +19029600;-13962.8;0;0.0 +19033200;-86410.2;0;0.0 +19036800;-105634.8;0;0.0 +19040400;-118638.7;0;0.0 +19044000;-118850.2;0;0.0 +19047600;-159264.5;0;0.0 +19051200;-188726.2;0;0.0 +19054800;-182189.2;0;0.0 +19058400;-154607.8;0;0.0 +19062000;-135792.5;0;0.0 +19065600;-144373.1;0;0.0 +19069200;-163529.9;0;0.0 +19072800;-185252.0;0;0.0 +19076400;-177087.9;0;0.0 +19080000;-167169.3;0;0.0 +19083600;-133560.1;0;0.0 +19087200;-95268.0;0;0.0 +19090800;-55921.6;0;0.0 +19094400;-6505.4;0;0.0 +19098000;0;0;0.0 +19101600;0;0;0.0 +19105200;0;0;0.0 +19108800;-23506.2;0;0.0 +19112400;-10753.4;0;0.0 +19116000;-13571.7;0;0.0 +19119600;-93526.3;0;0.0 +19123200;-108317.9;0;0.0 +19126800;-122153.3;0;0.0 +19130400;-122501.4;0;0.0 +19134000;-162864.1;0;0.0 +19137600;-190637.4;0;0.0 +19141200;-178311.1;0;0.0 +19144800;-153328.6;0;0.0 +19148400;-135042.6;0;0.0 +19152000;-142699.8;0;0.0 +19155600;-164570.7;0;0.0 +19159200;-186114.4;0;0.0 +19162800;-176187.5;0;0.0 +19166400;-169226.5;0;0.0 +19170000;-136783.7;0;0.0 +19173600;-100435.7;0;0.0 +19177200;-66300.3;0;0.0 +19180800;-9710.2;0;0.0 +19184400;0;0;0.0 +19188000;0;0;0.0 +19191600;0;0;0.0 +19195200;-29836.1;0;0.0 +19198800;-12426.4;0;0.0 +19202400;-14905.5;0;0.0 +19206000;-86535.0;0;0.0 +19209600;-102760.8;0;0.0 +19213200;-113338.6;0;0.0 +19216800;-113950.9;0;0.0 +19220400;-152530.7;0;0.0 +19224000;-181833.0;0;0.0 +19227600;-173816.9;0;0.0 +19231200;-146318.7;0;0.0 +19234800;-128718.6;0;0.0 +19238400;-137080.8;0;0.0 +19242000;-160791.1;0;0.0 +19245600;-180920.8;0;0.0 +19249200;-171687.5;0;0.0 +19252800;-162679.9;0;0.0 +19256400;-128509.1;0;0.0 +19260000;-84397.4;0;0.0 +19263600;-33031.3;0;0.0 +19267200;-3180.2;0;0.0 +19270800;0;0;0.0 +19274400;0;0;0.0 +19278000;0;0;0.0 +19281600;-18332.8;0;0.0 +19285200;-8599.5;0;0.0 +19288800;-11000.2;0;0.0 +19292400;-33640.1;0;0.0 +19296000;-82906.0;0;0.0 +19299600;-92317.7;0;0.0 +19303200;-98390.3;0;0.0 +19306800;-133656.1;0;0.0 +19310400;-143188.9;0;0.0 +19314000;-144353.4;0;0.0 +19317600;-130947.6;0;0.0 +19321200;-127578.1;0;0.0 +19324800;-133106.1;0;0.0 +19328400;-135430.3;0;0.0 +19332000;-165001.7;0;0.0 +19335600;-173969.3;0;0.0 +19339200;-147259.9;0;0.0 +19342800;-133836.6;0;0.0 +19346400;-89419.7;0;0.0 +19350000;-38454.3;0;0.0 +19353600;-2368.5;0;0.0 +19357200;0;0;0.0 +19360800;0;0;0.0 +19364400;0;0;0.0 +19368000;-17235.0;0;0.0 +19371600;-29953.4;0;0.0 +19375200;-36276.3;0;0.0 +19378800;-6115.0;0;0.0 +19382400;-19609.8;0;0.0 +19386000;-72905.9;0;0.0 +19389600;-96646.8;0;0.0 +19393200;-123947.6;0;0.0 +19396800;-147404.8;0;0.0 +19400400;-150003.1;0;0.0 +19404000;-131568.5;0;0.0 +19407600;-123606.5;0;0.0 +19411200;-132141.6;0;0.0 +19414800;-132661.4;0;0.0 +19418400;-147085.9;0;0.0 +19422000;-148076.1;0;0.0 +19425600;-145174.1;0;0.0 +19429200;-108175.2;0;0.0 +19432800;-75003.2;0;0.0 +19436400;-57731.0;0;0.0 +19440000;-8227.1;0;0.0 +19443600;0;0;0.0 +19447200;0;0;0.0 +19450800;0;0;0.0 +19454400;-25331.9;0;0.0 +19458000;-13045.5;0;0.0 +19461600;-15731.0;0;0.0 +19465200;-98914.0;0;0.0 +19468800;-103717.1;0;0.0 +19472400;-110220.9;0;0.0 +19476000;-105052.2;0;0.0 +19479600;-141798.1;0;0.0 +19483200;-174231.5;0;0.0 +19486800;-167519.6;0;0.0 +19490400;-139679.9;0;0.0 +19494000;-123851.9;0;0.0 +19497600;-133896.8;0;0.0 +19501200;-156756.4;0;0.0 +19504800;-177860.8;0;0.0 +19508400;-169430.8;0;0.0 +19512000;-162652.2;0;0.0 +19515600;-130317.0;0;0.0 +19519200;-94016.7;0;0.0 +19522800;-63033.3;0;0.0 +19526400;-9530.6;0;0.0 +19530000;0;0;0.0 +19533600;0;0;0.0 +19537200;0;0;0.0 +19540800;-28135.5;0;0.0 +19544400;-13808.2;0;0.0 +19548000;-16375.2;0;0.0 +19551600;-101456.2;0;0.0 +19555200;-109666.2;0;0.0 +19558800;-120615.9;0;0.0 +19562400;-111298.6;0;0.0 +19566000;-148039.9;0;0.0 +19569600;-178104.5;0;0.0 +19573200;-171267.0;0;0.0 +19576800;-141047.9;0;0.0 +19580400;-121446.1;0;0.0 +19584000;-124848.7;0;0.0 +19587600;-143530.2;0;0.0 +19591200;-163278.7;0;0.0 +19594800;-159363.4;0;0.0 +19598400;-155032.5;0;0.0 +19602000;-122336.5;0;0.0 +19605600;-83171.9;0;0.0 +19609200;-42028.1;0;0.0 +19612800;-3943.5;0;0.0 +19616400;0;0;0.0 +19620000;0;0;0.0 +19623600;0;0;0.0 +19627200;-19970.1;0;0.0 +19630800;-10047.6;0;0.0 +19634400;-12667.7;0;0.0 +19638000;-43117.8;0;0.0 +19641600;-82908.1;0;0.0 +19645200;-100181.9;0;0.0 +19648800;-105744.8;0;0.0 +19652400;-145640.5;0;0.0 +19656000;-176516.7;0;0.0 +19659600;-169794.9;0;0.0 +19663200;-141950.9;0;0.0 +19666800;-123822.8;0;0.0 +19670400;-132529.8;0;0.0 +19674000;-156500.5;0;0.0 +19677600;-177420.2;0;0.0 +19681200;-168899.1;0;0.0 +19684800;-161349.0;0;0.0 +19688400;-127551.4;0;0.0 +19692000;-90604.3;0;0.0 +19695600;-45052.1;0;0.0 +19699200;-4639.8;0;0.0 +19702800;0;0;0.0 +19706400;0;0;0.0 +19710000;0;0;0.0 +19713600;-19884.1;0;0.0 +19717200;-8833.6;0;0.0 +19720800;-11465.7;0;0.0 +19724400;-26380.8;0;0.0 +19728000;-75742.3;0;0.0 +19731600;-101956.0;0;0.0 +19735200;-109118.2;0;0.0 +19738800;-150709.4;0;0.0 +19742400;-180494.5;0;0.0 +19746000;-172671.0;0;0.0 +19749600;-146260.0;0;0.0 +19753200;-127990.3;0;0.0 +19756800;-137534.4;0;0.0 +19760400;-160110.1;0;0.0 +19764000;-179532.5;0;0.0 +19767600;-171593.2;0;0.0 +19771200;-162384.2;0;0.0 +19774800;-128102.0;0;0.0 +19778400;-88923.8;0;0.0 +19782000;-47943.9;0;0.0 +19785600;-4381.9;0;0.0 +19789200;0;0;0.0 +19792800;0;0;0.0 +19796400;0;0;0.0 +19800000;-21778.5;0;0.0 +19803600;-9457.2;0;0.0 +19807200;-12487.2;0;0.0 +19810800;-82004.4;0;0.0 +19814400;-103036.2;0;0.0 +19818000;-116558.3;0;0.0 +19821600;-115964.1;0;0.0 +19825200;-154798.3;0;0.0 +19828800;-185028.0;0;0.0 +19832400;-178383.1;0;0.0 +19836000;-151790.8;0;0.0 +19839600;-133495.1;0;0.0 +19843200;-140432.8;0;0.0 +19846800;-163080.9;0;0.0 +19850400;-180991.3;0;0.0 +19854000;-172941.7;0;0.0 +19857600;-164367.3;0;0.0 +19861200;-130305.5;0;0.0 +19864800;-93268.1;0;0.0 +19868400;-61756.6;0;0.0 +19872000;-8517.0;0;0.0 +19875600;0;0;0.0 +19879200;0;0;0.0 +19882800;0;0;0.0 +19886400;-25843.6;0;0.0 +19890000;-12143.8;0;0.0 +19893600;-14266.5;0;0.0 +19897200;-92678.7;0;0.0 +19900800;-116640.0;0;0.0 +19904400;-117594.0;0;0.0 +19908000;-116905.3;0;0.0 +19911600;-148872.9;0;0.0 +19915200;-154546.7;0;0.0 +19918800;-153338.4;0;0.0 +19922400;-139014.8;0;0.0 +19926000;-130027.2;0;0.0 +19929600;-134461.0;0;0.0 +19933200;-134934.4;0;0.0 +19936800;-161941.4;0;0.0 +19940400;-173816.4;0;0.0 +19944000;-149371.3;0;0.0 +19947600;-138833.2;0;0.0 +19951200;-108325.2;0;0.0 +19954800;-67444.2;0;0.0 +19958400;-5783.8;0;0.0 +19962000;0;0;0.0 +19965600;0;0;0.0 +19969200;0;0;0.0 +19972800;-22840.3;0;0.0 +19976400;-36196.9;0;0.0 +19980000;-41666.8;0;0.0 +19983600;-3262.9;0;0.0 +19987200;-13743.7;0;0.0 +19990800;-65801.1;0;0.0 +19994400;-92472.5;0;0.0 +19998000;-113587.2;0;0.0 +20001600;-130446.8;0;0.0 +20005200;-134565.9;0;0.0 +20008800;-114742.2;0;0.0 +20012400;-102859.4;0;0.0 +20016000;-108903.5;0;0.0 +20019600;-122178.7;0;0.0 +20023200;-133390.0;0;0.0 +20026800;-136193.9;0;0.0 +20030400;-135500.0;0;0.0 +20034000;-98929.1;0;0.0 +20037600;-58925.2;0;0.0 +20041200;-35223.2;0;0.0 +20044800;-3295.4;0;0.0 +20048400;0;0;0.0 +20052000;0;0;0.0 +20055600;0;0;0.0 +20059200;-15563.4;0;0.0 +20062800;-8828.2;0;0.0 +20066400;-12078.3;0;0.0 +20070000;-37686.4;0;0.0 +20073600;-62428.4;0;0.0 +20077200;-73926.3;0;0.0 +20080800;-76065.4;0;0.0 +20084400;-115630.5;0;0.0 +20088000;-149240.1;0;0.0 +20091600;-143863.4;0;0.0 +20095200;-116042.5;0;0.0 +20098800;-99676.2;0;0.0 +20102400;-109115.0;0;0.0 +20106000;-130963.1;0;0.0 +20109600;-152778.1;0;0.0 +20113200;-149758.0;0;0.0 +20116800;-145136.9;0;0.0 +20120400;-112934.5;0;0.0 +20124000;-61409.0;0;0.0 +20127600;-16979.3;0;0.0 +20131200;-1634.6;0;0.0 +20134800;0;0;0.0 +20138400;0;0;0.0 +20142000;0;0;0.0 +20145600;-14493.4;0;0.0 +20149200;-7879.1;0;0.0 +20152800;-10453.2;0;0.0 +20156400;-21705.0;0;0.0 +20160000;-51984.9;0;0.0 +20163600;-70661.1;0;0.0 +20167200;-79285.5;0;0.0 +20170800;-122631.1;0;0.0 +20174400;-156632.4;0;0.0 +20178000;-150334.2;0;0.0 +20181600;-124132.4;0;0.0 +20185200;-107960.6;0;0.0 +20188800;-118439.7;0;0.0 +20192400;-141414.5;0;0.0 +20196000;-164667.7;0;0.0 +20199600;-158943.0;0;0.0 +20203200;-151042.5;0;0.0 +20206800;-118391.9;0;0.0 +20210400;-65279.6;0;0.0 +20214000;-10943.4;0;0.0 +20217600;-545.2;0;0.0 +20221200;0;0;0.0 +20224800;0;0;0.0 +20228400;0;0;0.0 +20232000;-14010.9;0;0.0 +20235600;-7609.0;0;0.0 +20239200;-9911.8;0;0.0 +20242800;-19122.7;0;0.0 +20246400;-53501.9;0;0.0 +20250000;-68912.2;0;0.0 +20253600;-74857.3;0;0.0 +20257200;-122726.1;0;0.0 +20260800;-157553.7;0;0.0 +20264400;-151161.9;0;0.0 +20268000;-124220.6;0;0.0 +20271600;-102906.1;0;0.0 +20275200;-111533.6;0;0.0 +20278800;-132081.4;0;0.0 +20282400;-154197.9;0;0.0 +20286000;-151643.8;0;0.0 +20289600;-147780.6;0;0.0 +20293200;-114447.9;0;0.0 +20296800;-65106.6;0;0.0 +20300400;-28771.4;0;0.0 +20304000;-2738.6;0;0.0 +20307600;0;0;0.0 +20311200;0;0;0.0 +20314800;0;0;0.0 +20318400;-15226.2;0;0.0 +20322000;-8671.6;0;0.0 +20325600;-11670.9;0;0.0 +20329200;-23408.2;0;0.0 +20332800;-50278.0;0;0.0 +20336400;-63798.9;0;0.0 +20340000;-51947.8;0;0.0 +20343600;-104738.3;0;0.0 +20347200;-145034.6;0;0.0 +20350800;-148083.4;0;0.0 +20354400;-123589.9;0;0.0 +20358000;-103298.6;0;0.0 +20361600;-108731.7;0;0.0 +20365200;-130168.5;0;0.0 +20368800;-153387.2;0;0.0 +20372400;-148985.2;0;0.0 +20376000;-145543.4;0;0.0 +20379600;-113544.6;0;0.0 +20383200;-73550.5;0;0.0 +20386800;-36133.8;0;0.0 +20390400;-3527.3;0;0.0 +20394000;0;0;0.0 +20397600;0;0;0.0 +20401200;0;0;0.0 +20404800;-17438.9;0;0.0 +20408400;-9278.1;0;0.0 +20412000;-12268.7;0;0.0 +20415600;-75367.6;0;0.0 +20419200;-85826.1;0;0.0 +20422800;-93699.7;0;0.0 +20426400;-95678.1;0;0.0 +20430000;-134098.7;0;0.0 +20433600;-160454.2;0;0.0 +20437200;-156558.0;0;0.0 +20440800;-131866.2;0;0.0 +20444400;-112377.2;0;0.0 +20448000;-121945.7;0;0.0 +20451600;-141136.0;0;0.0 +20455200;-161569.5;0;0.0 +20458800;-156125.2;0;0.0 +20462400;-151430.0;0;0.0 +20466000;-120190.2;0;0.0 +20469600;-82713.6;0;0.0 +20473200;-45480.2;0;0.0 +20476800;-4678.1;0;0.0 +20480400;0;0;0.0 +20484000;0;0;0.0 +20487600;0;0;0.0 +20491200;-19999.5;0;0.0 +20494800;-9876.7;0;0.0 +20498400;-12604.5;0;0.0 +20502000;-83859.6;0;0.0 +20505600;-100346.3;0;0.0 +20509200;-105114.9;0;0.0 +20512800;-103636.9;0;0.0 +20516400;-137945.0;0;0.0 +20520000;-146134.1;0;0.0 +20523600;-144855.7;0;0.0 +20527200;-124549.1;0;0.0 +20530800;-124645.5;0;0.0 +20534400;-118286.5;0;0.0 +20538000;-125190.5;0;0.0 +20541600;-154503.7;0;0.0 +20545200;-167565.2;0;0.0 +20548800;-144825.5;0;0.0 +20552400;-134883.5;0;0.0 +20556000;-105364.3;0;0.0 +20559600;-70610.7;0;0.0 +20563200;-7547.7;0;0.0 +20566800;0;0;0.0 +20570400;0;0;0.0 +20574000;0;0;0.0 +20577600;-23419.6;0;0.0 +20581200;-32788.5;0;0.0 +20584800;-42215.7;0;0.0 +20588400;-10032.3;0;0.0 +20592000;-21906.6;0;0.0 +20595600;-79224.5;0;0.0 +20599200;-96622.0;0;0.0 +20602800;-117330.3;0;0.0 +20606400;-138208.2;0;0.0 +20610000;-141383.4;0;0.0 +20613600;-122850.2;0;0.0 +20617200;-113422.8;0;0.0 +20620800;-120474.1;0;0.0 +20624400;-129418.1;0;0.0 +20628000;-140715.4;0;0.0 +20631600;-141383.6;0;0.0 +20635200;-139405.7;0;0.0 +20638800;-102149.4;0;0.0 +20642400;-68388.8;0;0.0 +20646000;-45210.7;0;0.0 +20649600;-4895.6;0;0.0 +20653200;0;0;0.0 +20656800;0;0;0.0 +20660400;0;0;0.0 +20664000;-20798.8;0;0.0 +20667600;-10859.7;0;0.0 +20671200;-13522.3;0;0.0 +20674800;-86610.1;0;0.0 +20678400;-94507.7;0;0.0 +20682000;-103947.2;0;0.0 +20685600;-103817.8;0;0.0 +20689200;-142820.8;0;0.0 +20692800;-171664.3;0;0.0 +20696400;-163511.0;0;0.0 +20700000;-132986.4;0;0.0 +20703600;-118265.0;0;0.0 +20707200;-117755.6;0;0.0 +20710800;-136273.8;0;0.0 +20714400;-159870.7;0;0.0 +20718000;-157101.3;0;0.0 +20721600;-152711.6;0;0.0 +20725200;-122032.4;0;0.0 +20728800;-85307.8;0;0.0 +20732400;-48775.3;0;0.0 +20736000;-5109.4;0;0.0 +20739600;0;0;0.0 +20743200;0;0;0.0 +20746800;0;0;0.0 +20750400;-19407.2;0;0.0 +20754000;-9866.1;0;0.0 +20757600;-12265.0;0;0.0 +20761200;-25717.5;0;0.0 +20764800;-64643.7;0;0.0 +20768400;-83639.7;0;0.0 +20772000;-84128.4;0;0.0 +20775600;-124251.4;0;0.0 +20779200;-154613.6;0;0.0 +20782800;-149245.9;0;0.0 +20786400;-120164.4;0;0.0 +20790000;-102929.9;0;0.0 +20793600;-109386.0;0;0.0 +20797200;-132448.9;0;0.0 +20800800;-156302.8;0;0.0 +20804400;-153470.6;0;0.0 +20808000;-149504.1;0;0.0 +20811600;-118175.5;0;0.0 +20815200;-82319.3;0;0.0 +20818800;-50025.4;0;0.0 +20822400;-5327.7;0;0.0 +20826000;0;0;0.0 +20829600;0;0;0.0 +20833200;0;0;0.0 +20836800;-20027.2;0;0.0 +20840400;-10730.0;0;0.0 +20844000;-13525.1;0;0.0 +20847600;-80150.3;0;0.0 +20851200;-90935.0;0;0.0 +20854800;-97741.8;0;0.0 +20858400;-85222.8;0;0.0 +20862000;-125112.1;0;0.0 +20865600;-152798.3;0;0.0 +20869200;-145489.3;0;0.0 +20872800;-120624.2;0;0.0 +20876400;-104673.4;0;0.0 +20880000;-92500.2;0;0.0 +20883600;-112615.9;0;0.0 +20887200;-134717.2;0;0.0 +20890800;-133830.1;0;0.0 +20894400;-102001.3;0;0.0 +20898000;-63403.7;0;0.0 +20901600;-20134.6;0;0.0 +20905200;-22.5;0;0.0 +20908800;0;0;0.0 +20912400;0;0;0.0 +20916000;0;0;0.0 +20919600;0;0;0.0 +20923200;-9114.4;0;0.0 +20926800;-6033.4;0;0.0 +20930400;-8545.5;0;0.0 +20934000;-15441.4;0;0.0 +20937600;-21628.8;0;0.0 +20941200;-24090.6;0;0.0 +20944800;-17685.1;0;0.0 +20948400;-68928.6;0;0.0 +20952000;-102230.0;0;0.0 +20955600;-110089.6;0;0.0 +20959200;-77370.3;0;0.0 +20962800;-59927.0;0;0.0 +20966400;-68462.9;0;0.0 +20970000;-92195.5;0;0.0 +20973600;-116153.0;0;0.0 +20977200;-110602.9;0;0.0 +20980800;-110717.1;0;0.0 +20984400;-56236.4;0;0.0 +20988000;-18340.5;0;0.0 +20991600;-2629.2;0;0.0 +20995200;0;0;0.0 +20998800;0;0;0.0 +21002400;0;0;0.0 +21006000;0;0;0.0 +21009600;-7449.9;0;0.0 +21013200;-5643.9;0;0.0 +21016800;-8248.3;0;0.0 +21020400;-14916.6;0;0.0 +21024000;-14060.6;0;0.0 +21027600;-34890.0;0;0.0 +21031200;-29107.7;0;0.0 +21034800;-83215.4;0;0.0 +21038400;-122034.0;0;0.0 +21042000;-122523.4;0;0.0 +21045600;-93033.8;0;0.0 +21049200;-78906.6;0;0.0 +21052800;-89286.3;0;0.0 +21056400;-114779.0;0;0.0 +21060000;-134796.0;0;0.0 +21063600;-128775.2;0;0.0 +21067200;-123282.8;0;0.0 +21070800;-66474.7;0;0.0 +21074400;-13915.8;0;0.0 +21078000;-394.2;0;0.0 +21081600;0;0;0.0 +21085200;0;0;0.0 +21088800;0;0;0.0 +21092400;0;0;0.0 +21096000;-8651.7;0;0.0 +21099600;-5564.5;0;0.0 +21103200;-8007.6;0;0.0 +21106800;-13625.4;0;0.0 +21110400;-24147.6;0;0.0 +21114000;-38214.7;0;0.0 +21117600;-30000.5;0;0.0 +21121200;-88824.9;0;0.0 +21124800;-98570.8;0;0.0 +21128400;-105468.2;0;0.0 +21132000;-94417.8;0;0.0 +21135600;-89178.6;0;0.0 +21139200;-97033.5;0;0.0 +21142800;-97616.4;0;0.0 +21146400;-129662.9;0;0.0 +21150000;-136730.2;0;0.0 +21153600;-82843.8;0;0.0 +21157200;-66190.5;0;0.0 +21160800;-21876.5;0;0.0 +21164400;-32.9;0;0.0 +21168000;0;0;0.0 +21171600;0;0;0.0 +21175200;0;0;0.0 +21178800;0;0;0.0 +21182400;-6537.7;0;0.0 +21186000;-14261.8;0;0.0 +21189600;-18723.4;0;0.0 +21193200;-1048.4;0;0.0 +21196800;-1274.7;0;0.0 +21200400;-2338.6;0.1;0.0 +21204000;-21102.8;0;0.0 +21207600;-63096.9;0;0.0 +21211200;-96958.3;0;0.0 +21214800;-102067.1;0;0.0 +21218400;-81120.1;0;0.0 +21222000;-71330.7;0;0.0 +21225600;-83510.0;0;0.0 +21229200;-94997.3;0;0.0 +21232800;-103221.7;0;0.0 +21236400;-104057.6;0;0.0 +21240000;-85498.3;0;0.0 +21243600;-33955.2;0;0.0 +21247200;-1106.4;0;0.0 +21250800;-4.2;0;0.0 +21254400;0;0;0.0 +21258000;0;0;0.0 +21261600;0;0;0.0 +21265200;0;0;0.0 +21268800;-2793.4;0;0.0 +21272400;-4995.9;0;0.0 +21276000;-6924.9;0;0.0 +21279600;-39471.4;0;0.0 +21283200;-10717.4;0;0.0 +21286800;-30368.1;0;0.0 +21290400;-48590.5;0;0.0 +21294000;-99041.7;0;0.0 +21297600;-135140.8;0;0.0 +21301200;-131880.4;0;0.0 +21304800;-102168.2;0;0.0 +21308400;-88630.1;0;0.0 +21312000;-99370.8;0;0.0 +21315600;-121730.2;0;0.0 +21319200;-141632.1;0;0.0 +21322800;-123334.5;0;0.0 +21326400;-105185.7;0;0.0 +21330000;-52925.4;0;0.0 +21333600;-6501.4;0;0.0 +21337200;-19.2;0;0.0 +21340800;0;0;0.0 +21344400;0;0;0.0 +21348000;0;0;0.0 +21351600;0;0;0.0 +21355200;-4981.1;0;0.0 +21358800;-5302.3;0;0.0 +21362400;-7139.0;0;0.0 +21366000;-30692.4;0;0.0 +21369600;-4979.3;0;0.0 +21373200;-14691.4;0;0.0 +21376800;-30219.9;0;0.0 +21380400;-88551.4;0;0.0 +21384000;-124688.2;0;0.0 +21387600;-128321.1;0;0.0 +21391200;-104749.9;0;0.0 +21394800;-89930.9;0;0.0 +21398400;-101237.5;0;0.0 +21402000;-123733.7;0;0.0 +21405600;-143415.5;0;0.0 +21409200;-130684.1;0;0.0 +21412800;-111167.6;0;0.0 +21416400;-57976.4;0;0.0 +21420000;-4988.0;0;0.0 +21423600;-4.6;0;0.0 +21427200;0;0;0.0 +21430800;0;0;0.0 +21434400;0;0;0.0 +21438000;0;0;0.0 +21441600;-5088.2;0;0.0 +21445200;-5318.2;0;0.0 +21448800;-7201.9;0;0.0 +21452400;-31261.3;0;0.0 +21456000;-5421.5;0;0.0 +21459600;-19469.5;0;0.0 +21463200;-28241.8;0;0.0 +21466800;-83655.4;0;0.0 +21470400;-118611.3;0;0.0 +21474000;-113548.3;0;0.0 +21477600;-74399.5;0;0.0 +21481200;-49193.1;0;0.0 +21484800;-68904.3;0;0.0 +21488400;-91345.7;0;0.0 +21492000;-118443.2;0;0.0 +21495600;-117100.1;0;0.0 +21499200;-111562.8;0;0.0 +21502800;-64284.5;0;0.0 +21506400;-33069.0;0;0.0 +21510000;-640.1;0;0.0 +21513600;0;0;0.0 +21517200;0;0;0.0 +21520800;0;0;0.0 +21524400;0;0;0.0 +21528000;-7913.7;0;0.0 +21531600;-6123.9;0;0.0 +21535200;-8611.6;0;0.0 +21538800;-17445.1;0;0.0 +21542400;-20102.6;0;0.0 +21546000;-44947.6;0;0.0 +21549600;-39167.7;0;0.0 +21553200;-81346.5;0;0.0 +21556800;-121470.6;0;0.0 +21560400;-125417.3;0;0.0 +21564000;-100023.9;0;0.0 +21567600;-85584.4;0;0.0 +21571200;-98538.8;0;0.0 +21574800;-120642.1;0;0.0 +21578400;-143272.1;0;0.0 +21582000;-138571.8;0;0.0 +21585600;-134702.5;0;0.0 +21589200;-102464.3;0;0.0 +21592800;-64468.3;0;0.0 +21596400;-19793.0;0;0.0 +21600000;-2627.3;0;0.0 +21603600;0;0;0.0 +21607200;0;0;0.0 +21610800;0;0;0.0 +21614400;-13849.8;0;0.0 +21618000;-7881.4;0;0.0 +21621600;-10225.2;0;0.0 +21625200;-59050.1;0;0.0 +21628800;-76981.4;0;0.0 +21632400;-87479.3;0;0.0 +21636000;-91552.6;0;0.0 +21639600;-130969.5;0;0.0 +21643200;-160422.6;0;0.0 +21646800;-151704.4;0;0.0 +21650400;-126491.5;0;0.0 +21654000;-109959.2;0;0.0 +21657600;-118253.7;0;0.0 +21661200;-135694.1;0;0.0 +21664800;-158496.2;0;0.0 +21668400;-154226.0;0;0.0 +21672000;-149551.1;0;0.0 +21675600;-118523.1;0;0.0 +21679200;-83311.5;0;0.0 +21682800;-41965.9;0;0.0 +21686400;-4735.3;0;0.0 +21690000;0;0;0.0 +21693600;0;0;0.0 +21697200;0;0;0.0 +21700800;-19745.6;0;0.0 +21704400;-9106.0;0;0.0 +21708000;-11655.7;0;0.0 +21711600;-47072.1;0;0.0 +21715200;-88639.0;0;0.0 +21718800;-95490.0;0;0.0 +21722400;-100572.2;0;0.0 +21726000;-136698.1;0;0.0 +21729600;-135894.4;0;0.0 +21733200;-141025.4;0;0.0 +21736800;-127149.1;0;0.0 +21740400;-120498.3;0;0.0 +21744000;-125680.8;0;0.0 +21747600;-125121.3;0;0.0 +21751200;-152388.9;0;0.0 +21754800;-162744.5;0;0.0 +21758400;-130237.5;0;0.0 +21762000;-111082.9;0;0.0 +21765600;-53528.9;0;0.0 +21769200;-6625.8;0;0.0 +21772800;-25.0;0;0.0 +21776400;0;0;0.0 +21780000;0;0;0.0 +21783600;0;0;0.0 +21787200;-11231.7;0;0.0 +21790800;-21968.9;0;0.0 +21794400;-26692.3;0;0.0 +21798000;-2614.6;0;0.0 +21801600;-3553.5;0;0.0 +21805200;-3795.9;0;0.0 +21808800;-17709.2;0;0.0 +21812400;-58037.7;0;0.0 +21816000;-93377.8;0;0.0 +21819600;-103327.0;0;0.0 +21823200;-82957.5;0;0.0 +21826800;-75119.9;0;0.0 +21830400;-88092.9;0;0.0 +21834000;-87262.4;0;0.0 +21837600;-103533.6;0;0.0 +21841200;-91997.7;0;0.0 +21844800;-69120.6;0;0.0 +21848400;-25584.0;0;0.0 +21852000;-1272.3;0;0.0 +21855600;-26.7;0;0.0 +21859200;0;0;0.0 +21862800;0;0;0.0 +21866400;0;0;0.0 +21870000;0;0;0.0 +21873600;-2875.7;0;0.0 +21877200;-4373.3;0;0.0 +21880800;-6301.6;0;0.0 +21884400;-10225.4;0;0.0 +21888000;-16326.6;0;0.0 +21891600;-24227.7;0;0.0 +21895200;-13933.2;0;0.0 +21898800;-51903.5;0;0.0 +21902400;-107504.3;0;0.0 +21906000;-111940.1;0;0.0 +21909600;-89669.5;0;0.0 +21913200;-71001.7;0;0.0 +21916800;-84842.2;0;0.0 +21920400;-110571.3;0;0.0 +21924000;-134530.1;0;0.0 +21927600;-120177.6;0;0.0 +21931200;-106376.7;0;0.0 +21934800;-62524.2;0;0.0 +21938400;-8304.4;0;0.0 +21942000;-37.9;0;0.0 +21945600;0;0;0.0 +21949200;0;0;0.0 +21952800;0;0;0.0 +21956400;0;0;0.0 +21960000;-4577.0;0;0.0 +21963600;-5350.8;0;0.0 +21967200;-7397.9;0;0.0 +21970800;-9805.5;0;0.0 +21974400;-16535.3;0;0.0 +21978000;-35942.1;0;0.0 +21981600;-54181.9;0;0.0 +21985200;-104003.9;0;0.0 +21988800;-138466.9;0;0.0 +21992400;-132220.9;0;0.0 +21996000;-107752.5;0;0.0 +21999600;-92825.1;0;0.0 +22003200;-99217.8;0;0.0 +22006800;-120479.3;0;0.0 +22010400;-142273.6;0;0.0 +22014000;-139396.4;0;0.0 +22017600;-135554.0;0;0.0 +22021200;-104911.4;0;0.0 +22024800;-50885.8;0;0.0 +22028400;-24562.8;0;0.0 +22032000;-2373.2;0;0.0 +22035600;0;0;0.0 +22039200;0;0;0.0 +22042800;0;0;0.0 +22046400;-14001.4;0;0.0 +22050000;-7898.7;0;0.0 +22053600;-10537.2;0;0.0 +22057200;-74958.0;0;0.0 +22060800;-79714.3;0;0.0 +22064400;-87378.8;0;0.0 +22068000;-90618.5;0;0.0 +22071600;-133440.4;0;0.0 +22075200;-162712.7;0;0.0 +22078800;-153266.9;0;0.0 +22082400;-126419.3;0;0.0 +22086000;-103545.8;0;0.0 +22089600;-110468.5;0;0.0 +22093200;-131147.2;0;0.0 +22096800;-154373.9;0;0.0 +22100400;-151848.4;0;0.0 +22104000;-148891.7;0;0.0 +22107600;-118055.4;0;0.0 +22111200;-84401.9;0;0.0 +22114800;-53449.8;0;0.0 +22118400;-7031.2;0;0.0 +22122000;0;0;0.0 +22125600;0;0;0.0 +22129200;0;0;0.0 +22132800;-22262.3;0;0.0 +22136400;-11699.9;0;0.0 +22140000;-14345.3;0;0.0 +22143600;-90241.9;0;0.0 +22147200;-93607.1;0;0.0 +22150800;-99787.4;0;0.0 +22154400;-94832.4;0;0.0 +22158000;-137283.7;0;0.0 +22161600;-162684.3;0;0.0 +22165200;-153052.1;0;0.0 +22168800;-122666.7;0;0.0 +22172400;-103993.8;0;0.0 +22176000;-113164.7;0;0.0 +22179600;-133219.3;0;0.0 +22183200;-157412.9;0;0.0 +22186800;-153865.5;0;0.0 +22190400;-149450.4;0;0.0 +22194000;-118097.6;0;0.0 +22197600;-82755.0;0;0.0 +22201200;-47098.2;0;0.0 +22204800;-5134.7;0;0.0 +22208400;0;0;0.0 +22212000;0;0;0.0 +22215600;0;0;0.0 +22219200;-21783.2;0;0.0 +22222800;-10585.4;0;0.0 +22226400;-13556.8;0;0.0 +22230000;-73442.3;0;0.0 +22233600;-86754.8;0;0.0 +22237200;-101386.7;0;0.0 +22240800;-104240.5;0;0.0 +22244400;-146540.2;0;0.0 +22248000;-178427.1;0;0.0 +22251600;-164939.6;0;0.0 +22255200;-133054.9;0;0.0 +22258800;-112134.3;0;0.0 +22262400;-118906.7;0;0.0 +22266000;-139649.7;0;0.0 +22269600;-162235.8;0;0.0 +22273200;-158997.2;0;0.0 +22276800;-154699.9;0;0.0 +22280400;-122964.9;0;0.0 +22284000;-87037.3;0;0.0 +22287600;-55313.2;0;0.0 +22291200;-7130.9;0;0.0 +22294800;0;0;0.0 +22298400;0;0;0.0 +22302000;0;0;0.0 +22305600;-22522.8;0;0.0 +22309200;-11251.1;0;0.0 +22312800;-13761.6;0;0.0 +22316400;-97960.5;0;0.0 +22320000;-113813.0;0;0.0 +22323600;-113794.5;0;0.0 +22327200;-102893.8;0;0.0 +22330800;-142513.7;0;0.0 +22334400;-151186.7;0;0.0 +22338000;-150743.2;0;0.0 +22341600;-137650.6;0;0.0 +22345200;-128689.7;0;0.0 +22348800;-134544.9;0;0.0 +22352400;-131428.4;0;0.0 +22356000;-160676.8;0;0.0 +22359600;-172471.1;0;0.0 +22363200;-150227.0;0;0.0 +22366800;-140725.0;0;0.0 +22370400;-110560.7;0;0.0 +22374000;-76336.4;0;0.0 +22377600;-9217.3;0;0.0 +22381200;0;0;0.0 +22384800;0;0;0.0 +22388400;0;0;0.0 +22392000;-27229.7;0;0.0 +22395600;-41542.0;0;0.0 +22399200;-51083.9;0;0.0 +22402800;-21369.8;0;0.0 +22406400;-26418.1;0;0.0 +22410000;-84913.7;0;0.0 +22413600;-101489.5;0;0.0 +22417200;-117048.2;0;0.0 +22420800;-133218.4;0;0.0 +22424400;-132548.0;0;0.0 +22428000;-110971.1;0;0.0 +22431600;-101868.1;0;0.0 +22435200;-113645.4;0;0.0 +22438800;-120655.1;0;0.0 +22442400;-132615.6;0;0.0 +22446000;-134785.9;0;0.0 +22449600;-131981.6;0;0.0 +22453200;-83892.2;0;0.0 +22456800;-29176.7;0;0.0 +22460400;-14338.3;0;0.0 +22464000;-1410.9;0;0.0 +22467600;0;0;0.0 +22471200;0;0;0.0 +22474800;0;0;0.0 +22478400;-12226.7;0;0.0 +22482000;-7335.5;0;0.0 +22485600;-9702.5;0;0.0 +22489200;-13609.0;0;0.0 +22492800;-29340.5;0;0.0 +22496400;-54924.1;0;0.0 +22500000;-52864.3;0;0.0 +22503600;-107050.0;0;0.0 +22507200;-146644.9;0;0.0 +22510800;-142792.6;0;0.0 +22514400;-110317.4;0;0.0 +22518000;-93042.1;0;0.0 +22521600;-96114.4;0;0.0 +22525200;-117626.7;0;0.0 +22528800;-142525.3;0;0.0 +22532400;-139812.5;0;0.0 +22536000;-135586.4;0;0.0 +22539600;-89519.9;0;0.0 +22543200;-24876.7;0;0.0 +22546800;-266.8;0;0.0 +22550400;0;0;0.0 +22554000;0;0;0.0 +22557600;0;0;0.0 +22561200;0;0;0.0 +22564800;-10698.8;0;0.0 +22568400;-6582.2;0;0.0 +22572000;-8931.4;0;0.0 +22575600;-13678.6;0;0.0 +22579200;-27095.2;0;0.0 +22582800;-34488.3;0;0.0 +22586400;-50826.7;0;0.0 +22590000;-104100.5;0;0.0 +22593600;-143600.6;0;0.0 +22597200;-141462.6;0;0.0 +22600800;-119006.8;0;0.0 +22604400;-101528.3;0;0.0 +22608000;-109805.9;0;0.0 +22611600;-127003.9;0;0.0 +22615200;-146255.5;0;0.0 +22618800;-143126.5;0;0.0 +22622400;-139305.1;0;0.0 +22626000;-100758.6;0;0.0 +22629600;-36215.7;0;0.0 +22633200;-5465.1;0;0.0 +22636800;0;0;0.0 +22640400;0;0;0.0 +22644000;0;0;0.0 +22647600;0;0;0.0 +22651200;-11073.7;0;0.0 +22654800;-6811.7;0;0.0 +22658400;-9105.1;0;0.0 +22662000;-13228.0;0;0.0 +22665600;-31101.4;0;0.0 +22669200;-50588.7;0;0.0 +22672800;-69970.4;0;0.0 +22676400;-120893.2;0;0.0 +22680000;-155326.2;0;0.0 +22683600;-151934.6;0;0.0 +22687200;-127482.5;0;0.0 +22690800;-109934.7;0;0.0 +22694400;-118592.5;0;0.0 +22698000;-136495.6;0;0.0 +22701600;-156167.0;0;0.0 +22705200;-150696.5;0;0.0 +22708800;-145313.4;0;0.0 +22712400;-106241.1;0;0.0 +22716000;-50465.6;0;0.0 +22719600;-10338.3;0;0.0 +22723200;-243.1;0;0.0 +22726800;0;0;0.0 +22730400;0;0;0.0 +22734000;0;0;0.0 +22737600;-12685.1;0;0.0 +22741200;-7091.0;0;0.0 +22744800;-9315.6;0;0.0 +22748400;-16477.2;0;0.0 +22752000;-33854.4;0;0.0 +22755600;-72357.0;0;0.0 +22759200;-84881.1;0;0.0 +22762800;-129553.7;0;0.0 +22766400;-164349.5;0;0.0 +22770000;-160781.1;0;0.0 +22773600;-135018.8;0;0.0 +22777200;-118627.0;0;0.0 +22780800;-127171.0;0;0.0 +22784400;-144591.1;0;0.0 +22788000;-163959.1;0;0.0 +22791600;-157034.7;0;0.0 +22795200;-151305.8;0;0.0 +22798800;-117509.5;0;0.0 +22802400;-68786.8;0;0.0 +22806000;-25163.9;0;0.0 +22809600;-2233.7;0;0.0 +22813200;0;0;0.0 +22816800;0;0;0.0 +22820400;0;0;0.0 +22824000;-16834.9;0;0.0 +22827600;-7930.2;0;0.0 +22831200;-10262.1;0;0.0 +22834800;-20248.3;0;0.0 +22838400;-36203.6;0;0.0 +22842000;-64235.3;0;0.0 +22845600;-74764.2;0;0.0 +22849200;-122589.3;0;0.0 +22852800;-158765.8;0;0.0 +22856400;-157756.3;0;0.0 +22860000;-132280.9;0;0.0 +22863600;-109799.9;0;0.0 +22867200;-112337.9;0;0.0 +22870800;-133460.3;0;0.0 +22874400;-155124.2;0;0.0 +22878000;-149686.3;0;0.0 +22881600;-142693.4;0;0.0 +22885200;-105372.1;0;0.0 +22888800;-49625.8;0;0.0 +22892400;-8981.7;0;0.0 +22896000;-103.0;0;0.0 +22899600;0;0;0.0 +22903200;0;0;0.0 +22906800;0;0;0.0 +22910400;-13153.3;0;0.0 +22914000;-6805.1;0;0.0 +22917600;-9064.1;0;0.0 +22921200;-21346.0;0;0.0 +22924800;-34090.5;0;0.0 +22928400;-30128.7;0;0.0 +22932000;-31567.5;0;0.0 +22935600;-57369.8;0;0.0 +22939200;-79796.9;0;0.0 +22942800;-92690.1;0;0.0 +22946400;-73552.3;0;0.0 +22950000;-67847.8;0;0.0 +22953600;-59817.6;0;0.0 +22957200;-58325.1;0;0.0 +22960800;-100325.7;0;0.0 +22964400;-121709.0;0;0.0 +22968000;-106591.6;0;0.0 +22971600;-96109.3;0;0.0 +22975200;-51947.9;0;0.0 +22978800;-25894.2;0;0.0 +22982400;-1240.3;0;0.0 +22986000;0;0;0.0 +22989600;0;0;0.0 +22993200;0;0;0.0 +22996800;-11495.8;0;0.0 +23000400;-21237.3;0;0.0 +23004000;-25775.4;0;0.0 +23007600;-2860.5;0;0.0 +23011200;-5574.0;0;0.0 +23014800;-26520.7;0;0.0 +23018400;-44176.1;0;0.0 +23022000;-70648.6;0;0.0 +23025600;-98065.7;0;0.0 +23029200;-98986.0;0;0.0 +23032800;-78039.9;0;0.0 +23036400;-70040.2;0;0.0 +23040000;-78243.4;0;0.0 +23043600;-85930.5;0;0.0 +23047200;-100790.0;0;0.0 +23050800;-102972.9;0;0.0 +23054400;-107383.0;0;0.0 +23058000;-62459.0;0;0.0 +23061600;-31130.6;0;0.0 +23065200;-7379.7;0;0.0 +23068800;-1175.5;0;0.0 +23072400;0;0;0.0 +23076000;0;0;0.0 +23079600;0;0;0.0 +23083200;-9975.2;0;0.0 +23086800;-7009.4;0;0.0 +23090400;-9325.6;0;0.0 +23094000;-15656.9;0;0.0 +23097600;-23376.3;0;0.0 +23101200;-52364.7;0;0.0 +23104800;-70656.9;0;0.0 +23108400;-112791.9;0;0.0 +23112000;-141531.3;0;0.0 +23115600;-142609.0;0;0.0 +23119200;-109146.7;0;0.0 +23122800;-89588.9;0;0.0 +23126400;-100843.0;0;0.0 +23130000;-124943.1;0;0.0 +23133600;-147374.7;0;0.0 +23137200;-143640.7;0;0.0 +23140800;-139954.5;0;0.0 +23144400;-110028.2;0;0.0 +23148000;-75322.5;0;0.0 +23151600;-16847.6;0;0.0 +23155200;-3041.2;0;0.0 +23158800;0;0;0.0 +23162400;0;0;0.0 +23166000;0;0;0.0 +23169600;-14406.5;0;0.0 +23173200;-8324.9;0;0.0 +23176800;-10672.7;0;0.0 +23180400;-22583.9;0;0.0 +23184000;-48900.9;0;0.0 +23187600;-62395.6;0;0.0 +23191200;-52230.3;0;0.0 +23194800;-93381.2;0;0.0 +23198400;-132202.2;0;0.0 +23202000;-136633.5;0;0.0 +23205600;-110481.7;0;0.0 +23209200;-89613.5;0;0.0 +23212800;-101186.8;0;0.0 +23216400;-123517.7;0;0.0 +23220000;-144873.4;0;0.0 +23223600;-141288.3;0;0.0 +23227200;-136918.3;0;0.0 +23230800;-104535.4;0;0.0 +23234400;-58323.4;0;0.0 +23238000;-21870.0;0;0.0 +23241600;-2190.7;0;0.0 +23245200;0;0;0.0 +23248800;0;0;0.0 +23252400;0;0;0.0 +23256000;-12948.7;0;0.0 +23259600;-7841.6;0;0.0 +23263200;-10517.9;0;0.0 +23266800;-20995.4;0;0.0 +23270400;-40101.6;0;0.0 +23274000;-54235.8;0;0.0 +23277600;-60105.5;0;0.0 +23281200;-105691.7;0;0.0 +23284800;-140928.5;0;0.0 +23288400;-138840.1;0;0.0 +23292000;-112463.9;0;0.0 +23295600;-95341.7;0;0.0 +23299200;-97476.7;0;0.0 +23302800;-84465.1;0;0.0 +23306400;-124994.3;0;0.0 +23310000;-100212.0;0;0.0 +23313600;-99465.4;0;0.0 +23317200;-59189.2;0;0.0 +23320800;-8446.7;0;0.0 +23324400;-323.6;0;0.0 +23328000;0;0;0.0 +23331600;0;0;0.0 +23335200;0;0;0.0 +23338800;0;0;0.0 +23342400;-7317.5;0;0.0 +23346000;-5557.5;0;0.0 +23349600;-7876.5;0;0.0 +23353200;-12463.1;0;0.0 +23356800;-8711.2;0;0.0 +23360400;-8036.0;0;0.0 +23364000;-8528.4;0;0.0 +23367600;-40909.3;0;0.0 +23371200;-74551.0;0;0.0 +23374800;-76792.6;0;0.0 +23378400;-50121.2;0;0.0 +23382000;-12715.8;0;0.0 +23385600;-21297.8;0;0.0 +23389200;-45806.0;0;0.0 +23392800;-60703.0;0;0.0 +23396400;-60996.3;0;0.0 +23400000;-57702.3;0;0.0 +23403600;-25342.2;0;0.0 +23407200;-46.2;0;0.0 +23410800;0;0;0.0 +23414400;0;0;0.0 +23418000;0;0;0.0 +23421600;0;0;0.0 +23425200;0;0;0.0 +23428800;-1484.2;445.2;0.0 +23432400;-2304.6;0;0.0 +23436000;-5078.0;0;0.0 +23439600;-35382.9;0;0.0 +23443200;-6830.3;0;0.0 +23446800;-13724.9;0;0.0 +23450400;-3181.2;0;0.0 +23454000;-35903.4;0;0.0 +23457600;-54938.9;0;0.0 +23461200;-50526.8;0;0.0 +23464800;-25293.0;0;0.0 +23468400;-12363.9;0;0.0 +23472000;-12315.5;0;0.0 +23475600;-35538.2;0;0.0 +23479200;-62210.5;0;0.0 +23482800;-62465.1;0;0.0 +23486400;-58241.5;0;0.0 +23490000;-16332.9;0;0.0 +23493600;-39.8;0;0.0 +23497200;0;0;0.0 +23500800;0;0;0.0 +23504400;0;0;0.0 +23508000;0;0;0.0 +23511600;0;0;0.0 +23515200;-477.1;1687.8;0.0 +23518800;-1368.3;0;0.0 +23522400;-3840.3;0;0.0 +23526000;-25628.5;0;0.0 +23529600;-3892.3;0;0.0 +23533200;-7969.9;0;0.0 +23536800;-2546.8;0;0.0 +23540400;-15995.0;0;0.0 +23544000;-52180.5;0;0.0 +23547600;-60888.9;0;0.0 +23551200;-28736.8;0;0.0 +23554800;-28380.2;0;0.0 +23558400;-24523.9;0;0.0 +23562000;-38919.9;0;0.0 +23565600;-65723.4;0;0.0 +23569200;-95340.5;0;0.0 +23572800;-64049.2;0;0.0 +23576400;-57669.4;0;0.0 +23580000;-13704.2;0;0.0 +23583600;-11.8;0;0.0 +23587200;0;0;0.0 +23590800;0;0;0.0 +23594400;0;0;0.0 +23598000;0;0;0.0 +23601600;-1934.1;0;0.0 +23605200;-8325.8;0;0.0 +23608800;-13644.9;0;0.0 +23612400;-1430.2;0;0.0 +23616000;-791.0;0;0.0 +23619600;-2452.2;0;0.0 +23623200;-12785.6;0;0.0 +23626800;-39173.3;0;0.0 +23630400;-55785.7;0;0.0 +23634000;-66242.6;0;0.0 +23637600;-21594.7;0;0.0 +23641200;-22303.7;0;0.0 +23644800;-29269.6;0;0.0 +23648400;-39070.8;0;0.0 +23652000;-55270.7;0;0.0 +23655600;-45224.6;0;0.0 +23659200;-51403.1;0;0.0 +23662800;-9363.0;0;0.0 +23666400;-415.7;0;0.0 +23670000;0;0;0.0 +23673600;0;0;0.0 +23677200;0;0;0.0 +23680800;0;0;0.0 +23684400;0;0;0.0 +23688000;-215.2;56.6;0.0 +23691600;-3441.7;0;0.0 +23695200;-5798.4;0;0.0 +23698800;-23015.7;0;0.0 +23702400;-1514.8;0;0.0 +23706000;-10716.4;0;0.0 +23709600;-6342.4;0;0.0 +23713200;-13927.2;0;0.0 +23716800;-53658.0;0;0.0 +23720400;-65122.3;0;0.0 +23724000;-28424.2;0;0.0 +23727600;-16460.7;0;0.0 +23731200;-18352.8;0;0.0 +23734800;-44495.3;0;0.0 +23738400;-72052.1;0;0.0 +23742000;-64954.3;0;0.0 +23745600;-47922.1;0;0.0 +23749200;-1072.3;0;0.0 +23752800;-59.0;0;0.0 +23756400;0;0;0.0 +23760000;0;0;0.0 +23763600;0;0;0.0 +23767200;0;0;0.0 +23770800;0;0;0.0 +23774400;-301.4;2162.6;0.0 +23778000;-1642.2;0;0.0 +23781600;-4333.2;0;0.0 +23785200;-12859.2;0;0.0 +23788800;-2426.0;0;0.0 +23792400;-1298.5;0;0.0 +23796000;-1992.1;0;0.0 +23799600;-23162.3;0;0.0 +23803200;-81149.1;0;0.0 +23806800;-90134.0;0;0.0 +23810400;-70622.2;0;0.0 +23814000;-54757.5;0;0.0 +23817600;-59931.7;0;0.0 +23821200;-80934.0;0;0.0 +23824800;-107399.9;0;0.0 +23828400;-106118.0;0;0.0 +23832000;-106186.4;0;0.0 +23835600;-65549.2;0;0.0 +23839200;-30756.1;0;0.0 +23842800;-3771.2;0;0.0 +23846400;0;0;0.0 +23850000;0;0;0.0 +23853600;0;0;0.0 +23857200;0;0;0.0 +23860800;-5544.4;0;0.0 +23864400;-5596.0;0;0.0 +23868000;-8186.1;0;0.0 +23871600;-11997.1;0;0.0 +23875200;-4774.6;0;0.0 +23878800;-15709.4;0;0.0 +23882400;-13985.6;0;0.0 +23886000;-53831.8;0;0.0 +23889600;-62417.8;0;0.0 +23893200;-61982.4;0;0.0 +23896800;-31432.9;0;0.0 +23900400;-18648.9;0;0.0 +23904000;-28714.8;0;0.0 +23907600;-36683.6;0;0.0 +23911200;-75254.5;0;0.0 +23914800;-77348.0;0;0.0 +23918400;-60404.5;0;0.0 +23922000;-30897.0;0;0.0 +23925600;-973.5;0;0.0 +23929200;0;0;0.0 +23932800;0;0;0.0 +23936400;0;0;0.0 +23940000;0;0;0.0 +23943600;0;0;0.0 +23947200;-1617.8;0;0.0 +23950800;-3885.9;0;0.0 +23954400;-5992.3;0;0.0 +23958000;-30474.3;0;0.0 +23961600;-5476.3;0;0.0 +23965200;-6425.2;0;0.0 +23968800;-8515.3;0;0.0 +23972400;-59857.6;0;0.0 +23976000;-106110.1;0;0.0 +23979600;-104464.9;0;0.0 +23983200;-79277.6;0;0.0 +23986800;-64163.2;0;0.0 +23990400;-75185.6;0;0.0 +23994000;-95421.9;0;0.0 +23997600;-120549.8;0;0.0 +24001200;-115959.9;0;0.0 +24004800;-110396.9;0;0.0 +24008400;-76664.8;0;0.0 +24012000;-4522.8;0;0.0 +24015600;0;0;0.0 +24019200;0;0;0.0 +24022800;0;0;0.0 +24026400;0;0;0.0 +24030000;0;0;0.0 +24033600;-5491.9;0;0.0 +24037200;-5524.2;0;0.0 +24040800;-7858.1;0;0.0 +24044400;-9520.7;0;0.0 +24048000;-11656.5;0;0.0 +24051600;-22202.3;0;0.0 +24055200;-1581.3;0;0.0 +24058800;-32997.3;0;0.0 +24062400;-63711.3;0;0.0 +24066000;-50789.6;0;0.0 +24069600;-19736.3;0;0.0 +24073200;-7224.5;0;0.0 +24076800;-18211.9;0;0.0 +24080400;-39865.0;0;0.0 +24084000;-54887.7;0;0.0 +24087600;-59989.8;0;0.0 +24091200;-57016.7;0;0.0 +24094800;-1780.3;0;0.0 +24098400;-73.0;0;0.0 +24102000;0;0;0.0 +24105600;0;0;0.0 +24109200;0;0;0.0 +24112800;0;0;0.0 +24116400;0;0;0.0 +24120000;-473.8;1967.5;0.0 +24123600;-924.9;0;0.0 +24127200;-3328.5;0;0.0 +24130800;-23605.5;0;0.0 +24134400;-1912.1;0;0.0 +24138000;-7359.2;0;0.0 +24141600;-60.3;0;0.0 +24145200;-3786.9;0;0.0 +24148800;-11807.1;0;0.0 +24152400;-7014.5;0;0.0 +24156000;-11263.2;0;0.0 +24159600;-2622.5;0;0.0 +24163200;-5878.8;0;0.0 +24166800;-4954.6;0;0.0 +24170400;-2531.7;0;0.0 +24174000;-37669.8;0;0.0 +24177600;-28479.1;0;0.0 +24181200;-2370.8;0;0.0 +24184800;-1676.8;0;0.0 +24188400;0;0;0.0 +24192000;0;0;0.0 +24195600;0;0;0.0 +24199200;0;0;0.0 +24202800;0;0;0.0 +24206400;0;4849.0;0.0 +24210000;-558.7;2967.6;0.0 +24213600;-2470.9;2220.0;0.0 +24217200;0;0;0.0 +24220800;0;0;0.0 +24224400;0;11336.7;0.0 +24228000;0;508.3;0.0 +24231600;0;0;0.0 +24235200;0;0;0.0 +24238800;-308.6;0;0.0 +24242400;0;0;0.0 +24246000;0;0;0.0 +24249600;-61.2;0;0.0 +24253200;-6.6;0;0.0 +24256800;0;0;0.0 +24260400;0;0;0.0 +24264000;0;0;0.0 +24267600;0;0;0.0 +24271200;0;0;0.0 +24274800;0;0;0.0 +24278400;0;0;0.0 +24282000;0;0;0.0 +24285600;0;0;0.0 +24289200;0;0;0.0 +24292800;0;12150.9;0.0 +24296400;0;0;0.0 +24300000;0;0;0.0 +24303600;-2759.3;564.6;0.0 +24307200;0;14.0;0.0 +24310800;-179.5;0;0.0 +24314400;-840.6;0;0.0 +24318000;-5887.0;0;0.0 +24321600;-34275.0;0;0.0 +24325200;-39188.4;0;0.0 +24328800;-4273.8;0;0.0 +24332400;-1282.9;0;0.0 +24336000;-1876.0;0;0.0 +24339600;-11112.9;0;0.0 +24343200;-31401.4;0;0.0 +24346800;-31133.2;0;0.0 +24350400;-7926.0;0;0.0 +24354000;-6305.9;0;0.0 +24357600;0;0;0.0 +24361200;0;0;0.0 +24364800;0;0;0.0 +24368400;0;0;0.0 +24372000;0;0;0.0 +24375600;0;0;0.0 +24379200;0;2360.5;0.0 +24382800;0;0;0.0 +24386400;-153.8;0;0.0 +24390000;-2842.6;0;0.0 +24393600;-1934.9;0;0.0 +24397200;-1679.8;0;0.0 +24400800;-1852.5;0;0.0 +24404400;-35086.5;0;0.0 +24408000;-89699.6;0;0.0 +24411600;-89743.0;0;0.0 +24415200;-63548.9;0;0.0 +24418800;-45053.1;0;0.0 +24422400;-54346.0;0;0.0 +24426000;-76776.5;0;0.0 +24429600;-85111.8;0;0.0 +24433200;-78789.1;0;0.0 +24436800;-63788.5;0;0.0 +24440400;-28462.3;0;0.0 +24444000;-1265.0;0;0.0 +24447600;0;0;0.0 +24451200;0;0;0.0 +24454800;0;0;0.0 +24458400;0;0;0.0 +24462000;0;0;0.0 +24465600;-1085.3;669.3;0.0 +24469200;-3365.4;0;0.0 +24472800;-5777.7;0;0.0 +24476400;-36602.5;0;0.0 +24480000;-7777.2;0;0.0 +24483600;-15501.4;0;0.0 +24487200;-27188.9;0;0.0 +24490800;-87433.0;0;0.0 +24494400;-126294.1;0;0.0 +24498000;-127837.2;0;0.0 +24501600;-100264.6;0;0.0 +24505200;-87677.4;0;0.0 +24508800;-95671.2;0;0.0 +24512400;-115099.9;0;0.0 +24516000;-135370.7;0;0.0 +24519600;-128378.7;0;0.0 +24523200;-121292.3;0;0.0 +24526800;-81671.6;0;0.0 +24530400;-41266.4;0;0.0 +24534000;-9610.6;0;0.0 +24537600;-629.1;0;0.0 +24541200;0;0;0.0 +24544800;0;0;0.0 +24548400;0;0;0.0 +24552000;-8148.0;0;0.0 +24555600;-6583.7;0;0.0 +24559200;-8920.4;0;0.0 +24562800;-18934.1;0;0.0 +24566400;-30374.0;0;0.0 +24570000;-40351.0;0;0.0 +24573600;-39836.0;0;0.0 +24577200;-81962.7;0;0.0 +24580800;-117948.2;0;0.0 +24584400;-115488.8;0;0.0 +24588000;-91719.1;0;0.0 +24591600;-76807.5;0;0.0 +24595200;-84190.8;0;0.0 +24598800;-104627.4;0;0.0 +24602400;-129534.7;0;0.0 +24606000;-126870.1;0;0.0 +24609600;-124495.0;0;0.0 +24613200;-82167.4;0;0.0 +24616800;-31889.7;0;0.0 +24620400;-673.3;0;0.0 +24624000;0;0;0.0 +24627600;0;0;0.0 +24631200;0;0;0.0 +24634800;0;0;0.0 +24638400;-9777.8;0;0.0 +24642000;-6725.4;0;0.0 +24645600;-9040.8;0;0.0 +24649200;-12130.1;0;0.0 +24652800;-19799.7;0;0.0 +24656400;-26478.4;0;0.0 +24660000;-7344.3;0;0.0 +24663600;-34587.5;0;0.0 +24667200;-72866.3;0;0.0 +24670800;-66292.3;0;0.0 +24674400;-27842.8;0;0.0 +24678000;-4840.2;0;0.0 +24681600;-12486.8;0;0.0 +24685200;-32675.4;0;0.0 +24688800;-53723.4;0;0.0 +24692400;-31137.5;0;0.0 +24696000;-2381.0;0;0.0 +24699600;-3975.3;0;0.0 +24703200;-50.1;0;0.0 +24706800;0;0;0.0 +24710400;0;0;0.0 +24714000;0;0;0.0 +24717600;0;0;0.0 +24721200;0;0;0.0 +24724800;-284.3;883.6;0.0 +24728400;-360.6;0;0.0 +24732000;-2374.2;0;0.0 +24735600;-23971.9;0;0.0 +24739200;-1944.4;0;0.0 +24742800;-5897.4;0;0.0 +24746400;0;0;0.0 +24750000;-8711.7;0;0.0 +24753600;-11131.5;0;0.0 +24757200;-3353.2;0;0.0 +24760800;0;0;0.0 +24764400;-76.1;0;0.0 +24768000;-115.6;0;0.0 +24771600;-262.1;0;0.0 +24775200;-13092.9;0;0.0 +24778800;-29244.4;0;0.0 +24782400;-14655.1;0;0.0 +24786000;-323.8;0;0.0 +24789600;0;0;0.0 +24793200;0;0;0.0 +24796800;0;0;0.0 +24800400;0;0;0.0 +24804000;0;0;0.0 +24807600;0;0;0.0 +24811200;0;9608.7;0.0 +24814800;0;7405.1;0.0 +24818400;-1030.4;4909.5;0.0 +24822000;0;0;0.0 +24825600;0;0;0.0 +24829200;0;11307.1;0.0 +24832800;0;626.6;0.0 +24836400;-123.4;0;0.0 +24840000;-7164.5;0;0.0 +24843600;-13017.1;0;0.0 +24847200;-255.5;0;0.0 +24850800;-355.5;0;0.0 +24854400;-595.8;0;0.0 +24858000;-629.0;0;0.0 +24861600;-5642.5;0;0.0 +24865200;0;0;0.0 +24868800;-4359.4;0;0.0 +24872400;0;0;0.0 +24876000;0;0;0.0 +24879600;0;674.4;0.0 +24883200;0;0;0.0 +24886800;0;0;0.0 +24890400;0;0;0.0 +24894000;0;0;0.0 +24897600;0;14236.6;0.0 +24901200;0;11071.0;0.0 +24904800;-184.6;7089.1;0.0 +24908400;-1693.6;33.7;0.0 +24912000;0;0;0.0 +24915600;0;0;0.0 +24919200;0;0;0.0 +24922800;-381.9;0;0.0 +24926400;-30325.6;0;0.0 +24930000;-27593.3;0;0.0 +24933600;0;0;0.0 +24937200;0;0;0.0 +24940800;-245.7;0;0.0 +24944400;0;0;0.0 +24948000;0;0;0.0 +24951600;-14257.4;0;0.0 +24955200;-12566.1;0;0.0 +24958800;-2068.2;0;0.0 +24962400;0;0;0.0 +24966000;0;1028.3;0.0 +24969600;0;0;0.0 +24973200;0;0;0.0 +24976800;0;0;0.0 +24980400;0;0;0.0 +24984000;0;15101.4;0.0 +24987600;0;12326.4;0.0 +24991200;-889.6;7962.6;0.0 +24994800;-972.3;1336.1;0.0 +24998400;0;0;0.0 +25002000;0;0;0.0 +25005600;-108.9;0;0.0 +25009200;-3612.4;0;0.0 +25012800;-29265.6;0;0.0 +25016400;-37587.4;0;0.0 +25020000;-7525.5;0;0.0 +25023600;-4120.5;0;0.0 +25027200;-3045.9;0;0.0 +25030800;-3645.2;0;0.0 +25034400;-13793.3;0;0.0 +25038000;-14232.8;0;0.0 +25041600;-27798.4;0;0.0 +25045200;0;0;0.0 +25048800;0;0;0.0 +25052400;0;598.6;0.0 +25056000;0;0;0.0 +25059600;0;0;0.0 +25063200;0;0;0.0 +25066800;0;0;0.0 +25070400;0;9077.0;0.0 +25074000;-137.9;6613.6;0.0 +25077600;-1491.2;4351.9;0.0 +25081200;-2671.5;0;0.0 +25084800;0;0;0.0 +25088400;-288.1;0;0.0 +25092000;0;0;0.0 +25095600;-2302.5;0;0.0 +25099200;-28325.1;0;0.0 +25102800;-14435.3;0;0.0 +25106400;-3944.5;0;0.0 +25110000;0;0;0.0 +25113600;-1857.3;0;0.0 +25117200;-12599.9;0;0.0 +25120800;-27496.1;0;0.0 +25124400;-17318.4;0;0.0 +25128000;-24022.6;0;0.0 +25131600;0;0;0.0 +25135200;0;0;0.0 +25138800;0;0;0.0 +25142400;0;0;0.0 +25146000;0;0;0.0 +25149600;0;0;0.0 +25153200;0;0;0.0 +25156800;0;4639.4;0.0 +25160400;0;0;0.0 +25164000;0;0;0.0 +25167600;-12476.7;0;0.0 +25171200;0;0;0.0 +25174800;0;0;0.0 +25178400;0;0;0.0 +25182000;-4421.6;0;0.0 +25185600;-26551.4;0;0.0 +25189200;-30159.2;0;0.0 +25192800;-606.7;0;0.0 +25196400;-611.6;0;0.0 +25200000;-674.9;0;0.0 +25203600;-3180.7;0;0.0 +25207200;-21910.6;0;0.0 +25210800;-10758.9;0;0.0 +25214400;-25819.9;0;0.0 +25218000;-2077.7;0;0.0 +25221600;0;0;0.0 +25225200;0;0;0.0 +25228800;0;0;0.0 +25232400;0;0;0.0 +25236000;0;0;0.0 +25239600;0;0;0.0 +25243200;0;5380.6;0.0 +25246800;0;0;0.0 +25250400;0;0;0.0 +25254000;-8445.6;0;0.0 +25257600;0;0;0.0 +25261200;-2880.0;0;0.0 +25264800;-562.1;0;0.0 +25268400;-2648.5;0;0.0 +25272000;-29248.0;0;0.0 +25275600;-29730.3;0;0.0 +25279200;-1456.0;0;0.0 +25282800;-1049.6;0;0.0 +25286400;-1356.0;0;0.0 +25290000;-2815.2;0;0.0 +25293600;-46029.7;0;0.0 +25297200;-31996.8;0;0.0 +25300800;-3013.8;0;0.0 +25304400;-5336.3;0;0.0 +25308000;0;0;0.0 +25311600;0;0;0.0 +25315200;0;0;0.0 +25318800;0;0;0.0 +25322400;0;0;0.0 +25326000;0;0;0.0 +25329600;0;4207.6;0.0 +25333200;0;0;0.0 +25336800;0;0;0.0 +25340400;-23542.2;0;0.0 +25344000;-5140.3;0;0.0 +25347600;-2720.2;0;0.0 +25351200;-1866.0;0;0.0 +25354800;-41119.7;0;0.0 +25358400;-67826.4;0;0.0 +25362000;-77107.4;0;0.0 +25365600;-65492.3;0;0.0 +25369200;-62374.8;0;0.0 +25372800;-67381.2;0;0.0 +25376400;-61096.8;0;0.0 +25380000;-95495.7;0;0.0 +25383600;-99730.5;0;0.0 +25387200;-70441.5;0;0.0 +25390800;-76766.9;0;0.0 +25394400;-42056.6;0;0.0 +25398000;-10871.9;0;0.0 +25401600;0;0;0.0 +25405200;0;0;0.0 +25408800;0;0;0.0 +25412400;0;0;0.0 +25416000;-4012.7;0;0.0 +25419600;-11068.9;0;0.0 +25423200;-16637.6;0;0.0 +25426800;-1472.1;0;0.0 +25430400;-2267.6;0;0.0 +25434000;-18668.9;0;0.0 +25437600;-48224.8;0;0.0 +25441200;-70974.9;0;0.0 +25444800;-97299.5;0;0.0 +25448400;-101522.5;0;0.0 +25452000;-84238.7;0;0.0 +25455600;-77413.9;0;0.0 +25459200;-82823.2;0;0.0 +25462800;-91887.3;0;0.0 +25466400;-103365.2;0;0.0 +25470000;-108998.5;0;0.0 +25473600;-109594.0;0;0.0 +25477200;-76155.7;0;0.0 +25480800;-37795.0;0;0.0 +25484400;-20288.9;0;0.0 +25488000;-2415.1;0;0.0 +25491600;0;0;0.0 +25495200;0;0;0.0 +25498800;0;0;0.0 +25502400;-9927.0;0;0.0 +25506000;-7452.3;0;0.0 +25509600;-9599.4;0;0.0 +25513200;-13209.5;0;0.0 +25516800;-2616.8;0;0.0 +25520400;-5785.9;0;0.0 +25524000;-121.1;0;0.0 +25527600;-21777.5;0;0.0 +25531200;-44386.9;0;0.0 +25534800;-33361.8;0;0.0 +25538400;-3595.7;0;0.0 +25542000;-64.1;0;0.0 +25545600;-634.2;0;0.0 +25549200;-28751.1;0;0.0 +25552800;-35274.5;0;0.0 +25556400;-11977.0;0;0.0 +25560000;-33329.7;0;0.0 +25563600;0;0;0.0 +25567200;0;0;0.0 +25570800;0;0;0.0 +25574400;0;0;0.0 +25578000;0;0;0.0 +25581600;0;0;0.0 +25585200;0;0;0.0 +25588800;0;7930.4;0.0 +25592400;-2411.8;4897.1;0.0 +25596000;-5087.3;2614.6;0.0 +25599600;-4759.9;0;0.0 +25603200;0;0;0.0 +25606800;-1977.1;0;0.0 +25610400;0;0;0.0 +25614000;-1457.3;0;0.0 +25617600;-22432.1;0;0.0 +25621200;-29401.0;0;0.0 +25624800;-6286.8;0;0.0 +25628400;0;0;0.0 +25632000;0;0;0.0 +25635600;-1765.5;0;0.0 +25639200;-15604.1;0;0.0 +25642800;-5181.7;0;0.0 +25646400;-28403.4;0;0.0 +25650000;-1662.3;0;0.0 +25653600;0;0;0.0 +25657200;0;653.6;0.0 +25660800;0;0;0.0 +25664400;0;0;0.0 +25668000;0;0;0.0 +25671600;0;0;0.0 +25675200;0;9676.8;0.0 +25678800;0;0;0.0 +25682400;0;0;0.0 +25686000;-8549.0;161.8;0.0 +25689600;-330.4;0;0.0 +25693200;0;0;0.0 +25696800;0;0;0.0 +25700400;-965.7;0;0.0 +25704000;-29711.2;0;0.0 +25707600;-41968.1;0;0.0 +25711200;-17086.6;0;0.0 +25714800;-13384.3;0;0.0 +25718400;-32428.0;0;0.0 +25722000;-56022.4;0;0.0 +25725600;-82946.8;0;0.0 +25729200;-83928.9;0;0.0 +25732800;-64259.0;0;0.0 +25736400;-24435.3;0;0.0 +25740000;-188.9;0;0.0 +25743600;0;0;0.0 +25747200;0;0;0.0 +25750800;0;0;0.0 +25754400;0;0;0.0 +25758000;0;0;0.0 +25761600;-826.4;176.9;0.0 +25765200;-2562.0;0;0.0 +25768800;-5229.6;0;0.0 +25772400;-10194.8;0;0.0 +25776000;-19171.1;0;0.0 +25779600;-28650.8;0;0.0 +25783200;-1272.6;0;0.0 +25786800;-10946.8;0;0.0 +25790400;-58924.8;0;0.0 +25794000;-19238.7;0;0.0 +25797600;-1130.5;0;0.0 +25801200;-562.6;0;0.0 +25804800;-1230.2;0;0.0 +25808400;-8816.9;0;0.0 +25812000;-25521.4;0;0.0 +25815600;-32545.8;0;0.0 +25819200;-10832.9;0;0.0 +25822800;-16520.5;0;0.0 +25826400;0;0;0.0 +25830000;0;0;0.0 +25833600;0;0;0.0 +25837200;0;0;0.0 +25840800;0;0;0.0 +25844400;0;0;0.0 +25848000;0;4945.2;0.0 +25851600;0;0;0.0 +25855200;-4.2;0;0.0 +25858800;-9565.5;0;0.0 +25862400;0;0;0.0 +25866000;0;0;0.0 +25869600;-222.0;0;0.0 +25873200;-6199.6;0;0.0 +25876800;-34226.9;0;0.0 +25880400;-19809.4;0;0.0 +25884000;-7719.6;0;0.0 +25887600;-1179.4;0;0.0 +25891200;-3269.8;0;0.0 +25894800;-25052.7;0;0.0 +25898400;-50355.9;0;0.0 +25902000;-41335.9;0;0.0 +25905600;-6474.9;0;0.0 +25909200;-5686.8;0;0.0 +25912800;0;0;0.0 +25916400;0;0;0.0 +25920000;0;0;0.0 +25923600;0;0;0.0 +25927200;0;0;0.0 +25930800;0;0;0.0 +25934400;0;3568.1;0.0 +25938000;0;0;0.0 +25941600;-580.4;0;0.0 +25945200;-3287.3;0;0.0 +25948800;-3089.9;0;0.0 +25952400;-2199.3;0;0.0 +25956000;0;0;0.0 +25959600;-546.3;0;0.0 +25963200;-6937.6;0;0.0 +25966800;-13658.6;0;0.0 +25970400;-5816.5;0;0.0 +25974000;-2603.4;0;0.0 +25977600;-2718.7;0;0.0 +25981200;-2899.3;0;0.0 +25984800;-20144.9;0;0.0 +25988400;-10925.4;0;0.0 +25992000;-19763.0;0;0.0 +25995600;-4789.9;0;0.0 +25999200;-1068.7;0;0.0 +26002800;0;0;0.0 +26006400;0;0;0.0 +26010000;0;0;0.0 +26013600;0;0;0.0 +26017200;0;0;0.0 +26020800;0;8698.4;0.0 +26024400;-40.8;6027.0;0.0 +26028000;-1737.8;5060.9;0.0 +26031600;0;0;0.0 +26035200;0;0;0.0 +26038800;0;11701.7;0.0 +26042400;0;1727.3;0.0 +26046000;0;0;0.0 +26049600;0;0;0.0 +26053200;-4825.1;0;0.0 +26056800;0;0;0.0 +26060400;0;0;0.0 +26064000;0;0;0.0 +26067600;0;0;0.0 +26071200;0;0;0.0 +26074800;-1843.6;0;0.0 +26078400;0;0;0.0 +26082000;0;0;0.0 +26085600;0;1824.3;0.0 +26089200;0;3298.4;0.0 +26092800;0;0;0.0 +26096400;0;0;0.0 +26100000;0;0;0.0 +26103600;0;0;0.0 +26107200;0;18400.3;0.0 +26110800;0;16793.1;0.0 +26114400;-207.2;11605.2;0.0 +26118000;-1700.0;1398.5;0.0 +26121600;0;66.2;0.0 +26125200;0;0;0.0 +26128800;0;0;0.0 +26132400;-4286.3;0;0.0 +26136000;-25153.3;0;0.0 +26139600;-38859.8;0;0.0 +26143200;-12923.2;0;0.0 +26146800;-9942.3;0;0.0 +26150400;-16434.1;0;0.0 +26154000;-28259.3;0;0.0 +26157600;-33123.3;0;0.0 +26161200;-12936.8;0;0.0 +26164800;-7718.8;0;0.0 +26168400;-5087.3;0;0.0 +26172000;0;0;0.0 +26175600;0;141.5;0.0 +26179200;0;0;0.0 +26182800;0;0;0.0 +26186400;0;0;0.0 +26190000;0;0;0.0 +26193600;0;4472.4;0.0 +26197200;0;0;0.0 +26200800;-784.9;0;0.0 +26204400;-12089.1;0;0.0 +26208000;-651.9;0;0.0 +26211600;-2278.7;0;0.0 +26215200;-1873.5;0;0.0 +26218800;-20161.8;0;0.0 +26222400;-72887.6;0;0.0 +26226000;-72050.1;0;0.0 +26229600;-48595.1;0;0.0 +26233200;-22851.1;0;0.0 +26236800;-27576.5;0;0.0 +26240400;-28020.0;0;0.0 +26244000;-64001.2;0;0.0 +26247600;-62041.3;0;0.0 +26251200;-24738.8;0;0.0 +26254800;-9174.2;0;0.0 +26258400;0;0;0.0 +26262000;0;0;0.0 +26265600;0;0;0.0 +26269200;0;0;0.0 +26272800;0;0;0.0 +26276400;0;0;0.0 +26280000;0;3970.4;0.0 +26283600;-369.0;0;0.0 +26287200;-2819.7;0;0.0 +26290800;-10199.8;0;0.0 +26294400;0;0;0.0 +26298000;0;0;0.0 +26301600;-191.4;0;0.0 +26305200;-3870.4;0;0.0 +26308800;-31135.9;0;0.0 +26312400;-46462.5;0;0.0 +26316000;-4701.7;0;0.0 +26319600;-791.9;0;0.0 +26323200;-2040.3;0;0.0 +26326800;-8629.4;0;0.0 +26330400;-25959.2;0;0.0 +26334000;-31222.8;0;0.0 +26337600;-36877.6;0;0.0 +26341200;-1262.7;0;0.0 +26344800;0;0;0.0 +26348400;0;0;0.0 +26352000;0;0;0.0 +26355600;0;0;0.0 +26359200;0;0;0.0 +26362800;0;0;0.0 +26366400;0;7907.3;0.0 +26370000;0;0;0.0 +26373600;0;0;0.0 +26377200;-6965.1;5.9;0.0 +26380800;0;0;0.0 +26384400;-1504.3;0;0.0 +26388000;0;7.6;0.0 +26391600;-7405.0;0;0.0 +26395200;-26571.9;0;0.0 +26398800;-16562.7;0;0.0 +26402400;0;0;0.0 +26406000;0;132.5;0.0 +26409600;0;0;0.0 +26413200;0;0;0.0 +26416800;-8744.0;0;0.0 +26420400;-9858.5;0;0.0 +26424000;-8400.3;0;0.0 +26427600;-4502.9;0;0.0 +26431200;0;0;0.0 +26434800;0;2693.5;0.0 +26438400;0;0;0.0 +26442000;0;0;0.0 +26445600;0;0;0.0 +26449200;0;0;0.0 +26452800;0;18576.4;0.0 +26456400;-417.2;14242.0;0.0 +26460000;-1976.8;10905.0;0.0 +26463600;-2211.1;1432.6;0.0 +26467200;0;0;0.0 +26470800;0;0;0.0 +26474400;0;110.8;0.0 +26478000;-2076.1;0;0.0 +26481600;-15944.2;0;0.0 +26485200;-29671.7;0;0.0 +26488800;-5171.2;0;0.0 +26492400;-1439.7;0;0.0 +26496000;-1369.9;0;0.0 +26499600;-1470.7;0;0.0 +26503200;-17705.0;0;0.0 +26506800;-15262.9;0;0.0 +26510400;-22424.6;0;0.0 +26514000;0;0;0.0 +26517600;0;0;0.0 +26521200;0;0;0.0 +26524800;0;0;0.0 +26528400;0;0;0.0 +26532000;0;0;0.0 +26535600;0;0;0.0 +26539200;0;4919.9;0.0 +26542800;0;0;0.0 +26546400;0;0;0.0 +26550000;-20748.2;0;0.0 +26553600;-6270.4;0;0.0 +26557200;-6277.4;0;0.0 +26560800;0;0;0.0 +26564400;-5957.6;0;0.0 +26568000;-29016.2;0;0.0 +26571600;-31299.5;0;0.0 +26575200;-29425.2;0;0.0 +26578800;-34401.8;0;0.0 +26582400;-39371.3;0;0.0 +26586000;-36569.3;0;0.0 +26589600;-63622.1;0;0.0 +26593200;-89933.9;0;0.0 +26596800;-58297.8;0;0.0 +26600400;-45246.3;0;0.0 +26604000;-32751.5;0;0.0 +26607600;-5220.0;0;0.0 +26611200;0;0;0.0 +26614800;0;0;0.0 +26618400;0;0;0.0 +26622000;0;0;0.0 +26625600;-1943.9;0;0.0 +26629200;-7887.4;0;0.0 +26632800;-13007.0;0;0.0 +26636400;-2192.7;0;0.0 +26640000;-10257.4;0;0.0 +26643600;-26884.8;0;0.0 +26647200;-38899.7;0;0.0 +26650800;-55465.6;0;0.0 +26654400;-74711.3;0;0.0 +26658000;-81105.9;0;0.0 +26661600;-61720.6;0;0.0 +26665200;-48388.5;0;0.0 +26668800;-21687.8;0;0.0 +26672400;-29672.6;0;0.0 +26676000;-48204.0;0;0.0 +26679600;-50756.2;0;0.0 +26683200;-26800.4;0;0.0 +26686800;-512.2;0;0.0 +26690400;0;0;0.0 +26694000;0;0;0.0 +26697600;0;0;0.0 +26701200;0;0;0.0 +26704800;0;0;0.0 +26708400;0;0;0.0 +26712000;0;0;0.0 +26715600;-761.9;2817.0;0.0 +26719200;-2373.8;0;0.0 +26722800;-5556.3;0;0.0 +26726400;-16448.1;0;0.0 +26730000;-1350.3;0;0.0 +26733600;-3458.9;0;0.0 +26737200;-28.8;0;0.0 +26740800;-19080.9;0;0.0 +26744400;-31535.9;0;0.0 +26748000;-14671.8;0;0.0 +26751600;-735.8;0;0.0 +26755200;0;0;0.0 +26758800;0;0;0.0 +26762400;-9112.2;0;0.0 +26766000;-31020.9;0;0.0 +26769600;-2277.7;0;0.0 +26773200;-30216.5;0;0.0 +26776800;-365.9;0;0.0 +26780400;0;0;0.0 +26784000;0;1673.8;0.0 +26787600;0;0;0.0 +26791200;0;0;0.0 +26794800;0;0;0.0 +26798400;0;0;0.0 +26802000;0;13941.3;0.0 +26805600;-1082.2;11375.3;0.0 +26809200;-3124.6;8131.1;0.0 +26812800;-3167.5;20.5;0.0 +26816400;0;0;0.0 +26820000;-1151.5;0;0.0 +26823600;0;0;0.0 +26827200;0;0;0.0 +26830800;-17115.2;0;0.0 +26834400;-3580.1;0;0.0 +26838000;0;0;0.0 +26841600;0;0;0.0 +26845200;0;0;0.0 +26848800;-4867.5;0;0.0 +26852400;-25069.5;0;0.0 +26856000;-19473.9;0;0.0 +26859600;-12169.6;0;0.0 +26863200;-6559.1;0;0.0 +26866800;0;0;0.0 +26870400;0;1099.2;0.0 +26874000;0;0;0.0 +26877600;0;0;0.0 +26881200;0;0;0.0 +26884800;0;0;0.0 +26888400;0;12627.1;0.0 +26892000;0;0;0.0 +26895600;0;0;0.0 +26899200;-7705.7;11.7;0.0 +26902800;0;0;0.0 +26906400;-812.8;0;0.0 +26910000;0;0;0.0 +26913600;-6809.6;0;0.0 +26917200;-29577.9;0;0.0 +26920800;-16433.3;0;0.0 +26924400;0;0;0.0 +26928000;0;0;0.0 +26931600;0;0;0.0 +26935200;0;0;0.0 +26938800;-26076.2;0;0.0 +26942400;-12942.2;0;0.0 +26946000;-11990.0;0;0.0 +26949600;-6140.2;0;0.0 +26953200;0;0;0.0 +26956800;0;1596.3;0.0 +26960400;0;0;0.0 +26964000;0;0;0.0 +26967600;0;0;0.0 +26971200;0;0;0.0 +26974800;0;15702.8;0.0 +26978400;0;0;0.0 +26982000;0;0;0.0 +26985600;-7590.2;94.4;0.0 +26989200;0;0;0.0 +26992800;-733.4;0;0.0 +26996400;0;0;0.0 +27000000;-7071.6;0;0.0 +27003600;-7942.0;0;0.0 +27007200;-18211.0;0;0.0 +27010800;0;0;0.0 +27014400;0;0;0.0 +27018000;0;0;0.0 +27021600;-517.3;0;0.0 +27025200;-19550.5;0;0.0 +27028800;-5547.5;0;0.0 +27032400;-11931.5;0;0.0 +27036000;0;0;0.0 +27039600;0;0;0.0 +27043200;0;0;0.0 +27046800;0;0;0.0 +27050400;0;0;0.0 +27054000;0;0;0.0 +27057600;0;0;0.0 +27061200;0;10498.8;0.0 +27064800;0;0;0.0 +27068400;0;0;0.0 +27072000;-14045.2;0;0.0 +27075600;-1474.2;0;0.0 +27079200;-5269.2;0;0.0 +27082800;-1019.4;0;0.0 +27086400;-3984.1;0;0.0 +27090000;-22127.9;0;0.0 +27093600;-2582.8;0;0.0 +27097200;-2593.8;0;0.0 +27100800;0;23.7;0.0 +27104400;0;0;0.0 +27108000;-7376.0;0;0.0 +27111600;-23879.7;0;0.0 +27115200;-20165.7;0;0.0 +27118800;-19726.5;0;0.0 +27122400;-2019.3;0;0.0 +27126000;0;0;0.0 +27129600;0;768.2;0.0 +27133200;0;0;0.0 +27136800;0;0;0.0 +27140400;0;0;0.0 +27144000;0;0;0.0 +27147600;0;18891.0;0.0 +27151200;0;0;0.0 +27154800;0;0;0.0 +27158400;-6491.1;1789.9;0.0 +27162000;0;332.6;0.0 +27165600;0;0;0.0 +27169200;0;0;0.0 +27172800;0;0;0.0 +27176400;-5314.2;0;0.0 +27180000;0;0;0.0 +27183600;0;0;0.0 +27187200;0;0;0.0 +27190800;0;0;0.0 +27194400;0;0;0.0 +27198000;-7365.9;0;0.0 +27201600;-20308.1;0;0.0 +27205200;-15822.1;0;0.0 +27208800;-10990.0;0;0.0 +27212400;0;0;0.0 +27216000;0;0;0.0 +27219600;0;0;0.0 +27223200;0;0;0.0 +27226800;0;0;0.0 +27230400;0;0;0.0 +27234000;0;14406.7;0.0 +27237600;0;13208.9;0.0 +27241200;-225.2;10793.7;0.0 +27244800;-2975.7;0;0.0 +27248400;0;0;0.0 +27252000;0;1327.2;0.0 +27255600;0;943.8;0.0 +27259200;-393.5;0;0.0 +27262800;-2233.5;0;0.0 +27266400;-2137.6;0;0.0 +27270000;-436.9;0;0.0 +27273600;0;0;0.0 +27277200;0;0;0.0 +27280800;0;0;0.0 +27284400;0;0;0.0 +27288000;-6367.8;0;0.0 +27291600;-13719.5;0;0.0 +27295200;0;0;0.0 +27298800;0;422.9;0.0 +27302400;0;783.9;0.0 +27306000;0;0;0.0 +27309600;0;0;0.0 +27313200;0;0;0.0 +27316800;0;0;0.0 +27320400;0;10081.7;0.0 +27324000;0;0;0.0 +27327600;0;0;0.0 +27331200;-5388.5;568.1;0.0 +27334800;0;22.6;0.0 +27338400;-589.3;0;0.0 +27342000;0;300.4;0.0 +27345600;-1555.3;0;0.0 +27349200;-16501.6;0;0.0 +27352800;-15986.4;0;0.0 +27356400;0;0;0.0 +27360000;0;357.2;0.0 +27363600;0;214.6;0.0 +27367200;-4256.1;0;0.0 +27370800;-10488.5;0;0.0 +27374400;-19448.1;0;0.0 +27378000;-21656.6;0;0.0 +27381600;-1473.5;0;0.0 +27385200;0;0;0.0 +27388800;0;1311.2;0.0 +27392400;0;0;0.0 +27396000;0;0;0.0 +27399600;0;0;0.0 +27403200;0;0;0.0 +27406800;0;15185.2;0.0 +27410400;0;0;0.0 +27414000;0;0;0.0 +27417600;-7643.9;249.0;0.0 +27421200;-194.9;0;0.0 +27424800;-157.8;0;0.0 +27428400;0;0;0.0 +27432000;-4550.6;0;0.0 +27435600;-34876.1;0;0.0 +27439200;-12356.0;0;0.0 +27442800;0;0;0.0 +27446400;0;0;0.0 +27450000;0;0;0.0 +27453600;-182.5;0;0.0 +27457200;-22555.4;0;0.0 +27460800;-892.9;0;0.0 +27464400;-14142.8;0;0.0 +27468000;-8648.7;0;0.0 +27471600;0;0;0.0 +27475200;0;0;0.0 +27478800;0;0;0.0 +27482400;0;0;0.0 +27486000;0;0;0.0 +27489600;0;0;0.0 +27493200;0;13820.6;0.0 +27496800;-584.6;10613.7;0.0 +27500400;-2241.4;7491.8;0.0 +27504000;-3039.1;63.9;0.0 +27507600;0;0;0.0 +27511200;0;0;0.0 +27514800;0;0;0.0 +27518400;-2096.2;0;0.0 +27522000;-14835.7;0;0.0 +27525600;-17774.8;0;0.0 +27529200;-5410.1;0;0.0 +27532800;-204.0;0;0.0 +27536400;-21.3;0;0.0 +27540000;-162.9;0;0.0 +27543600;-21251.3;0;0.0 +27547200;-26383.2;0;0.0 +27550800;-17354.9;0;0.0 +27554400;0;0;0.0 +27558000;0;0;0.0 +27561600;0;0;0.0 +27565200;0;0;0.0 +27568800;0;0;0.0 +27572400;0;0;0.0 +27576000;0;0;0.0 +27579600;0;3600.9;0.0 +27583200;0;0;0.0 +27586800;0;0;0.0 +27590400;-19546.6;0;0.0 +27594000;-4234.4;0;0.0 +27597600;-2396.9;0;0.0 +27601200;-6081.6;0;0.0 +27604800;-44566.2;0;0.0 +27608400;-87689.3;0;0.0 +27612000;-74802.8;0;0.0 +27615600;-43758.6;0;0.0 +27619200;-29914.0;0;0.0 +27622800;-42824.7;0;0.0 +27626400;-66133.0;0;0.0 +27630000;-24386.0;0;0.0 +27633600;-8714.9;0;0.0 +27637200;-17491.4;0;0.0 +27640800;-8952.2;0;0.0 +27644400;0;0;0.0 +27648000;0;782.1;0.0 +27651600;0;0;0.0 +27655200;0;0;0.0 +27658800;0;0;0.0 +27662400;0;0;0.0 +27666000;-396.3;14264.0;0.0 +27669600;-1254.7;0;0.0 +27673200;-3835.7;0;0.0 +27676800;-11185.7;1898.2;0.0 +27680400;-261.5;2474.7;0.0 +27684000;-3528.8;443.3;0.0 +27687600;0;1698.1;0.0 +27691200;0;43.3;0.0 +27694800;-28059.8;0;0.0 +27698400;-14677.0;0;0.0 +27702000;0;0;0.0 +27705600;0;2291.4;0.0 +27709200;0;1263.7;0.0 +27712800;-5348.7;0;0.0 +27716400;-26034.3;0;0.0 +27720000;-28166.1;0;0.0 +27723600;-21745.3;0;0.0 +27727200;-7578.4;0;0.0 +27730800;0;147.7;0.0 +27734400;0;4343.6;0.0 +27738000;0;0;0.0 +27741600;0;0;0.0 +27745200;0;0;0.0 +27748800;0;0;0.0 +27752400;0;22312.7;0.0 +27756000;0;17117.1;0.0 +27759600;-1381.3;13767.9;0.0 +27763200;-3228.1;43.5;0.0 +27766800;0;0;0.0 +27770400;-810.0;0;0.0 +27774000;0;757.1;0.0 +27777600;-1081.1;0;0.0 +27781200;-9444.7;0;0.0 +27784800;-3516.3;0;0.0 +27788400;-2116.3;0;0.0 +27792000;-678.1;0;0.0 +27795600;0;0;0.0 +27799200;0;0;0.0 +27802800;-8254.8;0;0.0 +27806400;-20737.6;0;0.0 +27810000;0;0;0.0 +27813600;-11432.9;0;0.0 +27817200;0;0;0.0 +27820800;0;0;0.0 +27824400;0;0;0.0 +27828000;0;0;0.0 +27831600;0;0;0.0 +27835200;0;0;0.0 +27838800;0;13792.4;0.0 +27842400;0;12014.4;0.0 +27846000;-115.2;10213.2;0.0 +27849600;-3657.0;0;0.0 +27853200;0;0;0.0 +27856800;0;1691.2;0.0 +27860400;0;813.5;0.0 +27864000;0;0;0.0 +27867600;0;0;0.0 +27871200;-3472.3;0;0.0 +27874800;0;0;0.0 +27878400;0;0;0.0 +27882000;0;0;0.0 +27885600;0;0;0.0 +27889200;0;0;0.0 +27892800;-11221.1;0;0.0 +27896400;-1749.7;0;0.0 +27900000;0;0;0.0 +27903600;0;94.5;0.0 +27907200;0;961.8;0.0 +27910800;0;0;0.0 +27914400;0;0;0.0 +27918000;0;0;0.0 +27921600;0;0;0.0 +27925200;0;11614.3;0.0 +27928800;0;0;0.0 +27932400;0;0;0.0 +27936000;-5183.5;64.6;0.0 +27939600;0;178.0;0.0 +27943200;-173.2;0;0.0 +27946800;0;0;0.0 +27950400;-935.3;0;0.0 +27954000;-22045.6;0;0.0 +27957600;-9308.9;0;0.0 +27961200;0;0;0.0 +27964800;0;0;0.0 +27968400;0;0;0.0 +27972000;-4887.9;0;0.0 +27975600;-26282.0;0;0.0 +27979200;-9825.5;0;0.0 +27982800;-13464.2;0;0.0 +27986400;-3159.7;0;0.0 +27990000;0;696.8;0.0 +27993600;0;3486.7;0.0 +27997200;0;0;0.0 +28000800;0;0;0.0 +28004400;0;0;0.0 +28008000;0;0;0.0 +28011600;0;19984.6;0.0 +28015200;0;0;0.0 +28018800;0;0;0.0 +28022400;-3251.1;2843.4;0.0 +28026000;0;1734.1;0.0 +28029600;-4662.9;0;0.0 +28033200;0;2898.1;0.0 +28036800;-5005.3;0;0.0 +28040400;-5841.1;0;0.0 +28044000;-7238.3;0;0.0 +28047600;0;0;0.0 +28051200;0;470.5;0.0 +28054800;0;207.2;0.0 +28058400;0;0;0.0 +28062000;-22116.0;0;0.0 +28065600;-21687.4;0;0.0 +28069200;-20605.0;0;0.0 +28072800;-1877.2;0;0.0 +28076400;0;0;0.0 +28080000;0;3595.9;0.0 +28083600;0;0;0.0 +28087200;0;0;0.0 +28090800;0;0;0.0 +28094400;0;0;0.0 +28098000;0;16190.0;0.0 +28101600;0;12329.6;0.0 +28105200;-849.3;8594.6;0.0 +28108800;-2755.4;0;0.0 +28112400;0;0;0.0 +28116000;-5458.8;0;0.0 +28119600;0;113.2;0.0 +28123200;-5741.8;0;0.0 +28126800;-24288.2;0;0.0 +28130400;-631.8;0;0.0 +28134000;0;0;0.0 +28137600;0;43.5;0.0 +28141200;0;0;0.0 +28144800;-4021.8;0;0.0 +28148400;-13387.1;0;0.0 +28152000;-21401.0;0;0.0 +28155600;-12303.3;0;0.0 +28159200;-1763.9;0;0.0 +28162800;0;0;0.0 +28166400;0;3993.0;0.0 +28170000;0;0;0.0 +28173600;0;0;0.0 +28177200;0;0;0.0 +28180800;0;0;0.0 +28184400;0;17672.6;0.0 +28188000;0;11455.0;0.0 +28191600;-757.0;7438.5;0.0 +28195200;-2537.2;90.3;0.0 +28198800;0;0;0.0 +28202400;-53.0;0;0.0 +28206000;0;0;0.0 +28209600;0;0;0.0 +28213200;-15300.7;0;0.0 +28216800;-8102.6;0;0.0 +28220400;0;0;0.0 +28224000;0;0;0.0 +28227600;0;0;0.0 +28231200;0;0;0.0 +28234800;-13919.2;0;0.0 +28238400;-13158.8;0;0.0 +28242000;-32240.9;0;0.0 +28245600;-1774.0;0;0.0 +28249200;0;0;0.0 +28252800;0;4724.3;0.0 +28256400;0;0;0.0 +28260000;0;0;0.0 +28263600;0;0;0.0 +28267200;0;0;0.0 +28270800;0;22630.6;0.0 +28274400;0;17966.9;0.0 +28278000;-723.5;13922.7;0.0 +28281600;-1587.5;1543.9;0.0 +28285200;0;1576.6;0.0 +28288800;-30.9;0;0.0 +28292400;0;414.3;0.0 +28296000;0;0;0.0 +28299600;-18750.6;0;0.0 +28303200;-4892.5;0;0.0 +28306800;-575.1;0;0.0 +28310400;0;0;0.0 +28314000;0;0;0.0 +28317600;0;0;0.0 +28321200;-13753.3;0;0.0 +28324800;-4234.2;0;0.0 +28328400;-29866.1;0;0.0 +28332000;-1880.9;0;0.0 +28335600;0;1542.4;0.0 +28339200;0;3298.0;0.0 +28342800;0;0;0.0 +28346400;0;0;0.0 +28350000;0;0;0.0 +28353600;0;0;0.0 +28357200;0;19735.2;0.0 +28360800;0;17278.1;0.0 +28364400;0;13726.2;0.0 +28368000;-2164.2;522.0;0.0 +28371600;0;0;0.0 +28375200;0;0;0.0 +28378800;0;0;0.0 +28382400;-2720.4;0;0.0 +28386000;-10109.9;0;0.0 +28389600;-9331.5;0;0.0 +28393200;-3650.1;0;0.0 +28396800;-112.4;0;0.0 +28400400;0;0;0.0 +28404000;0;0;0.0 +28407600;-18872.3;0;0.0 +28411200;-19062.2;0;0.0 +28414800;-9996.2;0;0.0 +28418400;-129.4;0;0.0 +28422000;-1988.4;0;0.0 +28425600;0;0;0.0 +28429200;0;0;0.0 +28432800;0;0;0.0 +28436400;0;0;0.0 +28440000;0;0;0.0 +28443600;0;4244.3;0.0 +28447200;0;3043.7;0.0 +28450800;-1215.4;1499.9;0.0 +28454400;0;0;0.0 +28458000;0;0;0.0 +28461600;0;3674.4;0.0 +28465200;-82.2;0;0.0 +28468800;-4140.6;0;0.0 +28472400;-36897.2;0;0.0 +28476000;-51176.8;0;0.0 +28479600;-30917.2;0;0.0 +28483200;-22501.4;0;0.0 +28486800;-18310.4;0;0.0 +28490400;-27922.2;0;0.0 +28494000;-33538.0;0;0.0 +28497600;-47226.6;0;0.0 +28501200;-43441.3;0;0.0 +28504800;-6621.3;0;0.0 +28508400;0;0;0.0 +28512000;0;0;0.0 +28515600;0;0;0.0 +28519200;0;0;0.0 +28522800;0;0;0.0 +28526400;0;0;0.0 +28530000;0;148.1;0.0 +28533600;-3009.4;0;0.0 +28537200;-5594.0;0;0.0 +28540800;-13822.9;0;0.0 +28544400;-23844.4;0;0.0 +28548000;-1760.2;0;0.0 +28551600;-430.6;0;0.0 +28555200;-27904.2;0;0.0 +28558800;-68114.7;0;0.0 +28562400;-37846.3;0;0.0 +28566000;-14630.6;0;0.0 +28569600;-11019.7;0;0.0 +28573200;-856.1;0;0.0 +28576800;-14908.5;0;0.0 +28580400;-40508.0;0;0.0 +28584000;-27258.1;0;0.0 +28587600;-31792.8;0;0.0 +28591200;-436.0;0;0.0 +28594800;0;0;0.0 +28598400;0;321.3;0.0 +28602000;0;0;0.0 +28605600;0;0;0.0 +28609200;0;0;0.0 +28612800;0;0;0.0 +28616400;0;5990.0;0.0 +28620000;0;0;0.0 +28623600;-1425.9;0;0.0 +28627200;-7368.8;599.6;0.0 +28630800;0;0;0.0 +28634400;-2483.0;0;0.0 +28638000;0;0;0.0 +28641600;-8790.1;0;0.0 +28645200;-26729.6;0;0.0 +28648800;-10444.9;0;0.0 +28652400;0;0;0.0 +28656000;0;330.8;0.0 +28659600;0;0;0.0 +28663200;-183.3;0;0.0 +28666800;-15041.3;0;0.0 +28670400;-13766.9;0;0.0 +28674000;-13604.8;0;0.0 +28677600;-2852.7;0;0.0 +28681200;0;941.0;0.0 +28684800;0;4918.4;0.0 +28688400;0;0;0.0 +28692000;0;0;0.0 +28695600;0;0;0.0 +28699200;0;0;0.0 +28702800;0;24130.7;0.0 +28706400;-302.5;17744.8;0.0 +28710000;-1710.6;13700.3;0.0 +28713600;-2132.8;1840.6;0.0 +28717200;0;1254.9;0.0 +28720800;-4589.5;54.1;0.0 +28724400;0;1814.8;0.0 +28728000;0;0;0.0 +28731600;-23765.4;0;0.0 +28735200;-7392.5;0;0.0 +28738800;0;0;0.0 +28742400;0;1811.3;0.0 +28746000;0;0;0.0 +28749600;0;0;0.0 +28753200;-22845.6;0;0.0 +28756800;-12951.7;0;0.0 +28760400;-12485.8;0;0.0 +28764000;-2041.9;0;0.0 +28767600;0;0;0.0 +28771200;0;3344.3;0.0 +28774800;0;0;0.0 +28778400;0;0;0.0 +28782000;0;0;0.0 +28785600;0;0;0.0 +28789200;0;17786.3;0.0 +28792800;0;0;0.0 +28796400;0;0;0.0 +28800000;-5623.6;4088.2;0.0 +28803600;0;2531.6;0.0 +28807200;-457.9;156.6;0.0 +28810800;0;4484.0;0.0 +28814400;-4242.3;0;0.0 +28818000;-22551.0;0;0.0 +28821600;-7921.4;0;0.0 +28825200;-43.6;277.8;0.0 +28828800;0;2988.0;0.0 +28832400;0;832.7;0.0 +28836000;-3430.8;0;0.0 +28839600;-13246.0;0;0.0 +28843200;-12811.2;0;0.0 +28846800;-21705.8;0;0.0 +28850400;-2079.6;0;0.0 +28854000;0;0;0.0 +28857600;0;3883.9;0.0 +28861200;0;0;0.0 +28864800;0;0;0.0 +28868400;0;0;0.0 +28872000;0;0;0.0 +28875600;0;14377.5;0.0 +28879200;0;0;0.0 +28882800;0;0;0.0 +28886400;-13351.3;0;0.0 +28890000;-915.1;0;0.0 +28893600;-3248.9;0;0.0 +28897200;-2329.8;0;0.0 +28900800;-21986.2;0;0.0 +28904400;-41925.3;0;0.0 +28908000;-6996.5;0;0.0 +28911600;0;0;0.0 +28915200;0;2414.1;0.0 +28918800;0;1578.3;0.0 +28922400;-1095.2;0;0.0 +28926000;-18240.1;0;0.0 +28929600;-21181.4;0;0.0 +28933200;-18185.9;0;0.0 +28936800;-2329.5;0;0.0 +28940400;0;380.4;0.0 +28944000;0;6744.3;0.0 +28947600;0;0;0.0 +28951200;0;0;0.0 +28954800;0;0;0.0 +28958400;0;0;0.0 +28962000;0;25412.2;0.0 +28965600;0;0;0.0 +28969200;0;0;0.0 +28972800;-2975.7;10871.2;0.0 +28976400;0;2964.5;0.0 +28980000;-4609.9;4801.6;0.0 +28983600;0;5513.2;0.0 +28987200;0;0;0.0 +28990800;-3880.5;0;0.0 +28994400;-3484.6;0;0.0 +28998000;0;169.2;0.0 +29001600;0;2864.2;0.0 +29005200;0;3083.2;0.0 +29008800;0;2413.6;0.0 +29012400;-23162.7;0;0.0 +29016000;-37773.1;0;0.0 +29019600;-14825.8;0;0.0 +29023200;-19116.7;0;0.0 +29026800;0;0;0.0 +29030400;0;4814.5;0.0 +29034000;0;0;0.0 +29037600;0;0;0.0 +29041200;0;0;0.0 +29044800;0;0;0.0 +29048400;0;24603.2;0.0 +29052000;0;20226.9;0.0 +29055600;-91.1;15664.9;0.0 +29059200;-2387.9;251.6;0.0 +29062800;0;0;0.0 +29066400;0;2753.0;0.0 +29070000;0;891.8;0.0 +29073600;0;0;0.0 +29077200;-3692.3;0;0.0 +29080800;-2656.0;0;0.0 +29084400;-137.8;0;0.0 +29088000;0;1485.0;0.0 +29091600;0;3236.9;0.0 +29095200;0;1413.2;0.0 +29098800;-12342.4;0;0.0 +29102400;-17811.1;0;0.0 +29106000;-20434.5;0;0.0 +29109600;0;730.2;0.0 +29113200;0;7655.2;0.0 +29116800;0;9133.4;0.0 +29120400;0;565.5;0.0 +29124000;0;0;0.0 +29127600;0;0;0.0 +29131200;0;0;0.0 +29134800;0;21399.8;0.0 +29138400;0;24616.6;0.0 +29142000;-106.1;20269.9;0.0 +29145600;-1351.6;10403.2;0.0 +29149200;0;6852.6;0.0 +29152800;0;3455.4;0.0 +29156400;0;6566.7;0.0 +29160000;0;245.7;0.0 +29163600;-32933.6;0;0.0 +29167200;-15710.3;0;0.0 +29170800;-58.4;234.3;0.0 +29174400;0;2340.4;0.0 +29178000;0;2354.9;0.0 +29181600;-2879.1;0;0.0 +29185200;-20938.6;0;0.0 +29188800;-20053.5;0;0.0 +29192400;-20354.4;0;0.0 +29196000;-1603.7;0;0.0 +29199600;0;778.7;0.0 +29203200;0;5555.7;0.0 +29206800;0;340.7;0.0 +29210400;0;0;0.0 +29214000;0;0;0.0 +29217600;0;0;0.0 +29221200;0;33873.2;0.0 +29224800;0;24493.0;0.0 +29228400;-557.6;22370.5;0.0 +29232000;-1526.5;10030.7;0.0 +29235600;0;6309.6;0.0 +29239200;-4040.7;5728.6;0.0 +29242800;0;12027.9;0.0 +29246400;-3882.6;1040.9;0.0 +29250000;-29788.6;0;0.0 +29253600;-21746.9;162.3;0.0 +29257200;-3897.5;5050.0;0.0 +29260800;0;14723.9;0.0 +29264400;0;12231.7;0.0 +29268000;-9475.2;3268.4;0.0 +29271600;-27510.9;12.2;0.0 +29275200;-27099.4;0;0.0 +29278800;-26476.2;0;0.0 +29282400;-1983.0;1195.6;0.0 +29286000;0;8139.9;0.0 +29289600;0;12278.1;0.0 +29293200;0;1036.4;0.0 +29296800;0;0;0.0 +29300400;0;0;0.0 +29304000;0;0;0.0 +29307600;0;42618.3;0.0 +29311200;0;26669.9;0.0 +29314800;-704.6;20385.4;0.0 +29318400;-1347.0;9634.0;0.0 +29322000;0;6384.8;0.0 +29325600;-4279.7;6558.3;0.0 +29329200;0;9671.5;0.0 +29332800;-4190.8;79.0;0.0 +29336400;-29982.7;0;0.0 +29340000;-23260.8;0;0.0 +29343600;-3995.2;3565.0;0.0 +29347200;0;10667.3;0.0 +29350800;0;7773.8;0.0 +29354400;-10859.3;909.2;0.0 +29358000;-28560.4;0;0.0 +29361600;-28465.0;0;0.0 +29365200;-27397.3;0;0.0 +29368800;-1963.9;3005.6;0.0 +29372400;0;13442.2;0.0 +29376000;0;23986.4;0.0 +29379600;0;5080.4;0.0 +29383200;0;0;0.0 +29386800;0;0;0.0 +29390400;0;0;0.0 +29394000;0;51081.1;0.0 +29397600;0;38187.2;0.0 +29401200;-719.5;30657.1;0.0 +29404800;-1183.5;20270.1;0.0 +29408400;0;14090.6;0.0 +29412000;-4310.1;9836.3;0.0 +29415600;0;11498.9;0.0 +29419200;-3965.0;3463.9;0.0 +29422800;-20810.0;0;0.0 +29426400;-22078.3;0;0.0 +29430000;-3901.9;3714.6;0.0 +29433600;0;10151.6;0.0 +29437200;0;6566.3;0.0 +29440800;-10441.1;1618.0;0.0 +29444400;-29098.2;0;0.0 +29448000;-27906.8;0;0.0 +29451600;-27602.2;0;0.0 +29455200;-1800.2;2252.4;0.0 +29458800;0;9855.5;0.0 +29462400;0;14601.8;0.0 +29466000;0;3281.3;0.0 +29469600;0;0;0.0 +29473200;0;0;0.0 +29476800;0;0;0.0 +29480400;0;46645.0;0.0 +29484000;0;35777.4;0.0 +29487600;-722.8;25507.6;0.0 +29491200;-1181.9;15931.6;0.0 +29494800;0;9421.9;0.0 +29498400;-4227.6;7335.3;0.0 +29502000;0;9103.5;0.0 +29505600;-3839.8;827.4;0.0 +29509200;-30829.8;0;0.0 +29512800;-23813.8;0;0.0 +29516400;-3907.4;1057.4;0.0 +29520000;0;6786.9;0.0 +29523600;0;5610.1;0.0 +29527200;-10301.8;1269.7;0.0 +29530800;-28999.4;0;0.0 +29534400;-27982.3;0;0.0 +29538000;-27574.7;0;0.0 +29541600;-1906.2;705.3;0.0 +29545200;0;6494.1;0.0 +29548800;0;9999.0;0.0 +29552400;0;2799.1;0.0 +29556000;0;0;0.0 +29559600;0;0;0.0 +29563200;0;0;0.0 +29566800;0;44549.3;0.0 +29570400;0;32823.2;0.0 +29574000;0;25313.1;0.0 +29577600;-2137.2;7001.9;0.0 +29581200;0;5247.6;0.0 +29584800;-115.9;11377.3;0.0 +29588400;0;13086.7;0.0 +29592000;-2210.8;8569.6;0.0 +29595600;-7491.9;8701.5;0.0 +29599200;-7144.6;7422.9;0.0 +29602800;-1916.3;14119.6;0.0 +29606400;-312.4;14360.6;0.0 +29610000;-762.5;17135.9;0.0 +29613600;-835.1;17836.0;0.0 +29617200;-19354.2;4501.3;0.0 +29620800;-31108.0;1333.8;0.0 +29624400;-19112.5;1369.3;0.0 +29628000;-15692.8;2361.0;0.0 +29631600;0;6589.5;0.0 +29635200;0;17956.2;0.0 +29638800;0;4756.9;0.0 +29642400;0;0;0.0 +29646000;0;0;0.0 +29649600;0;0;0.0 +29653200;0;50304.3;0.0 +29656800;0;41935.4;0.0 +29660400;0;29881.5;0.0 +29664000;-1056.0;15362.7;0.0 +29667600;-1297.7;11401.9;0.0 +29671200;0;16013.1;0.0 +29674800;0;12665.5;0.0 +29678400;0;11754.4;0.0 +29682000;-2722.3;3910.2;0.0 +29685600;-2247.1;2940.1;0.0 +29689200;0;6379.7;0.0 +29692800;0;9505.8;0.0 +29696400;0;6721.2;0.0 +29700000;-1657.8;4278.6;0.0 +29703600;-11740.9;1538.4;0.0 +29707200;-16876.5;770.6;0.0 +29710800;-18843.6;1022.8;0.0 +29714400;0;5330.6;0.0 +29718000;0;10243.6;0.0 +29721600;0;18268.0;0.0 +29725200;0;4701.0;0.0 +29728800;0;0;0.0 +29732400;0;0;0.0 +29736000;0;0;0.0 +29739600;0;47769.5;0.0 +29743200;0;40662.0;0.0 +29746800;-14.8;30325.7;0.0 +29750400;-724.2;17050.9;0.0 +29754000;0;13009.8;0.0 +29757600;-3710.4;12940.9;0.0 +29761200;0;11907.5;0.0 +29764800;0;3155.2;0.0 +29768400;-32440.6;0;0.0 +29772000;-23069.1;256.2;0.0 +29775600;0;4079.8;0.0 +29779200;0;5745.9;0.0 +29782800;0;6493.1;0.0 +29786400;-10617.2;1926.9;0.0 +29790000;-30996.6;0;0.0 +29793600;-27950.5;0;0.0 +29797200;-29307.4;0;0.0 +29800800;-1435.5;1727.5;0.0 +29804400;0;11333.4;0.0 +29808000;0;18385.1;0.0 +29811600;0;4551.7;0.0 +29815200;0;0;0.0 +29818800;0;0;0.0 +29822400;0;0;0.0 +29826000;0;49853.3;0.0 +29829600;0;40641.3;0.0 +29833200;-526.4;30381.4;0.0 +29836800;-1123.6;14224.4;0.0 +29840400;0;11140.2;0.0 +29844000;-4087.5;9428.5;0.0 +29847600;0;16814.0;0.0 +29851200;-3758.9;5083.9;0.0 +29854800;-28921.7;0;0.0 +29858400;-22715.2;0;0.0 +29862000;-3808.5;3687.9;0.0 +29865600;0;8412.8;0.0 +29869200;0;7692.6;0.0 +29872800;-10483.5;458.2;0.0 +29876400;-20093.1;0;0.0 +29880000;-27991.7;0;0.0 +29883600;-27612.6;0;0.0 +29887200;-1741.6;159.9;0.0 +29890800;0;4661.2;0.0 +29894400;0;8181.5;0.0 +29898000;0;1356.4;0.0 +29901600;0;0;0.0 +29905200;0;0;0.0 +29908800;0;0;0.0 +29912400;0;30444.3;0.0 +29916000;0;20837.5;0.0 +29919600;-669.5;15268.9;0.0 +29923200;-1890.2;4205.9;0.0 +29926800;0;1230.6;0.0 +29930400;-4086.0;244.6;0.0 +29934000;0;3823.3;0.0 +29937600;0;0;0.0 +29941200;-23749.5;0;0.0 +29944800;-16060.8;0;0.0 +29948400;-4139.3;0;0.0 +29952000;0;1220.6;0.0 +29955600;0;270.4;0.0 +29959200;-3489.1;0;0.0 +29962800;-21979.4;0;0.0 +29966400;-13658.9;0;0.0 +29970000;-13815.1;0;0.0 +29973600;-3362.3;0;0.0 +29977200;0;365.5;0.0 +29980800;0;4363.3;0.0 +29984400;0;0;0.0 +29988000;0;0;0.0 +29991600;0;0;0.0 +29995200;0;0;0.0 +29998800;0;14796.5;0.0 +30002400;0;0;0.0 +30006000;0;0;0.0 +30009600;-6352.9;245.7;0.0 +30013200;0;94.0;0.0 +30016800;-443.8;0;0.0 +30020400;0;452.2;0.0 +30024000;0;0;0.0 +30027600;-25700.8;0;0.0 +30031200;-21756.2;0;0.0 +30034800;0;0;0.0 +30038400;0;0;0.0 +30042000;0;0;0.0 +30045600;0;0;0.0 +30049200;-15532.2;0;0.0 +30052800;-5830.7;0;0.0 +30056400;-21913.4;0;0.0 +30060000;-2321.3;0;0.0 +30063600;0;0;0.0 +30067200;0;3007.6;0.0 +30070800;0;0;0.0 +30074400;0;0;0.0 +30078000;0;0;0.0 +30081600;0;0;0.0 +30085200;0;18191.7;0.0 +30088800;0;0;0.0 +30092400;0;0;0.0 +30096000;-3268.0;2423.0;0.0 +30099600;0;1405.2;0.0 +30103200;-340.4;481.2;0.0 +30106800;0;2580.3;0.0 +30110400;-5418.9;0;0.0 +30114000;-24030.5;0;0.0 +30117600;-1085.2;0;0.0 +30121200;0;0;0.0 +30124800;0;94.2;0.0 +30128400;0;0;0.0 +30132000;0;0;0.0 +30135600;-13944.5;0;0.0 +30139200;-4222.9;0;0.0 +30142800;-20892.8;0;0.0 +30146400;-1916.5;0;0.0 +30150000;0;0;0.0 +30153600;0;3908.3;0.0 +30157200;0;0;0.0 +30160800;0;0;0.0 +30164400;0;0;0.0 +30168000;0;0;0.0 +30171600;0;15356.0;0.0 +30175200;0;18048.2;0.0 +30178800;0;13652.2;0.0 +30182400;-2698.4;0;0.0 +30186000;0;0;0.0 +30189600;0;0;0.0 +30193200;0;306.7;0.0 +30196800;-1466.1;0;0.0 +30200400;-7672.2;0;0.0 +30204000;-2754.3;0;0.0 +30207600;-1235.8;0;0.0 +30211200;0;0;0.0 +30214800;0;0;0.0 +30218400;0;0;0.0 +30222000;-15095.7;0;0.0 +30225600;-2900.8;0;0.0 +30229200;-14157.5;0;0.0 +30232800;-2263.6;0;0.0 +30236400;0;0;0.0 +30240000;0;1041.6;0.0 +30243600;0;0;0.0 +30247200;0;0;0.0 +30250800;0;0;0.0 +30254400;0;0;0.0 +30258000;0;26151.1;0.0 +30261600;0;19314.6;0.0 +30265200;0;17104.5;0.0 +30268800;-2144.7;3229.5;0.0 +30272400;0;146.7;0.0 +30276000;0;6180.8;0.0 +30279600;0;5518.0;0.0 +30283200;-81.9;1153.8;0.0 +30286800;-5400.5;0;0.0 +30290400;-5594.5;0;0.0 +30294000;0;769.8;0.0 +30297600;0;3506.9;0.0 +30301200;0;2205.7;0.0 +30304800;0;1121.5;0.0 +30308400;0;0;0.0 +30312000;-1775.6;0;0.0 +30315600;-18947.0;0;0.0 +30319200;0;1637.4;0.0 +30322800;0;6860.8;0.0 +30326400;0;7212.1;0.0 +30330000;0;270.4;0.0 +30333600;0;0;0.0 +30337200;0;0;0.0 +30340800;0;0;0.0 +30344400;0;21639.1;0.0 +30348000;0;13973.9;0.0 +30351600;-25.0;12031.4;0.0 +30355200;-1607.8;2938.7;0.0 +30358800;0;1580.1;0.0 +30362400;-3529.2;819.6;0.0 +30366000;0;3423.2;0.0 +30369600;-3946.6;0;0.0 +30373200;-22651.3;0;0.0 +30376800;-7573.4;0;0.0 +30380400;0;0;0.0 +30384000;0;652.3;0.0 +30387600;0;79.3;0.0 +30391200;-11443.7;0;0.0 +30394800;-30780.7;0;0.0 +30398400;-12309.6;0;0.0 +30402000;-20181.0;0;0.0 +30405600;-1673.9;0;0.0 +30409200;0;11.9;0.0 +30412800;0;4723.0;0.0 +30416400;0;0;0.0 +30420000;0;0;0.0 +30423600;0;0;0.0 +30427200;0;0;0.0 +30430800;0;22702.3;0.0 +30434400;0;16423.4;0.0 +30438000;-564.3;12568.4;0.0 +30441600;-1848.7;2375.4;0.0 +30445200;0;990.2;0.0 +30448800;-3925.2;121.1;0.0 +30452400;0;2280.2;0.0 +30456000;-4107.3;0;0.0 +30459600;-22988.2;0;0.0 +30463200;-15845.3;0;0.0 +30466800;0;0;0.0 +30470400;0;1603.1;0.0 +30474000;0;41.2;0.0 +30477600;-3066.9;0;0.0 +30481200;-21739.6;0;0.0 +30484800;-21077.5;0;0.0 +30488400;-11962.3;0;0.0 +30492000;-1768.5;0;0.0 +30495600;0;0;0.0 +30499200;0;4599.5;0.0 +30502800;0;0;0.0 +30506400;0;0;0.0 +30510000;0;0;0.0 +30513600;0;0;0.0 +30517200;0;27740.2;0.0 +30520800;0;19888.4;0.0 +30524400;-678.0;16478.2;0.0 +30528000;-1894.8;6827.2;0.0 +30531600;0;5388.6;0.0 +30535200;-4037.0;3469.9;0.0 +30538800;0;6924.9;0.0 +30542400;-3955.5;0;0.0 +30546000;-22562.3;0;0.0 +30549600;-14914.4;0;0.0 +30553200;-4203.6;0;0.0 +30556800;0;2014.0;0.0 +30560400;0;841.1;0.0 +30564000;-3192.4;0;0.0 +30567600;-21563.6;0;0.0 +30571200;-21409.1;0;0.0 +30574800;-20545.5;0;0.0 +30578400;-2227.5;0;0.0 +30582000;0;134.4;0.0 +30585600;0;5340.6;0.0 +30589200;0;0;0.0 +30592800;0;0;0.0 +30596400;0;0;0.0 +30600000;0;0;0.0 +30603600;0;22159.4;0.0 +30607200;0;14920.9;0.0 +30610800;-772.6;9343.8;0.0 +30614400;-1063.2;1023.7;0.0 +30618000;0;138.9;0.0 +30621600;-5439.1;0;0.0 +30625200;0;499.8;0.0 +30628800;-5085.7;0;0.0 +30632400;-23713.2;0;0.0 +30636000;-16582.7;0;0.0 +30639600;0;0;0.0 +30643200;0;3429.5;0.0 +30646800;0;2829.3;0.0 +30650400;-3265.0;0;0.0 +30654000;-21832.6;0;0.0 +30657600;-12806.8;0;0.0 +30661200;-28229.4;0;0.0 +30664800;-1934.8;514.6;0.0 +30668400;0;4895.2;0.0 +30672000;0;12995.8;0.0 +30675600;0;1911.0;0.0 +30679200;0;0;0.0 +30682800;0;0;0.0 +30686400;0;0;0.0 +30690000;0;47653.8;0.0 +30693600;0;34874.9;0.0 +30697200;-733.6;24218.4;0.0 +30700800;-1593.4;13600.6;0.0 +30704400;0;4938.4;0.0 +30708000;-4223.5;6789.7;0.0 +30711600;0;8669.5;0.0 +30715200;-3968.2;1110.5;0.0 +30718800;-29398.1;0;0.0 +30722400;-23175.6;0;0.0 +30726000;-3943.5;1634.4;0.0 +30729600;0;8562.3;0.0 +30733200;0;8550.1;0.0 +30736800;-9226.3;2649.2;0.0 +30740400;-27617.8;0;0.0 +30744000;-27628.5;0;0.0 +30747600;-27125.7;0;0.0 +30751200;-1856.7;268.8;0.0 +30754800;0;8590.6;0.0 +30758400;0;14812.1;0.0 +30762000;0;3209.0;0.0 +30765600;0;0;0.0 +30769200;0;0;0.0 +30772800;0;0;0.0 +30776400;0;42600.9;0.0 +30780000;0;31333.8;0.0 +30783600;0;24749.9;0.0 +30787200;-2135.2;7607.2;0.0 +30790800;0;4720.4;0.0 +30794400;-3719.6;3608.5;0.0 +30798000;0;6886.8;0.0 +30801600;-2148.5;371.1;0.0 +30805200;0;0;0.0 +30808800;-2818.3;0;0.0 +30812400;-1906.9;766.1;0.0 +30816000;0;1146.4;0.0 +30819600;0;304.2;0.0 +30823200;0;594.9;0.0 +30826800;-5820.9;0;0.0 +30830400;-19162.1;0;0.0 +30834000;-15165.8;0;0.0 +30837600;-10148.1;0;0.0 +30841200;0;0;0.0 +30844800;0;1228.9;0.0 +30848400;0;0;0.0 +30852000;0;0;0.0 +30855600;0;0;0.0 +30859200;0;0;0.0 +30862800;0;25439.5;0.0 +30866400;0;18398.0;0.0 +30870000;0;16176.3;0.0 +30873600;-3169.0;1009.2;0.0 +30877200;0;48.4;0.0 +30880800;0;4123.2;0.0 +30884400;0;2289.8;0.0 +30888000;0;0;0.0 +30891600;-2997.3;0;0.0 +30895200;0;0;0.0 +30898800;0;0;0.0 +30902400;0;0;0.0 +30906000;0;0;0.0 +30909600;0;0;0.0 +30913200;0;0;0.0 +30916800;-9769.9;0;0.0 +30920400;-4569.8;0;0.0 +30924000;0;0;0.0 +30927600;0;1871.1;0.0 +30931200;0;4335.0;0.0 +30934800;0;0;0.0 +30938400;0;0;0.0 +30942000;0;0;0.0 +30945600;0;0;0.0 +30949200;0;29464.1;0.0 +30952800;0;21566.9;0.0 +30956400;-127.4;17635.1;0.0 +30960000;-1666.3;5143.7;0.0 +30963600;0;6566.9;0.0 +30967200;-3637.7;3308.5;0.0 +30970800;0;10133.8;0.0 +30974400;-3648.9;215.4;0.0 +30978000;-29433.0;0;0.0 +30981600;-21882.4;0;0.0 +30985200;-3681.9;382.6;0.0 +30988800;0;8205.3;0.0 +30992400;0;8085.1;0.0 +30996000;-9625.8;1984.6;0.0 +30999600;-28129.5;0;0.0 +31003200;-27369.8;0;0.0 +31006800;-26152.2;10.6;0.0 +31010400;-1750.8;3218.1;0.0 +31014000;0;12649.3;0.0 +31017600;0;25363.5;0.0 +31021200;0;5732.2;0.0 +31024800;0;0;0.0 +31028400;0;0;0.0 +31032000;0;0;0.0 +31035600;0;71511.7;0.0 +31039200;0;53839.0;0.0 +31042800;-574.2;44244.6;0.0 +31046400;-1008.7;30034.6;0.0 +31050000;0;18551.0;0.0 +31053600;-4257.7;13873.3;0.0 +31057200;0;15111.3;0.0 +31060800;-3899.1;8510.3;0.0 +31064400;-19604.4;880.9;0.0 +31068000;-12540.4;1157.9;0.0 +31071600;-3845.4;7701.4;0.0 +31075200;0;11502.8;0.0 +31078800;0;10311.9;0.0 +31082400;-9610.3;4558.1;0.0 +31086000;-27940.0;37.1;0.0 +31089600;-27866.2;0;0.0 +31093200;-26417.7;252.6;0.0 +31096800;-1788.7;5105.5;0.0 +31100400;0;13692.3;0.0 +31104000;0;26510.4;0.0 +31107600;0;7049.2;0.0 +31111200;0;0;0.0 +31114800;0;0;0.0 +31118400;0;0;0.0 +31122000;0;61281.8;0.0 +31125600;0;47408.9;0.0 +31129200;-682.9;34634.8;0.0 +31132800;-1168.2;17710.8;0.0 +31136400;0;11686.7;0.0 +31140000;-4225.3;8213.3;0.0 +31143600;0;15343.3;0.0 +31147200;-3893.7;5296.3;0.0 +31150800;-29575.9;0;0.0 +31154400;-13764.6;0;0.0 +31158000;0;4842.0;0.0 +31161600;0;10024.9;0.0 +31165200;0;8748.0;0.0 +31168800;-9987.3;3366.4;0.0 +31172400;-28488.8;0;0.0 +31176000;-27631.0;0;0.0 +31179600;-27381.6;0;0.0 +31183200;-1750.1;2111.5;0.0 +31186800;0;11230.5;0.0 +31190400;0;16699.8;0.0 +31194000;0;3379.4;0.0 +31197600;0;0;0.0 +31201200;0;0;0.0 +31204800;0;0;0.0 +31208400;0;48367.3;0.0 +31212000;0;37803.5;0.0 +31215600;-705.2;29909.5;0.0 +31219200;-1042.5;16482.2;0.0 +31222800;0;14472.3;0.0 +31226400;-4314.1;13158.0;0.0 +31230000;0;16894.8;0.0 +31233600;-3883.8;8145.8;0.0 +31237200;-28040.4;1166.5;0.0 +31240800;-21117.0;1408.2;0.0 +31244400;-3874.7;6721.0;0.0 +31248000;0;11857.1;0.0 +31251600;0;12125.8;0.0 +31255200;-8873.5;6738.1;0.0 +31258800;-26989.9;1212.1;0.0 +31262400;-27161.9;50.7;0.0 +31266000;-25596.5;1446.2;0.0 +31269600;-1795.2;7946.1;0.0 +31273200;0;15692.5;0.0 +31276800;0;20973.2;0.0 +31280400;0;4895.2;0.0 +31284000;0;0;0.0 +31287600;0;0;0.0 +31291200;0;0;0.0 +31294800;0;48125.3;0.0 +31298400;0;36706.0;0.0 +31302000;-727.7;29618.8;0.0 +31305600;-1346.1;16488.7;0.0 +31309200;0;13190.1;0.0 +31312800;-4202.3;7247.8;0.0 +31316400;0;9990.9;0.0 +31320000;-3878.4;1022.5;0.0 +31323600;-29492.4;0;0.0 +31327200;-23459.7;0;0.0 +31330800;-3889.6;2391.9;0.0 +31334400;0;9093.2;0.0 +31338000;0;5530.2;0.0 +31341600;-10153.7;1484.4;0.0 +31345200;-29271.8;0;0.0 +31348800;-29085.6;0;0.0 +31352400;-29056.0;0;0.0 +31356000;0;854.7;0.0 +31359600;0;2546.2;0.0 +31363200;0;8363.9;0.0 +31366800;0;285.8;0.0 +31370400;0;0;0.0 +31374000;0;0;0.0 +31377600;0;0;0.0 +31381200;0;27539.1;0.0 +31384800;0;23994.6;0.0 +31388400;0;16889.2;0.0 +31392000;-2132.6;2945.5;0.0 +31395600;0;1717.1;0.0 +31399200;-3777.2;3265.9;0.0 +31402800;0;6686.2;0.0 +31406400;-2065.8;949.5;0.0 +31410000;0;421.7;0.0 +31413600;-2723.5;0;0.0 +31417200;-1851.2;1009.2;0.0 +31420800;0;1729.0;0.0 +31424400;0;1033.7;0.0 +31428000;-799.2;2160.8;0.0 +31431600;-23292.5;0;0.0 +31435200;-28922.0;0;0.0 +31438800;-22760.2;0;0.0 +31442400;-10867.9;0;0.0 +31446000;0;0;0.0 +31449600;0;219.9;0.0 +31453200;0;0;0.0 +31456800;0;0;0.0 +31460400;0;0;0.0 +31464000;0;0;0.0 +31467600;0;24414.3;0.0 +31471200;0;20565.1;0.0 +31474800;0;17488.8;0.0 +31478400;-1737.5;2553.7;0.0 +31482000;0;165.3;0.0 +31485600;0;6108.3;0.0 +31489200;0;3204.3;0.0 +31492800;0;847.8;0.0 +31496400;-2775.0;0;0.0 +31500000;-2303.7;0;0.0 +31503600;0;920.3;0.0 +31507200;0;4807.0;0.0 +31510800;0;2933.0;0.0 +31514400;-1697.8;2827.5;0.0 +31518000;-11935.9;0;0.0 +31521600;-17817.6;0;0.0 +31525200;-20209.2;0;0.0 +31528800;0;4884.2;0.0 +31532400;0;9579.1;0.0 +31536000;0;12040.2;0.0 diff --git a/tests/data_shared/B2.mos b/tests/data_shared/B2.mos new file mode 100644 index 000000000..bf0640992 --- /dev/null +++ b/tests/data_shared/B2.mos @@ -0,0 +1,8777 @@ +#1 +#Heating and Cooling Model loads from OpenStudio Prototype Buildings +# Building Type: {{BUILDINGTYPE}} +# Climate Zone: {{CLIMATEZONE}} +# Vintage: {{VINTAGE}} +# Simulation ID (for debugging): {{SIMID}} +# URL: https://github.com/urbanopt/openstudio-prototype-loads + +#First column: Seconds in the year (loads are hourly) +#Second column: cooling loads in Watts (as negative numbers). +#Third column: space heating loads in Watts +#Fourth column: water heating in Watts + +#Peak space cooling load = -113098.9 Watts +#Peak space heating load = 38986.3 Watts +#Peak water heating load = 5000 Watts +double tab1(8760,4) +3600;0;0;0.0 +7200;0;0;0.0 +10800;0;0;0.0 +14400;0;0;0.0 +18000;0;16240.4;0.0 +21600;0;13281.1;0.0 +25200;0;9459.4;0.0 +28800;-1793.3;0;0.0 +32400;0;0;0.0 +36000;0;36.1;0.0 +39600;0;0;0.0 +43200;-3399.3;0;0.0 +46800;-12474.0;0;0.0 +50400;-10443.2;0;0.0 +54000;0;0;0.0 +57600;0;0;0.0 +61200;0;0;0.0 +64800;-3099.0;0;0.0 +68400;-11899.8;0;0.0 +72000;-15729.8;0;0.0 +75600;-17120.8;0;0.0 +79200;0;0;0.0 +82800;0;1669.6;0.0 +86400;0;4738.4;0.0 +90000;0;0;0.0 +93600;0;0;0.0 +97200;0;0;0.0 +100800;0;0;0.0 +104400;0;17870.1;0.0 +108000;0;14324.9;0.0 +111600;0;9820.2;0.0 +115200;0;1962.2;0.0 +118800;0;0;0.0 +122400;-3622.3;0;0.0 +126000;0;0;0.0 +129600;-15312.7;0;0.0 +133200;-34729.0;0;0.0 +136800;-24314.0;0;0.0 +140400;-4537.4;0;0.0 +144000;0;0;0.0 +147600;0;0;0.0 +151200;-12979.7;0;0.0 +154800;-28841.7;0;0.0 +158400;-25635.2;0;0.0 +162000;-24516.9;0;0.0 +165600;-5035.4;0;0.0 +169200;0;0;0.0 +172800;0;4043.8;0.0 +176400;0;0;0.0 +180000;0;0;0.0 +183600;0;0;0.0 +187200;0;0;0.0 +190800;0;19583.6;0.0 +194400;0;16052.2;0.0 +198000;0;11536.6;0.0 +201600;0;3661.8;0.0 +205200;0;578.6;0.0 +208800;-3107.3;17.3;0.0 +212400;0;98.3;0.0 +216000;-14417.4;0;0.0 +219600;-28984.2;0;0.0 +223200;-20813.8;0;0.0 +226800;-2395.0;0;0.0 +230400;0;0;0.0 +234000;0;0;0.0 +237600;-11809.3;0;0.0 +241200;-26720.0;0;0.0 +244800;-25224.3;0;0.0 +248400;-23620.4;0;0.0 +252000;-4740.6;0;0.0 +255600;0;1382.3;0.0 +259200;0;7577.5;0.0 +262800;0;0;0.0 +266400;0;0;0.0 +270000;0;0;0.0 +273600;0;0;0.0 +277200;0;27144.4;0.0 +280800;0;22402.4;0.0 +284400;0;17136.7;0.0 +288000;0;9206.8;0.0 +291600;0;3558.3;0.0 +295200;-2344.3;1604.7;0.0 +298800;-688.7;1726.8;0.0 +302400;-15135.0;0;0.0 +306000;-31075.3;0;0.0 +309600;-22716.2;0;0.0 +313200;-1231.5;0;0.0 +316800;0;343.6;0.0 +320400;0;116.4;0.0 +324000;-10307.4;0;0.0 +327600;-25783.3;0;0.0 +331200;-23271.6;0;0.0 +334800;-21554.2;0;0.0 +338400;-3243.3;0;0.0 +342000;0;1853.8;0.0 +345600;0;7624.0;0.0 +349200;0;0;0.0 +352800;0;0;0.0 +356400;0;0;0.0 +360000;0;0;0.0 +363600;0;25015.2;0.0 +367200;0;20223.3;0.0 +370800;0;13862.7;0.0 +374400;0;6118.8;0.0 +378000;0;3148.9;0.0 +381600;-2721.5;306.2;0.0 +385200;-35.4;615.3;0.0 +388800;-15086.9;0;0.0 +392400;-20464.5;0;0.0 +396000;-24865.0;0;0.0 +399600;0;0;0.0 +403200;0;0;0.0 +406800;0;0;0.0 +410400;-12001.3;0;0.0 +414000;-27203.0;0;0.0 +417600;-25014.2;0;0.0 +421200;-23564.8;0;0.0 +424800;-5573.7;0;0.0 +428400;0;1428.6;0.0 +432000;0;7967.1;0.0 +435600;0;0;0.0 +439200;0;0;0.0 +442800;0;0;0.0 +446400;0;0;0.0 +450000;0;27427.9;0.0 +453600;0;21512.0;0.0 +457200;0;14726.3;0.0 +460800;0;8599.0;0.0 +464400;0;2919.8;0.0 +468000;-2916.0;1013.3;0.0 +471600;-1309.3;269.4;0.0 +475200;-17730.1;0;0.0 +478800;-22956.5;0;0.0 +482400;-28612.2;0;0.0 +486000;-1293.4;0;0.0 +489600;0;0;0.0 +493200;0;0;0.0 +496800;-12403.9;0;0.0 +500400;-27167.0;0;0.0 +504000;-24769.0;0;0.0 +507600;-24014.9;0;0.0 +511200;-4939.8;0;0.0 +514800;0;102.6;0.0 +518400;0;4351.8;0.0 +522000;0;0;0.0 +525600;0;0;0.0 +529200;0;0;0.0 +532800;0;0;0.0 +536400;0;19342.0;0.0 +540000;0;14963.4;0.0 +543600;0;10602.4;0.0 +547200;-5382.9;360.2;0.0 +550800;-3110.9;0;0.0 +554400;0;0;0.0 +558000;0;618.3;0.0 +561600;-8762.0;0;0.0 +565200;-8648.6;0;0.0 +568800;-7970.0;0;0.0 +572400;0;0;0.0 +576000;0;0;0.0 +579600;0;0;0.0 +583200;0;0;0.0 +586800;-19759.2;0;0.0 +590400;-31522.9;0;0.0 +594000;-15852.6;0;0.0 +597600;-12055.2;0;0.0 +601200;0;0;0.0 +604800;0;4676.8;0.0 +608400;0;0;0.0 +612000;0;0;0.0 +615600;0;0;0.0 +619200;0;0;0.0 +622800;0;25607.9;0.0 +626400;0;20190.7;0.0 +630000;0;16428.8;0.0 +633600;0;5274.2;0.0 +637200;-1330.3;2111.8;0.0 +640800;0;3904.1;0.0 +644400;-106.0;1743.7;0.0 +648000;-3010.8;0;0.0 +651600;-8900.4;0;0.0 +655200;-8400.8;0;0.0 +658800;0;0;0.0 +662400;0;540.8;0.0 +666000;0;101.4;0.0 +669600;0;0;0.0 +673200;-10329.9;0;0.0 +676800;-13807.4;0;0.0 +680400;-15236.1;0;0.0 +684000;0;99.8;0.0 +687600;0;5842.5;0.0 +691200;0;9334.1;0.0 +694800;0;0;0.0 +698400;0;0;0.0 +702000;0;0;0.0 +705600;0;0;0.0 +709200;0;27531.4;0.0 +712800;0;22018.2;0.0 +716400;0;16519.5;0.0 +720000;0;7761.6;0.0 +723600;0;4015.3;0.0 +727200;-1695.8;1413.4;0.0 +730800;0;1971.5;0.0 +734400;-13740.1;0;0.0 +738000;-26352.4;0;0.0 +741600;-18629.5;0;0.0 +745200;-704.8;0;0.0 +748800;0;348.4;0.0 +752400;0;23.6;0.0 +756000;-9457.2;0;0.0 +759600;-24539.2;0;0.0 +763200;-21964.8;0;0.0 +766800;-21645.6;0;0.0 +770400;-2311.9;0;0.0 +774000;0;3617.3;0.0 +777600;0;9683.8;0.0 +781200;0;0;0.0 +784800;0;0;0.0 +788400;0;0;0.0 +792000;0;0;0.0 +795600;0;29491.1;0.0 +799200;0;25567.2;0.0 +802800;0;17956.7;0.0 +806400;0;9138.9;0.0 +810000;0;2832.9;0.0 +813600;-2623.9;1118.1;0.0 +817200;-443.7;736.1;0.0 +820800;-16618.1;0;0.0 +824400;-33348.9;0;0.0 +828000;-14046.1;0;0.0 +831600;-502.3;0;0.0 +835200;0;0;0.0 +838800;0;0;0.0 +842400;-12146.5;0;0.0 +846000;-27950.8;0;0.0 +849600;-25558.6;0;0.0 +853200;-23719.8;0;0.0 +856800;-4797.3;0;0.0 +860400;0;0;0.0 +864000;0;2545.2;0.0 +867600;0;0;0.0 +871200;0;0;0.0 +874800;0;0;0.0 +878400;0;0;0.0 +882000;0;13452.2;0.0 +885600;0;0;0.0 +889200;0;0;0.0 +892800;0;1020.5;0.0 +896400;0;6.8;0.0 +900000;-3911.1;0;0.0 +903600;0;0;0.0 +907200;-14330.8;0;0.0 +910800;-28982.9;0;0.0 +914400;-24745.9;0;0.0 +918000;-10671.9;0;0.0 +921600;0;0;0.0 +925200;-3004.2;0;0.0 +928800;-13836.0;0;0.0 +932400;-31923.6;0;0.0 +936000;-20902.6;0;0.0 +939600;-27655.2;0;0.0 +943200;-5412.3;0;0.0 +946800;0;8.9;0.0 +950400;0;5015.3;0.0 +954000;0;0;0.0 +957600;0;0;0.0 +961200;0;0;0.0 +964800;0;0;0.0 +968400;0;28749.7;0.0 +972000;0;21965.4;0.0 +975600;0;15590.5;0.0 +979200;0;9640.4;0.0 +982800;0;6042.5;0.0 +986400;0;3108.9;0.0 +990000;-373.2;3693.8;0.0 +993600;-12671.2;0;0.0 +997200;-28249.7;0;0.0 +1000800;-11079.0;0;0.0 +1004400;-1164.7;0;0.0 +1008000;0;1046.2;0.0 +1011600;0;332.8;0.0 +1015200;-9120.7;0;0.0 +1018800;-24444.8;0;0.0 +1022400;-23438.3;0;0.0 +1026000;-21911.7;0;0.0 +1029600;-1996.1;0;0.0 +1033200;0;1968.4;0.0 +1036800;0;7720.9;0.0 +1040400;0;0;0.0 +1044000;0;0;0.0 +1047600;0;0;0.0 +1051200;0;0;0.0 +1054800;0;25180.3;0.0 +1058400;0;20100.1;0.0 +1062000;0;14983.8;0.0 +1065600;0;6721.0;0.0 +1069200;0;3969.0;0.0 +1072800;-1886.5;726.2;0.0 +1076400;0;123.9;0.0 +1080000;-13477.5;0;0.0 +1083600;-30326.4;0;0.0 +1087200;-24137.5;0;0.0 +1090800;-3538.0;0;0.0 +1094400;0;0;0.0 +1098000;0;0;0.0 +1101600;-11940.5;0;0.0 +1105200;-27250.1;0;0.0 +1108800;-24842.6;0;0.0 +1112400;-24167.3;0;0.0 +1116000;-4312.5;0;0.0 +1119600;0;0;0.0 +1123200;0;2525.1;0.0 +1126800;0;0;0.0 +1130400;0;0;0.0 +1134000;0;0;0.0 +1137600;0;0;0.0 +1141200;0;13708.3;0.0 +1144800;0;0;0.0 +1148400;0;0;0.0 +1152000;0;738.3;0.0 +1155600;0;0;0.0 +1159200;-5123.3;0;0.0 +1162800;0;0;0.0 +1166400;-12629.2;0;0.0 +1170000;-12671.6;0;0.0 +1173600;-10938.6;0;0.0 +1177200;-1305.6;0;0.0 +1180800;0;0;0.0 +1184400;-2200.2;0;0.0 +1188000;-1782.9;0;0.0 +1191600;-23556.8;0;0.0 +1195200;-36569.6;0;0.0 +1198800;-19988.5;0;0.0 +1202400;-15108.5;0;0.0 +1206000;0;0;0.0 +1209600;0;0;0.0 +1213200;0;0;0.0 +1216800;0;0;0.0 +1220400;0;0;0.0 +1224000;0;0;0.0 +1227600;0;13235.5;0.0 +1231200;0;11350.0;0.0 +1234800;0;8157.3;0.0 +1238400;-2649.8;0;0.0 +1242000;0;0;0.0 +1245600;0;0;0.0 +1249200;-286.2;0;0.0 +1252800;-1504.2;0;0.0 +1256400;-16940.9;0;0.0 +1260000;-16439.0;0;0.0 +1263600;-2936.0;0;0.0 +1267200;-264.7;0;0.0 +1270800;0;0;0.0 +1274400;-2501.4;0;0.0 +1278000;-11724.9;0;0.0 +1281600;-15388.5;0;0.0 +1285200;-15601.3;0;0.0 +1288800;0;0;0.0 +1292400;0;841.1;0.0 +1296000;0;2840.9;0.0 +1299600;0;0;0.0 +1303200;0;0;0.0 +1306800;0;0;0.0 +1310400;0;0;0.0 +1314000;0;18071.8;0.0 +1317600;0;14725.3;0.0 +1321200;0;10456.8;0.0 +1324800;0;2520.2;0.0 +1328400;0;94.3;0.0 +1332000;-2887.1;0;0.0 +1335600;0;0;0.0 +1339200;-14739.4;0;0.0 +1342800;-36771.7;0;0.0 +1346400;-15253.7;0;0.0 +1350000;0;0;0.0 +1353600;0;0;0.0 +1357200;0;0;0.0 +1360800;-13771.1;0;0.0 +1364400;-30094.5;0;0.0 +1368000;-30810.3;0;0.0 +1371600;-29089.8;0;0.0 +1375200;-9598.0;0;0.0 +1378800;0;0;0.0 +1382400;0;996.0;0.0 +1386000;0;0;0.0 +1389600;0;0;0.0 +1393200;0;0;0.0 +1396800;0;0;0.0 +1400400;0;9773.0;0.0 +1404000;0;0;0.0 +1407600;0;0;0.0 +1411200;-2810.9;0;0.0 +1414800;0;0;0.0 +1418400;-1583.4;0;0.0 +1422000;0;0;0.0 +1425600;-17410.2;0;0.0 +1429200;-35476.2;0;0.0 +1432800;-14339.5;0;0.0 +1436400;-10130.2;0;0.0 +1440000;0;0;0.0 +1443600;-727.5;0;0.0 +1447200;-6240.1;0;0.0 +1450800;-42743.3;0;0.0 +1454400;-24167.1;0;0.0 +1458000;-31455.8;0;0.0 +1461600;-12020.1;0;0.0 +1465200;0;0;0.0 +1468800;0;689.0;0.0 +1472400;0;0;0.0 +1476000;0;0;0.0 +1479600;0;0;0.0 +1483200;0;0;0.0 +1486800;0;12678.3;0.0 +1490400;0;0;0.0 +1494000;0;0;0.0 +1497600;-376.9;810.8;0.0 +1501200;0;143.2;0.0 +1504800;-4533.8;0;0.0 +1508400;0;0;0.0 +1512000;-15287.5;0;0.0 +1515600;-34372.5;0;0.0 +1519200;-23791.2;0;0.0 +1522800;-4438.5;0;0.0 +1526400;0;0;0.0 +1530000;0;0;0.0 +1533600;-13425.5;0;0.0 +1537200;-29265.0;0;0.0 +1540800;-26084.2;0;0.0 +1544400;-24333.0;0;0.0 +1548000;-5127.0;0;0.0 +1551600;0;0;0.0 +1555200;0;2739.1;0.0 +1558800;0;0;0.0 +1562400;0;0;0.0 +1566000;0;0;0.0 +1569600;0;0;0.0 +1573200;0;16276.0;0.0 +1576800;0;12542.5;0.0 +1580400;0;8512.0;0.0 +1584000;0;668.6;0.0 +1587600;0;0;0.0 +1591200;-4931.4;0;0.0 +1594800;0;0;0.0 +1598400;-14516.3;0;0.0 +1602000;-33877.7;0;0.0 +1605600;-23566.7;0;0.0 +1609200;-3506.9;0;0.0 +1612800;0;0;0.0 +1616400;0;0;0.0 +1620000;-12135.6;0;0.0 +1623600;-26157.6;0;0.0 +1627200;-25240.5;0;0.0 +1630800;-23671.9;0;0.0 +1634400;-4515.5;0;0.0 +1638000;0;0;0.0 +1641600;0;3213.4;0.0 +1645200;0;0;0.0 +1648800;0;0;0.0 +1652400;0;0;0.0 +1656000;0;0;0.0 +1659600;0;18613.7;0.0 +1663200;0;14162.3;0.0 +1666800;0;9526.0;0.0 +1670400;0;2653.6;0.0 +1674000;0;77.5;0.0 +1677600;-3432.5;0;0.0 +1681200;0;0;0.0 +1684800;-13905.6;0;0.0 +1688400;-32326.1;0;0.0 +1692000;-22128.0;0;0.0 +1695600;-2794.0;0;0.0 +1699200;0;0;0.0 +1702800;0;0;0.0 +1706400;-13003.8;0;0.0 +1710000;-28103.7;0;0.0 +1713600;-24802.4;0;0.0 +1717200;-22484.4;0;0.0 +1720800;-3699.1;0;0.0 +1724400;0;155.9;0.0 +1728000;0;5498.3;0.0 +1731600;0;0;0.0 +1735200;0;0;0.0 +1738800;0;0;0.0 +1742400;0;0;0.0 +1746000;0;21293.6;0.0 +1749600;0;16937.8;0.0 +1753200;0;13064.8;0.0 +1756800;0;2440.9;0.0 +1760400;-300.9;23.6;0.0 +1764000;-2589.5;0;0.0 +1767600;-345.4;0;0.0 +1771200;-12465.7;0;0.0 +1774800;-14036.6;0;0.0 +1778400;-9441.6;0;0.0 +1782000;0;0;0.0 +1785600;0;0;0.0 +1789200;0;0;0.0 +1792800;-384.8;0;0.0 +1796400;-21483.3;0;0.0 +1800000;-32584.7;0;0.0 +1803600;-18377.2;0;0.0 +1807200;-13874.6;0;0.0 +1810800;0;0;0.0 +1814400;0;1365.5;0.0 +1818000;0;0;0.0 +1821600;0;0;0.0 +1825200;0;0;0.0 +1828800;0;0;0.0 +1832400;0;17368.6;0.0 +1836000;0;14731.3;0.0 +1839600;0;10449.4;0.0 +1843200;0;618.6;0.0 +1846800;0;0;0.0 +1850400;0;650.9;0.0 +1854000;0;0;0.0 +1857600;-2098.0;0;0.0 +1861200;-10329.2;0;0.0 +1864800;-8337.3;0;0.0 +1868400;0;0;0.0 +1872000;0;0;0.0 +1875600;0;0;0.0 +1879200;-1915.8;0;0.0 +1882800;-11142.8;0;0.0 +1886400;-14820.6;0;0.0 +1890000;-16165.0;0;0.0 +1893600;0;0;0.0 +1897200;0;1692.5;0.0 +1900800;0;4963.6;0.0 +1904400;0;0;0.0 +1908000;0;0;0.0 +1911600;0;0;0.0 +1915200;0;0;0.0 +1918800;0;20778.2;0.0 +1922400;0;16671.5;0.0 +1926000;0;11980.8;0.0 +1929600;0;5166.1;0.0 +1933200;0;1514.1;0.0 +1936800;-1239.7;820.2;0.0 +1940400;0;1022.1;0.0 +1944000;-12942.5;0;0.0 +1947600;-28173.4;0;0.0 +1951200;-18774.9;0;0.0 +1954800;-417.0;0;0.0 +1958400;0;330.9;0.0 +1962000;0;148.7;0.0 +1965600;-10425.4;0;0.0 +1969200;-24706.5;0;0.0 +1972800;-22855.9;0;0.0 +1976400;-20648.3;0;0.0 +1980000;-1905.3;0;0.0 +1983600;0;5094.7;0.0 +1987200;0;11356.9;0.0 +1990800;0;0;0.0 +1994400;0;0;0.0 +1998000;0;0;0.0 +2001600;0;0;0.0 +2005200;0;35048.6;0.0 +2008800;0;28097.5;0.0 +2012400;0;19745.5;0.0 +2016000;0;11620.2;0.0 +2019600;0;6624.4;0.0 +2023200;-1291.3;2251.6;0.0 +2026800;-184.0;2446.3;0.0 +2030400;-14231.1;0;0.0 +2034000;-29656.0;0;0.0 +2037600;-21764.6;0;0.0 +2041200;-2843.0;0;0.0 +2044800;0;149.9;0.0 +2048400;0;0;0.0 +2052000;-11949.8;0;0.0 +2055600;-27061.9;0;0.0 +2059200;-24539.7;0;0.0 +2062800;-22635.4;0;0.0 +2066400;-4167.8;0;0.0 +2070000;0;1638.1;0.0 +2073600;0;7512.7;0.0 +2077200;0;0;0.0 +2080800;0;0;0.0 +2084400;0;0;0.0 +2088000;0;0;0.0 +2091600;0;25477.8;0.0 +2095200;0;21151.2;0.0 +2098800;0;15690.6;0.0 +2102400;0;7643.6;0.0 +2106000;0;3534.2;0.0 +2109600;-2933.2;979.0;0.0 +2113200;0;851.7;0.0 +2116800;-15521.7;0;0.0 +2120400;-29816.8;0;0.0 +2124000;-23648.9;0;0.0 +2127600;-3995.4;0;0.0 +2131200;0;0;0.0 +2134800;0;0;0.0 +2138400;-13131.3;0;0.0 +2142000;-27286.7;0;0.0 +2145600;-24810.6;0;0.0 +2149200;-23100.5;0;0.0 +2152800;-3832.1;0;0.0 +2156400;0;2249.8;0.0 +2160000;0;7891.5;0.0 +2163600;0;0;0.0 +2167200;0;0;0.0 +2170800;0;0;0.0 +2174400;0;0;0.0 +2178000;0;26088.0;0.0 +2181600;0;22125.5;0.0 +2185200;0;15035.8;0.0 +2188800;0;7226.1;0.0 +2192400;0;3945.4;0.0 +2196000;-2052.1;638.9;0.0 +2199600;0;540.0;0.0 +2203200;-13429.8;0;0.0 +2206800;-27494.9;0;0.0 +2210400;-19569.0;0;0.0 +2214000;-1296.3;0;0.0 +2217600;0;0;0.0 +2221200;0;0;0.0 +2224800;-11306.6;0;0.0 +2228400;-26066.5;0;0.0 +2232000;-24032.3;0;0.0 +2235600;-22705.8;0;0.0 +2239200;-4348.2;0;0.0 +2242800;0;60.1;0.0 +2246400;0;6041.2;0.0 +2250000;0;0;0.0 +2253600;0;0;0.0 +2257200;0;0;0.0 +2260800;0;0;0.0 +2264400;0;21074.4;0.0 +2268000;0;17332.6;0.0 +2271600;0;12347.8;0.0 +2275200;0;4103.2;0.0 +2278800;0;911.0;0.0 +2282400;-4437.2;0;0.0 +2286000;0;0;0.0 +2289600;-16523.6;0;0.0 +2293200;-33116.6;0;0.0 +2296800;-21499.8;0;0.0 +2300400;-3299.2;0;0.0 +2304000;0;0;0.0 +2307600;0;0;0.0 +2311200;-12502.8;0;0.0 +2314800;-26867.9;0;0.0 +2318400;-25947.7;0;0.0 +2322000;-23643.0;0;0.0 +2325600;-4732.8;0;0.0 +2329200;0;437.7;0.0 +2332800;0;5650.5;0.0 +2336400;0;0;0.0 +2340000;0;0;0.0 +2343600;0;0;0.0 +2347200;0;0;0.0 +2350800;0;24669.9;0.0 +2354400;0;20698.5;0.0 +2358000;0;16371.1;0.0 +2361600;0;5075.5;0.0 +2365200;-1559.4;1403.2;0.0 +2368800;-1255.8;1015.9;0.0 +2372400;-321.2;1015.1;0.0 +2376000;-10391.0;0;0.0 +2379600;-9876.7;0;0.0 +2383200;-8064.5;0;0.0 +2386800;0;0;0.0 +2390400;0;0;0.0 +2394000;0;0;0.0 +2397600;0;0;0.0 +2401200;-21332.3;0;0.0 +2404800;-29733.8;0;0.0 +2408400;-16534.9;0;0.0 +2412000;-12210.6;0;0.0 +2415600;0;1725.7;0.0 +2419200;0;6205.2;0.0 +2422800;0;0;0.0 +2426400;0;0;0.0 +2430000;0;0;0.0 +2433600;0;0;0.0 +2437200;0;26445.5;0.0 +2440800;0;22224.7;0.0 +2444400;0;16792.3;0.0 +2448000;0;6114.7;0.0 +2451600;-1968.6;1526.6;0.0 +2455200;0;5952.8;0.0 +2458800;0;1660.6;0.0 +2462400;-1900.1;0;0.0 +2466000;-9972.6;0;0.0 +2469600;-6637.9;0;0.0 +2473200;0;0;0.0 +2476800;0;78.7;0.0 +2480400;0;0;0.0 +2484000;-358.2;0;0.0 +2487600;-10233.5;0;0.0 +2491200;-14228.6;0;0.0 +2494800;-14622.0;0;0.0 +2498400;0;1111.9;0.0 +2502000;0;7651.1;0.0 +2505600;0;9612.0;0.0 +2509200;0;0;0.0 +2512800;0;0;0.0 +2516400;0;0;0.0 +2520000;0;0;0.0 +2523600;0;26988.0;0.0 +2527200;0;22965.7;0.0 +2530800;0;15458.4;0.0 +2534400;0;7587.0;0.0 +2538000;0;4679.8;0.0 +2541600;-1320.6;1534.8;0.0 +2545200;-105.7;1963.6;0.0 +2548800;-15981.4;0;0.0 +2552400;-32118.2;0;0.0 +2556000;-21422.8;0;0.0 +2559600;-1403.1;0;0.0 +2563200;0;160.2;0.0 +2566800;0;88.9;0.0 +2570400;-12005.6;0;0.0 +2574000;-26648.6;0;0.0 +2577600;-24546.5;0;0.0 +2581200;-22430.8;0;0.0 +2584800;-3807.1;0;0.0 +2588400;0;2707.8;0.0 +2592000;0;8985.9;0.0 +2595600;0;0;0.0 +2599200;0;0;0.0 +2602800;0;0;0.0 +2606400;0;0;0.0 +2610000;0;28333.1;0.0 +2613600;0;23521.5;0.0 +2617200;0;17258.9;0.0 +2620800;0;8443.0;0.0 +2624400;0;7398.4;0.0 +2628000;-1166.5;2121.0;0.0 +2631600;0;1877.6;0.0 +2635200;-13197.5;0;0.0 +2638800;-26349.0;0;0.0 +2642400;-20562.2;0;0.0 +2646000;-1063.0;0;0.0 +2649600;0;612.3;0.0 +2653200;0;479.5;0.0 +2656800;-10270.8;0;0.0 +2660400;-25393.3;0;0.0 +2664000;-22736.5;0;0.0 +2667600;-21502.7;0;0.0 +2671200;-3128.4;0;0.0 +2674800;0;2613.6;0.0 +2678400;0;7461.2;0.0 +2682000;0;0;0.0 +2685600;0;0;0.0 +2689200;0;0;0.0 +2692800;0;0;0.0 +2696400;0;12685.6;0.0 +2700000;0;0;0.0 +2703600;0;0;0.0 +2707200;0;1005.0;0.0 +2710800;0;0;0.0 +2714400;-5911.3;0;0.0 +2718000;0;0;0.0 +2721600;-16146.9;0;0.0 +2725200;-36495.2;0;0.0 +2728800;-26319.7;0;0.0 +2732400;-6629.1;0;0.0 +2736000;0;0;0.0 +2739600;-182.8;0;0.0 +2743200;-13057.6;0;0.0 +2746800;-28324.1;0;0.0 +2750400;-26306.4;0;0.0 +2754000;-25006.4;0;0.0 +2757600;-5426.7;0;0.0 +2761200;0;0;0.0 +2764800;0;2820.8;0.0 +2768400;0;0;0.0 +2772000;0;0;0.0 +2775600;0;0;0.0 +2779200;0;0;0.0 +2782800;0;15937.4;0.0 +2786400;0;12518.8;0.0 +2790000;0;8851.5;0.0 +2793600;0;1252.8;0.0 +2797200;0;36.3;0.0 +2800800;-4872.7;0;0.0 +2804400;0;0;0.0 +2808000;-15479.7;0;0.0 +2811600;-33580.2;0;0.0 +2815200;-23844.7;0;0.0 +2818800;-4214.1;0;0.0 +2822400;0;0;0.0 +2826000;0;0;0.0 +2829600;-12509.2;0;0.0 +2833200;-27412.6;0;0.0 +2836800;-25709.9;0;0.0 +2840400;-24471.4;0;0.0 +2844000;-5287.7;0;0.0 +2847600;0;0;0.0 +2851200;0;4863.6;0.0 +2854800;0;0;0.0 +2858400;0;0;0.0 +2862000;0;0;0.0 +2865600;0;0;0.0 +2869200;0;22844.6;0.0 +2872800;0;18294.3;0.0 +2876400;0;13719.1;0.0 +2880000;0;5683.5;0.0 +2883600;0;3049.8;0.0 +2887200;-2683.9;134.3;0.0 +2890800;0;91.4;0.0 +2894400;-14262.3;0;0.0 +2898000;-32510.4;0;0.0 +2901600;-22042.8;0;0.0 +2905200;-3481.6;0;0.0 +2908800;0;0;0.0 +2912400;0;0;0.0 +2916000;-12791.0;0;0.0 +2919600;-28066.9;0;0.0 +2923200;-25771.6;0;0.0 +2926800;-24112.7;0;0.0 +2930400;-4305.7;0;0.0 +2934000;0;57.5;0.0 +2937600;0;5546.6;0.0 +2941200;0;0;0.0 +2944800;0;0;0.0 +2948400;0;0;0.0 +2952000;0;0;0.0 +2955600;0;23110.2;0.0 +2959200;0;19201.7;0.0 +2962800;0;14944.4;0.0 +2966400;0;3967.0;0.0 +2970000;-1241.4;419.6;0.0 +2973600;-2211.0;103.5;0.0 +2977200;0;14.7;0.0 +2980800;-11201.0;0;0.0 +2984400;-10662.0;0;0.0 +2988000;-8871.2;0;0.0 +2991600;0;0;0.0 +2995200;0;0;0.0 +2998800;0;0;0.0 +3002400;0;0;0.0 +3006000;-20015.7;0;0.0 +3009600;-29946.7;0;0.0 +3013200;-16859.1;0;0.0 +3016800;-12567.4;0;0.0 +3020400;0;73.6;0.0 +3024000;0;6102.7;0.0 +3027600;0;0;0.0 +3031200;0;0;0.0 +3034800;0;0;0.0 +3038400;0;0;0.0 +3042000;0;29251.2;0.0 +3045600;0;24337.1;0.0 +3049200;0;18660.0;0.0 +3052800;0;7324.5;0.0 +3056400;-2032.1;1796.1;0.0 +3060000;0;2722.3;0.0 +3063600;0;758.5;0.0 +3067200;-3255.3;0;0.0 +3070800;-12038.3;0;0.0 +3074400;-11269.6;0;0.0 +3078000;0;0;0.0 +3081600;0;250.7;0.0 +3085200;0;298.1;0.0 +3088800;0;115.8;0.0 +3092400;-8952.7;0;0.0 +3096000;-12173.7;0;0.0 +3099600;-12871.7;0;0.0 +3103200;0;3691.9;0.0 +3106800;0;10629.0;0.0 +3110400;0;13826.8;0.0 +3114000;0;0;0.0 +3117600;0;0;0.0 +3121200;0;0;0.0 +3124800;0;0;0.0 +3128400;0;38769.0;0.0 +3132000;0;29605.9;0.0 +3135600;0;22167.3;0.0 +3139200;0;13580.6;0.0 +3142800;0;11069.6;0.0 +3146400;0;9407.0;0.0 +3150000;0;8433.8;0.0 +3153600;-10300.6;508.4;0.0 +3157200;-23183.3;0;0.0 +3160800;-15342.2;0;0.0 +3164400;0;442.9;0.0 +3168000;0;2738.5;0.0 +3171600;0;2788.2;0.0 +3175200;-7784.8;290.6;0.0 +3178800;-21471.7;0;0.0 +3182400;-20612.4;0;0.0 +3186000;-19436.0;0;0.0 +3189600;0;2210.2;0.0 +3193200;0;8651.0;0.0 +3196800;0;14481.4;0.0 +3200400;0;0;0.0 +3204000;0;0;0.0 +3207600;0;0;0.0 +3211200;0;0;0.0 +3214800;0;38986.3;0.0 +3218400;0;30768.8;0.0 +3222000;0;22529.8;0.0 +3225600;0;15009.4;0.0 +3229200;0;8085.8;0.0 +3232800;0;4301.7;0.0 +3236400;0;5713.4;0.0 +3240000;-11162.6;0;0.0 +3243600;-27355.1;0;0.0 +3247200;-21724.2;0;0.0 +3250800;-887.1;0;0.0 +3254400;0;157.4;0.0 +3258000;0;67.8;0.0 +3261600;-9215.1;0;0.0 +3265200;-24132.7;0;0.0 +3268800;-21650.5;0;0.0 +3272400;-19739.3;0;0.0 +3276000;-1877.2;0;0.0 +3279600;0;2429.8;0.0 +3283200;0;8958.0;0.0 +3286800;0;0;0.0 +3290400;0;0;0.0 +3294000;0;0;0.0 +3297600;0;0;0.0 +3301200;0;27097.4;0.0 +3304800;0;22429.6;0.0 +3308400;0;16237.2;0.0 +3312000;0;8271.7;0.0 +3315600;0;2698.2;0.0 +3319200;-3210.2;926.7;0.0 +3322800;-2168.5;1153.1;0.0 +3326400;-18120.8;0;0.0 +3330000;-36668.5;0;0.0 +3333600;-26700.1;0;0.0 +3337200;-993.5;0;0.0 +3340800;0;0;0.0 +3344400;0;0;0.0 +3348000;-12081.5;0;0.0 +3351600;-26730.6;0;0.0 +3355200;-24717.0;0;0.0 +3358800;-23368.3;0;0.0 +3362400;-4049.8;0;0.0 +3366000;0;2207.4;0.0 +3369600;0;8452.5;0.0 +3373200;0;0;0.0 +3376800;0;0;0.0 +3380400;0;0;0.0 +3384000;0;0;0.0 +3387600;0;28671.0;0.0 +3391200;0;22412.1;0.0 +3394800;0;14912.3;0.0 +3398400;0;6231.7;0.0 +3402000;0;2004.9;0.0 +3405600;-3265.7;76.1;0.0 +3409200;0;113.6;0.0 +3412800;-13594.7;0;0.0 +3416400;-29278.9;0;0.0 +3420000;-21126.8;0;0.0 +3423600;-1404.9;0;0.0 +3427200;0;0;0.0 +3430800;0;0;0.0 +3434400;-10898.5;0;0.0 +3438000;-25238.5;0;0.0 +3441600;-22394.4;0;0.0 +3445200;-21263.6;0;0.0 +3448800;-2682.2;0;0.0 +3452400;0;875.9;0.0 +3456000;0;7443.6;0.0 +3459600;0;0;0.0 +3463200;0;0;0.0 +3466800;0;0;0.0 +3470400;0;0;0.0 +3474000;0;26201.5;0.0 +3477600;0;21129.8;0.0 +3481200;0;15224.6;0.0 +3484800;0;6797.4;0.0 +3488400;0;1592.5;0.0 +3492000;-4321.0;7.2;0.0 +3495600;0;1120.6;0.0 +3499200;-18260.6;0;0.0 +3502800;-24573.5;0;0.0 +3506400;-24582.1;0;0.0 +3510000;-3520.0;0;0.0 +3513600;0;0;0.0 +3517200;0;0;0.0 +3520800;-12283.7;0;0.0 +3524400;-26991.0;0;0.0 +3528000;-25955.7;0;0.0 +3531600;-23358.9;0;0.0 +3535200;-4214.5;0;0.0 +3538800;0;946.4;0.0 +3542400;0;7016.2;0.0 +3546000;0;0;0.0 +3549600;0;0;0.0 +3553200;0;0;0.0 +3556800;0;0;0.0 +3560400;0;25625.9;0.0 +3564000;0;21607.3;0.0 +3567600;0;16726.1;0.0 +3571200;0;5698.7;0.0 +3574800;-1583.1;1412.3;0.0 +3578400;-1417.0;413.2;0.0 +3582000;-424.0;0;0.0 +3585600;-11204.1;0;0.0 +3589200;-11117.1;0;0.0 +3592800;-9867.4;0;0.0 +3596400;0;0;0.0 +3600000;0;0;0.0 +3603600;-792.2;0;0.0 +3607200;-1114.7;0;0.0 +3610800;-21772.5;0;0.0 +3614400;-34208.5;0;0.0 +3618000;-17566.5;0;0.0 +3621600;-13408.8;0;0.0 +3625200;0;0;0.0 +3628800;0;112.8;0.0 +3632400;0;0;0.0 +3636000;0;0;0.0 +3639600;0;0;0.0 +3643200;0;0;0.0 +3646800;0;15520.2;0.0 +3650400;0;13009.1;0.0 +3654000;0;8904.4;0.0 +3657600;-2555.5;0;0.0 +3661200;0;0;0.0 +3664800;0;915.4;0.0 +3668400;0;0;0.0 +3672000;-472.5;0;0.0 +3675600;-8644.5;0;0.0 +3679200;-6132.6;0;0.0 +3682800;0;0;0.0 +3686400;0;115.1;0.0 +3690000;0;1618.6;0.0 +3693600;0;14.1;0.0 +3697200;-8701.4;0;0.0 +3700800;-12097.7;0;0.0 +3704400;-13515.3;0;0.0 +3708000;0;1307.3;0.0 +3711600;0;7100.2;0.0 +3715200;0;10807.2;0.0 +3718800;0;0;0.0 +3722400;0;0;0.0 +3726000;0;0;0.0 +3729600;0;0;0.0 +3733200;0;37101.1;0.0 +3736800;0;26048.7;0.0 +3740400;0;19619.0;0.0 +3744000;0;11343.6;0.0 +3747600;0;7912.8;0.0 +3751200;0;3908.2;0.0 +3754800;0;2774.5;0.0 +3758400;-11234.6;0;0.0 +3762000;-24488.4;0;0.0 +3765600;-17656.8;0;0.0 +3769200;0;0;0.0 +3772800;0;230.3;0.0 +3776400;0;858.2;0.0 +3780000;0;0;0.0 +3783600;-24295.8;0;0.0 +3787200;-22214.7;0;0.0 +3790800;-20296.4;0;0.0 +3794400;-1676.0;0;0.0 +3798000;0;3670.4;0.0 +3801600;0;9159.4;0.0 +3805200;0;0;0.0 +3808800;0;0;0.0 +3812400;0;0;0.0 +3816000;0;0;0.0 +3819600;0;30004.3;0.0 +3823200;0;23407.5;0.0 +3826800;0;16633.6;0.0 +3830400;0;8574.0;0.0 +3834000;0;2774.8;0.0 +3837600;-1584.3;910.9;0.0 +3841200;-283.8;348.6;0.0 +3844800;-16190.9;0;0.0 +3848400;-23197.3;0;0.0 +3852000;-16262.8;0;0.0 +3855600;0;0;0.0 +3859200;-1500.4;0;0.0 +3862800;0;0;0.0 +3866400;-12729.6;0;0.0 +3870000;-28042.6;0;0.0 +3873600;-24914.9;0;0.0 +3877200;-26986.2;0;0.0 +3880800;-10448.5;0;0.0 +3884400;0;0;0.0 +3888000;0;265.0;0.0 +3891600;0;0;0.0 +3895200;0;0;0.0 +3898800;0;0;0.0 +3902400;0;0;0.0 +3906000;0;12078.4;0.0 +3909600;0;0;0.0 +3913200;0;0;0.0 +3916800;0;335.4;0.0 +3920400;0;0;0.0 +3924000;-5507.2;0;0.0 +3927600;0;0;0.0 +3931200;-13511.6;0;0.0 +3934800;-31542.6;0;0.0 +3938400;-21046.1;0;0.0 +3942000;-1189.6;0;0.0 +3945600;0;0;0.0 +3949200;0;0;0.0 +3952800;-11544.0;0;0.0 +3956400;-26393.4;0;0.0 +3960000;-24640.2;0;0.0 +3963600;-23569.8;0;0.0 +3967200;-5158.5;0;0.0 +3970800;0;0;0.0 +3974400;0;3691.9;0.0 +3978000;0;0;0.0 +3981600;0;0;0.0 +3985200;0;0;0.0 +3988800;0;0;0.0 +3992400;0;20808.4;0.0 +3996000;0;16381.7;0.0 +3999600;0;12291.7;0.0 +4003200;0;4091.8;0.0 +4006800;0;797.4;0.0 +4010400;-2872.1;0;0.0 +4014000;-506.0;26.8;0.0 +4017600;-16679.0;0;0.0 +4021200;-30754.8;0;0.0 +4024800;-21390.7;0;0.0 +4028400;-1769.8;0;0.0 +4032000;0;0;0.0 +4035600;0;0;0.0 +4039200;-11093.8;0;0.0 +4042800;-26404.2;0;0.0 +4046400;-24641.6;0;0.0 +4050000;-23885.5;0;0.0 +4053600;-5061.2;0;0.0 +4057200;0;0;0.0 +4060800;0;4049.9;0.0 +4064400;0;0;0.0 +4068000;0;0;0.0 +4071600;0;0;0.0 +4075200;0;0;0.0 +4078800;0;17505.1;0.0 +4082400;0;13463.5;0.0 +4086000;0;8750.5;0.0 +4089600;0;870.6;0.0 +4093200;0;0;0.0 +4096800;-4986.6;0;0.0 +4100400;-1082.5;0;0.0 +4104000;-1795.3;0;0.0 +4107600;-31860.2;0;0.0 +4111200;-15076.3;0;0.0 +4114800;-3403.6;0;0.0 +4118400;0;0;0.0 +4122000;0;0;0.0 +4125600;-12266.4;0;0.0 +4129200;-27309.9;0;0.0 +4132800;-25332.4;0;0.0 +4136400;-24168.3;0;0.0 +4140000;-5472.9;0;0.0 +4143600;0;0;0.0 +4147200;0;2081.0;0.0 +4150800;0;0;0.0 +4154400;0;0;0.0 +4158000;0;0;0.0 +4161600;0;0;0.0 +4165200;0;16417.0;0.0 +4168800;0;13591.4;0.0 +4172400;0;9737.4;0.0 +4176000;0;994.4;0.0 +4179600;0;0;0.0 +4183200;-3729.8;0;0.0 +4186800;0;0;0.0 +4190400;-13455.6;0;0.0 +4194000;-5119.0;0;0.0 +4197600;-14602.3;0;0.0 +4201200;-4656.2;0;0.0 +4204800;-610.8;0;0.0 +4208400;0;0;0.0 +4212000;0;0;0.0 +4215600;-22084.5;0;0.0 +4219200;-34947.2;0;0.0 +4222800;-18484.6;0;0.0 +4226400;-14218.9;0;0.0 +4230000;0;0;0.0 +4233600;0;412.6;0.0 +4237200;0;0;0.0 +4240800;0;0;0.0 +4244400;0;0;0.0 +4248000;0;0;0.0 +4251600;0;18753.7;0.0 +4255200;0;14838.2;0.0 +4258800;0;10658.9;0.0 +4262400;0;337.3;0.0 +4266000;-902.4;0;0.0 +4269600;0;0;0.0 +4273200;0;0;0.0 +4276800;-3086.5;0;0.0 +4280400;-11985.6;0;0.0 +4284000;-10088.6;0;0.0 +4287600;0;0;0.0 +4291200;0;0;0.0 +4294800;0;0;0.0 +4298400;-3096.7;0;0.0 +4302000;-12583.8;0;0.0 +4305600;-16351.0;0;0.0 +4309200;-17297.2;0;0.0 +4312800;0;0;0.0 +4316400;0;0;0.0 +4320000;0;1272.3;0.0 +4323600;0;0;0.0 +4327200;0;0;0.0 +4330800;0;0;0.0 +4334400;0;0;0.0 +4338000;0;19320.6;0.0 +4341600;0;12915.3;0.0 +4345200;0;8382.7;0.0 +4348800;0;1283.0;0.0 +4352400;0;0;0.0 +4356000;-2929.2;0;0.0 +4359600;0;0;0.0 +4363200;-14479.5;0;0.0 +4366800;-32099.7;0;0.0 +4370400;-23977.4;0;0.0 +4374000;-5413.4;0;0.0 +4377600;0;0;0.0 +4381200;0;0;0.0 +4384800;-10586.0;0;0.0 +4388400;-25301.5;0;0.0 +4392000;-22404.7;0;0.0 +4395600;-20583.1;0;0.0 +4399200;-2062.9;0;0.0 +4402800;0;1198.5;0.0 +4406400;0;7784.2;0.0 +4410000;0;0;0.0 +4413600;0;0;0.0 +4417200;0;0;0.0 +4420800;0;0;0.0 +4424400;0;32153.4;0.0 +4428000;0;26276.4;0.0 +4431600;0;19541.9;0.0 +4435200;0;10831.0;0.0 +4438800;0;5305.4;0.0 +4442400;0;2488.6;0.0 +4446000;0;2530.8;0.0 +4449600;-12963.2;0;0.0 +4453200;-26079.3;0;0.0 +4456800;-17793.2;0;0.0 +4460400;0;0;0.0 +4464000;0;1365.2;0.0 +4467600;0;931.1;0.0 +4471200;-7872.1;0;0.0 +4474800;-23219.7;0;0.0 +4478400;-21950.4;0;0.0 +4482000;-21183.5;0;0.0 +4485600;-2149.8;0;0.0 +4489200;0;4946.9;0.0 +4492800;0;10244.1;0.0 +4496400;0;0;0.0 +4500000;0;0;0.0 +4503600;0;0;0.0 +4507200;0;0;0.0 +4510800;0;26278.7;0.0 +4514400;0;21460.8;0.0 +4518000;0;14795.4;0.0 +4521600;0;6251.2;0.0 +4525200;0;1533.1;0.0 +4528800;-1545.2;0;0.0 +4532400;0;0;0.0 +4536000;-13127.5;0;0.0 +4539600;-18191.0;0;0.0 +4543200;-24509.6;0;0.0 +4546800;-9838.2;0;0.0 +4550400;-3025.3;0;0.0 +4554000;-3.4;0;0.0 +4557600;-17921.8;0;0.0 +4561200;-37428.4;0;0.0 +4564800;-49309.5;0;0.0 +4568400;-26581.1;0;0.0 +4572000;-12861.2;0;0.0 +4575600;0;0;0.0 +4579200;0;100.2;0.0 +4582800;0;0;0.0 +4586400;0;0;0.0 +4590000;0;0;0.0 +4593600;0;0;0.0 +4597200;0;11592.9;0.0 +4600800;0;0;0.0 +4604400;0;0;0.0 +4608000;-376.3;611.9;0.0 +4611600;0;66.8;0.0 +4615200;-3932.4;0;0.0 +4618800;0;0;0.0 +4622400;-16522.5;0;0.0 +4626000;-34898.6;0;0.0 +4629600;-25439.8;0;0.0 +4633200;-4731.9;0;0.0 +4636800;0;0;0.0 +4640400;0;0;0.0 +4644000;-12169.2;0;0.0 +4647600;-27363.7;0;0.0 +4651200;-24346.6;0;0.0 +4654800;-23789.0;0;0.0 +4658400;-4410.0;0;0.0 +4662000;0;41.3;0.0 +4665600;0;5003.5;0.0 +4669200;0;0;0.0 +4672800;0;0;0.0 +4676400;0;0;0.0 +4680000;0;0;0.0 +4683600;0;24628.2;0.0 +4687200;0;19065.2;0.0 +4690800;0;12933.4;0.0 +4694400;0;5193.6;0.0 +4698000;0;1309.3;0.0 +4701600;-2634.5;94.7;0.0 +4705200;0;120.9;0.0 +4708800;-12975.6;0;0.0 +4712400;-30613.2;0;0.0 +4716000;-19437.1;0;0.0 +4719600;-1518.5;0;0.0 +4723200;0;0;0.0 +4726800;0;0;0.0 +4730400;-11151.1;0;0.0 +4734000;-25941.7;0;0.0 +4737600;-23969.6;0;0.0 +4741200;-22395.0;0;0.0 +4744800;-3907.1;0;0.0 +4748400;0;488.4;0.0 +4752000;0;6637.2;0.0 +4755600;0;0;0.0 +4759200;0;0;0.0 +4762800;0;0;0.0 +4766400;0;0;0.0 +4770000;0;25652.1;0.0 +4773600;0;20987.5;0.0 +4777200;0;16050.2;0.0 +4780800;0;5143.6;0.0 +4784400;-2639.1;448.1;0.0 +4788000;-1999.8;117.9;0.0 +4791600;0;179.3;0.0 +4795200;-10675.9;0;0.0 +4798800;-10412.2;0;0.0 +4802400;-8216.0;0;0.0 +4806000;0;0;0.0 +4809600;0;0;0.0 +4813200;0;0;0.0 +4816800;0;0;0.0 +4820400;-20248.4;0;0.0 +4824000;-29512.1;0;0.0 +4827600;-16059.5;0;0.0 +4831200;-11915.4;0;0.0 +4834800;0;0;0.0 +4838400;0;5256.9;0.0 +4842000;0;0;0.0 +4845600;0;0;0.0 +4849200;0;0;0.0 +4852800;0;0;0.0 +4856400;0;24685.5;0.0 +4860000;0;20822.2;0.0 +4863600;0;15837.8;0.0 +4867200;0;3331.4;0.0 +4870800;-1984.9;661.4;0.0 +4874400;0;2484.2;0.0 +4878000;0;156.6;0.0 +4881600;-2268.1;0;0.0 +4885200;-11134.3;0;0.0 +4888800;-9071.7;0;0.0 +4892400;0;0;0.0 +4896000;0;0;0.0 +4899600;0;0;0.0 +4903200;-2138.4;0;0.0 +4906800;-10947.6;0;0.0 +4910400;-14964.1;0;0.0 +4914000;-15952.0;0;0.0 +4917600;0;0;0.0 +4921200;0;2022.4;0.0 +4924800;0;4895.6;0.0 +4928400;0;0;0.0 +4932000;0;0;0.0 +4935600;0;0;0.0 +4939200;0;0;0.0 +4942800;0;17528.3;0.0 +4946400;0;14384.4;0.0 +4950000;0;10734.7;0.0 +4953600;0;2874.2;0.0 +4957200;0;69.8;0.0 +4960800;-2037.9;0;0.0 +4964400;0;0;0.0 +4968000;-13705.6;0;0.0 +4971600;-29122.7;0;0.0 +4975200;-20826.2;0;0.0 +4978800;-2425.9;0;0.0 +4982400;0;0;0.0 +4986000;0;0;0.0 +4989600;-12706.6;0;0.0 +4993200;-27594.3;0;0.0 +4996800;-26488.7;0;0.0 +5000400;-24786.6;0;0.0 +5004000;-5715.6;0;0.0 +5007600;0;0;0.0 +5011200;0;5274.9;0.0 +5014800;0;0;0.0 +5018400;0;0;0.0 +5022000;0;0;0.0 +5025600;0;0;0.0 +5029200;0;25773.7;0.0 +5032800;0;20902.3;0.0 +5036400;0;15199.7;0.0 +5040000;0;6219.3;0.0 +5043600;0;1486.7;0.0 +5047200;-5639.3;0;0.0 +5050800;-2347.1;0;0.0 +5054400;-8713.6;0;0.0 +5058000;-25446.9;0;0.0 +5061600;-29762.2;0;0.0 +5065200;-3907.1;0;0.0 +5068800;-5285.2;0;0.0 +5072400;-1064.6;0;0.0 +5076000;0;0;0.0 +5079600;-17775.1;0;0.0 +5083200;-25736.5;0;0.0 +5086800;-24153.2;0;0.0 +5090400;-5112.8;0;0.0 +5094000;0;0;0.0 +5097600;0;3581.4;0.0 +5101200;0;0;0.0 +5104800;0;0;0.0 +5108400;0;0;0.0 +5112000;0;0;0.0 +5115600;0;23196.3;0.0 +5119200;0;18290.5;0.0 +5122800;0;13461.3;0.0 +5126400;0;4984.8;0.0 +5130000;0;1309.5;0.0 +5133600;-3265.1;144.8;0.0 +5137200;-1552.1;168.7;0.0 +5140800;-6547.6;0;0.0 +5144400;-34102.5;0;0.0 +5148000;-26989.4;0;0.0 +5151600;-1930.7;0;0.0 +5155200;-4263.2;0;0.0 +5158800;0;0;0.0 +5162400;-531.5;0;0.0 +5166000;-16037.6;0;0.0 +5169600;-24309.3;0;0.0 +5173200;-22518.6;0;0.0 +5176800;-3113.5;0;0.0 +5180400;0;0;0.0 +5184000;0;3319.8;0.0 +5187600;0;0;0.0 +5191200;0;0;0.0 +5194800;0;0;0.0 +5198400;0;0;0.0 +5202000;0;18846.0;0.0 +5205600;0;13572.7;0.0 +5209200;0;9174.1;0.0 +5212800;0;658.2;0.0 +5216400;0;0;0.0 +5220000;0;0;0.0 +5223600;0;0;0.0 +5227200;-1976.7;0;0.0 +5230800;-7056.9;0;0.0 +5234400;-23352.6;0;0.0 +5238000;-1597.1;0;0.0 +5241600;-4406.0;0;0.0 +5245200;0;0;0.0 +5248800;-12453.8;0;0.0 +5252400;-28726.0;0;0.0 +5256000;-26095.1;0;0.0 +5259600;-24159.2;0;0.0 +5263200;-5276.2;0;0.0 +5266800;0;0;0.0 +5270400;0;929.3;0.0 +5274000;0;0;0.0 +5277600;0;0;0.0 +5281200;0;0;0.0 +5284800;0;0;0.0 +5288400;0;15841.9;0.0 +5292000;0;12439.4;0.0 +5295600;0;9195.6;0.0 +5299200;0;969.2;0.0 +5302800;0;1068.3;0.0 +5306400;0;0;0.0 +5310000;-821.5;0;0.0 +5313600;-16455.9;0;0.0 +5317200;-34184.7;0;0.0 +5320800;-26135.4;0;0.0 +5324400;0;0;0.0 +5328000;0;0;0.0 +5331600;0;0;0.0 +5335200;-10790.6;0;0.0 +5338800;-25532.4;0;0.0 +5342400;-23848.8;0;0.0 +5346000;-22911.8;0;0.0 +5349600;-3705.6;0;0.0 +5353200;0;875.8;0.0 +5356800;0;7173.1;0.0 +5360400;0;0;0.0 +5364000;0;0;0.0 +5367600;0;0;0.0 +5371200;0;0;0.0 +5374800;0;25957.5;0.0 +5378400;0;21085.8;0.0 +5382000;0;16208.3;0.0 +5385600;0;4238.2;0.0 +5389200;-3785.1;301.6;0.0 +5392800;-3378.9;119.1;0.0 +5396400;0;182.8;0.0 +5400000;-12088.6;0;0.0 +5403600;-11456.5;0;0.0 +5407200;-10016.3;0;0.0 +5410800;0;0;0.0 +5414400;0;0;0.0 +5418000;0;0;0.0 +5421600;0;0;0.0 +5425200;-20753.4;0;0.0 +5428800;-31390.8;0;0.0 +5432400;-17532.0;0;0.0 +5436000;-13348.3;0;0.0 +5439600;0;0;0.0 +5443200;0;2840.6;0.0 +5446800;0;0;0.0 +5450400;0;0;0.0 +5454000;0;0;0.0 +5457600;0;0;0.0 +5461200;0;24219.1;0.0 +5464800;0;20684.9;0.0 +5468400;0;16138.5;0.0 +5472000;0;2404.7;0.0 +5475600;-3270.4;565.6;0.0 +5479200;-213.4;1754.7;0.0 +5482800;-1184.0;176.6;0.0 +5486400;-5668.2;0;0.0 +5490000;-14450.5;0;0.0 +5493600;-13245.2;0;0.0 +5497200;-48.4;0;0.0 +5500800;0;0;0.0 +5504400;0;0;0.0 +5508000;-1479.9;0;0.0 +5511600;-10851.7;0;0.0 +5515200;-13750.3;0;0.0 +5518800;-15601.7;0;0.0 +5522400;0;119.6;0.0 +5526000;0;4572.4;0.0 +5529600;0;7986.0;0.0 +5533200;0;0;0.0 +5536800;0;0;0.0 +5540400;0;0;0.0 +5544000;0;0;0.0 +5547600;0;27194.1;0.0 +5551200;0;22291.3;0.0 +5554800;0;15908.5;0.0 +5558400;0;3797.0;0.0 +5562000;0;2466.5;0.0 +5565600;-1730.8;841.3;0.0 +5569200;-1098.8;707.1;0.0 +5572800;-15965.2;0;0.0 +5576400;-31817.1;0;0.0 +5580000;-26834.7;0;0.0 +5583600;-1167.2;0;0.0 +5587200;-3084.1;72.3;0.0 +5590800;0;0;0.0 +5594400;-10846.5;0;0.0 +5598000;-26280.7;0;0.0 +5601600;-24761.4;0;0.0 +5605200;-23167.9;0;0.0 +5608800;-4177.0;0;0.0 +5612400;0;1029.2;0.0 +5616000;0;7396.0;0.0 +5619600;0;0;0.0 +5623200;0;0;0.0 +5626800;0;0;0.0 +5630400;0;0;0.0 +5634000;0;28750.8;0.0 +5637600;0;22745.6;0.0 +5641200;0;16986.4;0.0 +5644800;0;4014.0;0.0 +5648400;0;2358.4;0.0 +5652000;-3280.6;496.7;0.0 +5655600;-1381.9;429.0;0.0 +5659200;-8004.4;0;0.0 +5662800;-36220.0;0;0.0 +5666400;-5026.0;0;0.0 +5670000;-9532.5;0;0.0 +5673600;-1097.4;0;0.0 +5677200;0;0;0.0 +5680800;-1605.5;0;0.0 +5684400;-26543.5;0;0.0 +5688000;-24492.0;0;0.0 +5691600;-23139.7;0;0.0 +5695200;-4249.9;0;0.0 +5698800;0;536.1;0.0 +5702400;0;5978.4;0.0 +5706000;0;0;0.0 +5709600;0;0;0.0 +5713200;0;0;0.0 +5716800;0;0;0.0 +5720400;0;24398.4;0.0 +5724000;0;19818.8;0.0 +5727600;0;14494.3;0.0 +5731200;0;2608.9;0.0 +5734800;0;297.4;0.0 +5738400;-271.8;0;0.0 +5742000;-1384.2;0;0.0 +5745600;-3197.6;0;0.0 +5749200;-6574.6;0;0.0 +5752800;-23615.6;0;0.0 +5756400;-2830.0;0;0.0 +5760000;-7085.2;0;0.0 +5763600;0;0;0.0 +5767200;-13689.4;0;0.0 +5770800;-19170.3;0;0.0 +5774400;-26700.6;0;0.0 +5778000;-24868.1;0;0.0 +5781600;-5657.8;0;0.0 +5785200;0;0;0.0 +5788800;0;956.3;0.0 +5792400;0;0;0.0 +5796000;0;0;0.0 +5799600;0;0;0.0 +5803200;0;0;0.0 +5806800;0;11656.1;0.0 +5810400;0;0;0.0 +5814000;0;0;0.0 +5817600;0;334.2;0.0 +5821200;0;185.0;0.0 +5824800;-6510.4;0;0.0 +5828400;0;0;0.0 +5832000;-17923.6;0;0.0 +5835600;-28804.8;0;0.0 +5839200;-34345.9;0;0.0 +5842800;-7136.1;0;0.0 +5846400;0;0;0.0 +5850000;-2127.5;0;0.0 +5853600;-7863.6;0;0.0 +5857200;-42704.7;0;0.0 +5860800;-25006.2;0;0.0 +5864400;-27901.9;0;0.0 +5868000;-14012.4;0;0.0 +5871600;0;0;0.0 +5875200;0;171.6;0.0 +5878800;0;0;0.0 +5882400;0;0;0.0 +5886000;0;0;0.0 +5889600;0;0;0.0 +5893200;0;10759.5;0.0 +5896800;0;0;0.0 +5900400;0;0;0.0 +5904000;-767.5;302.9;0.0 +5907600;0;0;0.0 +5911200;-4659.4;0;0.0 +5914800;0;0;0.0 +5918400;-17107.7;0;0.0 +5922000;-38326.9;0;0.0 +5925600;-8880.0;0;0.0 +5929200;0;0;0.0 +5932800;0;0;0.0 +5936400;0;0;0.0 +5940000;-6907.2;0;0.0 +5943600;-42842.7;0;0.0 +5947200;-25767.5;0;0.0 +5950800;-31211.4;0;0.0 +5954400;-17685.6;0;0.0 +5958000;0;0;0.0 +5961600;0;0;0.0 +5965200;0;0;0.0 +5968800;0;0;0.0 +5972400;0;0;0.0 +5976000;0;0;0.0 +5979600;0;7577.7;0.0 +5983200;0;0;0.0 +5986800;0;0;0.0 +5990400;-5745.6;0;0.0 +5994000;-269.5;0;0.0 +5997600;-1854.9;0;0.0 +6001200;0;0;0.0 +6004800;-15716.1;0;0.0 +6008400;-6968.3;0;0.0 +6012000;-6098.5;0;0.0 +6015600;-11102.1;0;0.0 +6019200;-4249.2;0;0.0 +6022800;-4692.3;0;0.0 +6026400;-4028.6;0;0.0 +6030000;-29081.4;0;0.0 +6033600;-22892.1;0;0.0 +6037200;-20836.8;0;0.0 +6040800;-22152.7;0;0.0 +6044400;-5144.1;0;0.0 +6048000;0;0;0.0 +6051600;0;0;0.0 +6055200;0;0;0.0 +6058800;0;0;0.0 +6062400;0;5168.6;0.0 +6066000;0;3344.1;0.0 +6069600;0;1667.8;0.0 +6073200;0;0;0.0 +6076800;0;0;0.0 +6080400;0;8912.5;0.0 +6084000;0;0;0.0 +6087600;-773.4;0;0.0 +6091200;-9088.0;0;0.0 +6094800;-21809.6;0;0.0 +6098400;-5114.6;0;0.0 +6102000;-3409.9;0;0.0 +6105600;-1538.0;0;0.0 +6109200;-206.0;0;0.0 +6112800;-7788.3;0;0.0 +6116400;-15558.6;0;0.0 +6120000;-17870.1;0;0.0 +6123600;0;0;0.0 +6127200;0;0;0.0 +6130800;0;0;0.0 +6134400;0;0;0.0 +6138000;0;0;0.0 +6141600;0;0;0.0 +6145200;0;0;0.0 +6148800;0;3091.0;0.0 +6152400;0;0;0.0 +6156000;0;0;0.0 +6159600;-10424.7;0;0.0 +6163200;-4443.2;0;0.0 +6166800;0;0;0.0 +6170400;0;0;0.0 +6174000;-18056.6;0;0.0 +6177600;-38491.4;0;0.0 +6181200;-4439.9;0;0.0 +6184800;-1708.0;0;0.0 +6188400;0;0;0.0 +6192000;-667.8;0;0.0 +6195600;-10625.2;0;0.0 +6199200;-29011.6;0;0.0 +6202800;-19592.8;0;0.0 +6206400;-25249.6;0;0.0 +6210000;-1862.5;0;0.0 +6213600;0;0;0.0 +6217200;0;0;0.0 +6220800;0;0;0.0 +6224400;0;0;0.0 +6228000;0;0;0.0 +6231600;0;0;0.0 +6235200;0;1555.2;0.0 +6238800;0;0;0.0 +6242400;0;0;0.0 +6246000;-10813.8;0;0.0 +6249600;-1928.6;0;0.0 +6253200;-3720.6;0;0.0 +6256800;-16822.1;0;0.0 +6260400;-53219.7;0;0.0 +6264000;-78790.7;0;0.0 +6267600;-77492.9;0;0.0 +6271200;-60747.4;0;0.0 +6274800;-46675.9;0;0.0 +6278400;-51592.1;0;0.0 +6282000;-66221.2;0;0.0 +6285600;-82245.0;0;0.0 +6289200;-80004.8;0;0.0 +6292800;-76621.2;0;0.0 +6296400;-49889.8;0;0.0 +6300000;-12408.5;0;0.0 +6303600;0;0;0.0 +6307200;0;0;0.0 +6310800;0;0;0.0 +6314400;0;0;0.0 +6318000;0;0;0.0 +6321600;0;0;0.0 +6325200;0;0;0.0 +6328800;0;0;0.0 +6332400;-27203.6;0;0.0 +6336000;-20741.5;0;0.0 +6339600;-31541.4;0;0.0 +6343200;-35415.0;0;0.0 +6346800;-64886.8;0;0.0 +6350400;-88630.9;0;0.0 +6354000;-86358.4;0;0.0 +6357600;-71284.8;0;0.0 +6361200;-57165.5;0;0.0 +6364800;-60369.9;0;0.0 +6368400;-74965.7;0;0.0 +6372000;-90283.5;0;0.0 +6375600;-87150.3;0;0.0 +6379200;-84646.1;0;0.0 +6382800;-61102.1;0;0.0 +6386400;-19235.4;0;0.0 +6390000;0;0;0.0 +6393600;0;0;0.0 +6397200;0;0;0.0 +6400800;0;0;0.0 +6404400;0;0;0.0 +6408000;0;0;0.0 +6411600;0;0;0.0 +6415200;0;0;0.0 +6418800;-20914.6;0;0.0 +6422400;-7533.1;0;0.0 +6426000;-5982.7;0;0.0 +6429600;-951.3;0;0.0 +6433200;-28068.7;0;0.0 +6436800;-57602.3;0;0.0 +6440400;-57993.3;0;0.0 +6444000;-43905.6;0;0.0 +6447600;-36858.4;0;0.0 +6451200;-27424.4;0;0.0 +6454800;-48402.1;0;0.0 +6458400;-68587.7;0;0.0 +6462000;-54588.7;0;0.0 +6465600;-41005.8;0;0.0 +6469200;-23536.6;0;0.0 +6472800;0;0;0.0 +6476400;0;0;0.0 +6480000;0;0;0.0 +6483600;0;0;0.0 +6487200;0;0;0.0 +6490800;0;0;0.0 +6494400;0;379.2;0.0 +6498000;0;0;0.0 +6501600;0;0;0.0 +6505200;-20587.1;0;0.0 +6508800;-18770.5;0;0.0 +6512400;-3610.7;0;0.0 +6516000;-3749.3;0;0.0 +6519600;-6859.6;0;0.0 +6523200;-37219.6;0;0.0 +6526800;-37158.5;0;0.0 +6530400;-6579.1;0;0.0 +6534000;0;0;0.0 +6537600;0;0;0.0 +6541200;-10055.5;0;0.0 +6544800;-34044.8;0;0.0 +6548400;-38833.6;0;0.0 +6552000;-39240.3;0;0.0 +6555600;-8691.7;0;0.0 +6559200;0;0;0.0 +6562800;0;0;0.0 +6566400;0;0;0.0 +6570000;0;0;0.0 +6573600;0;0;0.0 +6577200;0;0;0.0 +6580800;0;10722.3;0.0 +6584400;0;0;0.0 +6588000;0;0;0.0 +6591600;-1296.5;378.4;0.0 +6595200;0;0;0.0 +6598800;-3041.2;0;0.0 +6602400;0;0;0.0 +6606000;-12833.9;0;0.0 +6609600;-12597.0;0;0.0 +6613200;-9799.2;0;0.0 +6616800;0;0;0.0 +6620400;0;0;0.0 +6624000;0;0;0.0 +6627600;-1077.9;0;0.0 +6631200;-11646.0;0;0.0 +6634800;-31265.4;0;0.0 +6638400;-18001.4;0;0.0 +6642000;-14020.1;0;0.0 +6645600;0;0;0.0 +6649200;0;0;0.0 +6652800;0;0;0.0 +6656400;0;0;0.0 +6660000;0;0;0.0 +6663600;0;0;0.0 +6667200;0;12163.3;0.0 +6670800;0;10649.1;0.0 +6674400;0;7213.6;0.0 +6678000;-3198.2;0;0.0 +6681600;0;0;0.0 +6685200;0;0;0.0 +6688800;0;0;0.0 +6692400;-3357.1;0;0.0 +6696000;-12936.5;0;0.0 +6699600;-11154.6;0;0.0 +6703200;0;0;0.0 +6706800;0;0;0.0 +6710400;0;0;0.0 +6714000;-2850.4;0;0.0 +6717600;-11925.6;0;0.0 +6721200;-14872.9;0;0.0 +6724800;-16410.6;0;0.0 +6728400;0;0;0.0 +6732000;0;1454.7;0.0 +6735600;0;4287.8;0.0 +6739200;0;0;0.0 +6742800;0;0;0.0 +6746400;0;0;0.0 +6750000;0;0;0.0 +6753600;0;19515.5;0.0 +6757200;0;15819.5;0.0 +6760800;0;10558.7;0.0 +6764400;0;3126.5;0.0 +6768000;0;175.5;0.0 +6771600;-2899.2;0;0.0 +6775200;0;0;0.0 +6778800;-14468.8;0;0.0 +6782400;-32901.4;0;0.0 +6786000;-22723.3;0;0.0 +6789600;-3366.7;0;0.0 +6793200;0;0;0.0 +6796800;0;0;0.0 +6800400;-12865.6;0;0.0 +6804000;-28219.6;0;0.0 +6807600;-26095.0;0;0.0 +6811200;-23745.2;0;0.0 +6814800;-4760.2;0;0.0 +6818400;0;0;0.0 +6822000;0;3228.3;0.0 +6825600;0;0;0.0 +6829200;0;0;0.0 +6832800;0;0;0.0 +6836400;0;0;0.0 +6840000;0;19137.4;0.0 +6843600;0;14751.8;0.0 +6847200;0;9805.6;0.0 +6850800;0;1906.5;0.0 +6854400;0;0;0.0 +6858000;-8220.4;0;0.0 +6861600;-110.6;0;0.0 +6865200;-10312.5;0;0.0 +6868800;-38432.7;0;0.0 +6872400;-30804.0;0;0.0 +6876000;-2056.5;0;0.0 +6879600;-5351.4;0;0.0 +6883200;-8470.2;0;0.0 +6886800;-4801.7;0;0.0 +6890400;-32088.3;0;0.0 +6894000;-19071.9;0;0.0 +6897600;-25726.9;0;0.0 +6901200;-6194.8;0;0.0 +6904800;0;0;0.0 +6908400;0;297.5;0.0 +6912000;0;0;0.0 +6915600;0;0;0.0 +6919200;0;0;0.0 +6922800;0;0;0.0 +6926400;0;9202.5;0.0 +6930000;0;0;0.0 +6933600;0;0;0.0 +6937200;-2704.4;0;0.0 +6940800;0;0;0.0 +6944400;-1029.8;0;0.0 +6948000;-24.3;0;0.0 +6951600;-5544.5;0;0.0 +6955200;-49649.2;0;0.0 +6958800;-54066.9;0;0.0 +6962400;-30221.0;0;0.0 +6966000;-4018.5;0;0.0 +6969600;-11724.8;0;0.0 +6973200;-23915.1;0;0.0 +6976800;-39157.2;0;0.0 +6980400;-33407.2;0;0.0 +6984000;-28381.0;0;0.0 +6987600;-6312.9;0;0.0 +6991200;0;0;0.0 +6994800;0;0;0.0 +6998400;0;0;0.0 +7002000;0;0;0.0 +7005600;0;0;0.0 +7009200;0;0;0.0 +7012800;0;5839.7;0.0 +7016400;0;0;0.0 +7020000;0;0;0.0 +7023600;-5055.5;0;0.0 +7027200;0;0;0.0 +7030800;-725.1;0;0.0 +7034400;0;0;0.0 +7038000;-16224.2;0;0.0 +7041600;-25070.7;0;0.0 +7045200;-26179.7;0;0.0 +7048800;0;0;0.0 +7052400;0;0;0.0 +7056000;0;0;0.0 +7059600;-2286.2;0;0.0 +7063200;-27546.3;0;0.0 +7066800;-25530.4;0;0.0 +7070400;-23693.0;0;0.0 +7074000;-4909.5;0;0.0 +7077600;0;0;0.0 +7081200;0;3211.2;0.0 +7084800;0;0;0.0 +7088400;0;0;0.0 +7092000;0;0;0.0 +7095600;0;0;0.0 +7099200;0;18999.2;0.0 +7102800;0;14640.9;0.0 +7106400;0;9814.6;0.0 +7110000;0;2160.5;0.0 +7113600;0;39.7;0.0 +7117200;-4502.1;0;0.0 +7120800;0;0;0.0 +7124400;-16723.3;0;0.0 +7128000;-37054.3;0;0.0 +7131600;-26187.0;0;0.0 +7135200;-4264.9;0;0.0 +7138800;0;0;0.0 +7142400;-1857.5;0;0.0 +7146000;-3010.5;0;0.0 +7149600;-7047.6;0;0.0 +7153200;-25451.8;0;0.0 +7156800;-23995.2;0;0.0 +7160400;-5379.9;0;0.0 +7164000;0;0;0.0 +7167600;0;3324.9;0.0 +7171200;0;0;0.0 +7174800;0;0;0.0 +7178400;0;0;0.0 +7182000;0;0;0.0 +7185600;0;19654.0;0.0 +7189200;0;15928.0;0.0 +7192800;0;12089.1;0.0 +7196400;0;575.8;0.0 +7200000;-1401.2;0;0.0 +7203600;0;0;0.0 +7207200;0;0;0.0 +7210800;-11462.8;0;0.0 +7214400;-13702.2;0;0.0 +7218000;-1181.7;0;0.0 +7221600;-784.5;0;0.0 +7225200;-2871.9;0;0.0 +7228800;-4286.1;0;0.0 +7232400;-5347.6;0;0.0 +7236000;-23369.1;0;0.0 +7239600;-11977.7;0;0.0 +7243200;-6520.0;0;0.0 +7246800;-13416.1;0;0.0 +7250400;0;0;0.0 +7254000;0;114.7;0.0 +7257600;0;0;0.0 +7261200;0;0;0.0 +7264800;0;0;0.0 +7268400;0;0;0.0 +7272000;0;14418.9;0.0 +7275600;0;11647.9;0.0 +7279200;0;7909.8;0.0 +7282800;-6883.1;0;0.0 +7286400;-5684.2;0;0.0 +7290000;0;168.9;0.0 +7293600;0;0;0.0 +7297200;-2585.7;0;0.0 +7300800;-14157.1;0;0.0 +7304400;-11837.2;0;0.0 +7308000;-522.9;0;0.0 +7311600;-1724.8;0;0.0 +7315200;-3864.4;0;0.0 +7318800;-6349.4;0;0.0 +7322400;-1054.8;0;0.0 +7326000;-5409.0;0;0.0 +7329600;-16773.5;0;0.0 +7333200;0;0;0.0 +7336800;0;1632.1;0.0 +7340400;0;4389.1;0.0 +7344000;0;0;0.0 +7347600;0;0;0.0 +7351200;0;0;0.0 +7354800;0;0;0.0 +7358400;0;20239.3;0.0 +7362000;0;15620.6;0.0 +7365600;0;11693.1;0.0 +7369200;0;2415.3;0.0 +7372800;0;372.2;0.0 +7376400;-2701.1;0;0.0 +7380000;0;0;0.0 +7383600;-15974.9;0;0.0 +7387200;-30773.5;0;0.0 +7390800;-22379.5;0;0.0 +7394400;-2340.5;0;0.0 +7398000;0;0;0.0 +7401600;-1140.7;0;0.0 +7405200;-12234.6;0;0.0 +7408800;-26762.1;0;0.0 +7412400;-25173.8;0;0.0 +7416000;-23715.6;0;0.0 +7419600;-4696.9;0;0.0 +7423200;0;0;0.0 +7426800;0;3450.1;0.0 +7430400;0;0;0.0 +7434000;0;0;0.0 +7437600;0;0;0.0 +7441200;0;0;0.0 +7444800;0;19001.0;0.0 +7448400;0;14646.5;0.0 +7452000;0;9278.3;0.0 +7455600;0;1409.5;0.0 +7459200;0;0;0.0 +7462800;-4790.4;0;0.0 +7466400;0;0;0.0 +7470000;-1699.6;0;0.0 +7473600;-40119.9;0;0.0 +7477200;-22504.6;0;0.0 +7480800;-1583.0;0;0.0 +7484400;-4258.8;0;0.0 +7488000;-5273.0;0;0.0 +7491600;-14711.2;0;0.0 +7495200;-38886.1;0;0.0 +7498800;-14972.3;0;0.0 +7502400;-23581.7;0;0.0 +7506000;-7604.4;0;0.0 +7509600;0;0;0.0 +7513200;0;440.7;0.0 +7516800;0;0;0.0 +7520400;0;0;0.0 +7524000;0;0;0.0 +7527600;0;0;0.0 +7531200;0;13556.3;0.0 +7534800;0;9996.7;0.0 +7538400;0;7304.5;0.0 +7542000;0;293.4;0.0 +7545600;0;0;0.0 +7549200;-6838.9;0;0.0 +7552800;0;0;0.0 +7556400;-2234.1;0;0.0 +7560000;-3831.0;0;0.0 +7563600;-13685.2;0;0.0 +7567200;-379.2;0;0.0 +7570800;-545.0;0;0.0 +7574400;-6244.8;0;0.0 +7578000;-9502.8;0;0.0 +7581600;-20006.6;0;0.0 +7585200;-40090.4;0;0.0 +7588800;-35829.1;0;0.0 +7592400;-12441.8;0;0.0 +7596000;0;0;0.0 +7599600;0;41.2;0.0 +7603200;0;0;0.0 +7606800;0;0;0.0 +7610400;0;0;0.0 +7614000;0;0;0.0 +7617600;0;7850.7;0.0 +7621200;0;0;0.0 +7624800;0;0;0.0 +7628400;-3733.0;0;0.0 +7632000;0;0;0.0 +7635600;-2414.7;0;0.0 +7639200;0;0;0.0 +7642800;-16844.1;0;0.0 +7646400;-37059.4;0;0.0 +7650000;-8927.5;0;0.0 +7653600;-1025.8;0;0.0 +7657200;0;0;0.0 +7660800;0;0;0.0 +7664400;-21059.1;0;0.0 +7668000;-8003.5;0;0.0 +7671600;-23900.2;0;0.0 +7675200;-25272.9;0;0.0 +7678800;-19247.4;0;0.0 +7682400;0;0;0.0 +7686000;0;0;0.0 +7689600;0;0;0.0 +7693200;0;0;0.0 +7696800;0;0;0.0 +7700400;0;0;0.0 +7704000;0;6265.7;0.0 +7707600;0;0;0.0 +7711200;0;0;0.0 +7714800;-11400.3;0;0.0 +7718400;-4705.3;0;0.0 +7722000;0;0;0.0 +7725600;0;0;0.0 +7729200;-19197.1;0;0.0 +7732800;-33674.7;0;0.0 +7736400;-31250.8;0;0.0 +7740000;-4282.8;0;0.0 +7743600;-19.6;0;0.0 +7747200;-264.7;0;0.0 +7750800;-4575.1;0;0.0 +7754400;-38845.6;0;0.0 +7758000;-36758.9;0;0.0 +7761600;-40221.0;0;0.0 +7765200;-8379.4;0;0.0 +7768800;0;0;0.0 +7772400;0;0;0.0 +7776000;0;0;0.0 +7779600;0;0;0.0 +7783200;0;0;0.0 +7786800;0;0;0.0 +7790400;0;8267.6;0.0 +7794000;0;7033.6;0.0 +7797600;0;5516.2;0.0 +7801200;-5481.9;0;0.0 +7804800;-774.1;0;0.0 +7808400;-6792.2;0;0.0 +7812000;-3147.8;0;0.0 +7815600;-4264.4;0;0.0 +7819200;-19742.7;0;0.0 +7822800;-16846.2;0;0.0 +7826400;-343.9;0;0.0 +7830000;-2723.1;0;0.0 +7833600;-789.2;0;0.0 +7837200;0;0;0.0 +7840800;-29467.8;0;0.0 +7844400;-23936.6;0;0.0 +7848000;-20654.2;0;0.0 +7851600;-24274.7;0;0.0 +7855200;-246.3;0;0.0 +7858800;0;0;0.0 +7862400;0;0;0.0 +7866000;0;0;0.0 +7869600;0;0;0.0 +7873200;0;0;0.0 +7876800;0;5948.6;0.0 +7880400;0;3920.1;0.0 +7884000;0;2122.6;0.0 +7887600;0;0;0.0 +7891200;0;0;0.0 +7894800;0;12107.9;0.0 +7898400;0;0;0.0 +7902000;0;0;0.0 +7905600;-3555.6;0;0.0 +7909200;-2698.4;0;0.0 +7912800;-1501.6;0;0.0 +7916400;-3829.6;0;0.0 +7920000;-6414.1;0;0.0 +7923600;-8603.4;0;0.0 +7927200;-15749.7;0;0.0 +7930800;-627.9;0;0.0 +7934400;-17227.9;0;0.0 +7938000;0;0;0.0 +7941600;0;0;0.0 +7945200;0;144.0;0.0 +7948800;0;0;0.0 +7952400;0;0;0.0 +7956000;0;0;0.0 +7959600;0;0;0.0 +7963200;0;10901.1;0.0 +7966800;0;8825.5;0.0 +7970400;0;5725.3;0.0 +7974000;0;153.3;0.0 +7977600;-637.1;0;0.0 +7981200;-2482.2;0;0.0 +7984800;-3832.8;0;0.0 +7988400;-16142.5;0;0.0 +7992000;-16752.4;0;0.0 +7995600;-28879.4;0;0.0 +7999200;-6322.3;0;0.0 +8002800;-3589.7;0;0.0 +8006400;-4560.6;0;0.0 +8010000;-14519.3;0;0.0 +8013600;-37774.0;0;0.0 +8017200;-44337.9;0;0.0 +8020800;-36846.0;0;0.0 +8024400;-8570.8;0;0.0 +8028000;0;0;0.0 +8031600;0;0;0.0 +8035200;0;0;0.0 +8038800;0;0;0.0 +8042400;0;0;0.0 +8046000;0;0;0.0 +8049600;0;4360.3;0.0 +8053200;0;0;0.0 +8056800;0;0;0.0 +8060400;-10760.5;0;0.0 +8064000;-4753.4;0;0.0 +8067600;0;0;0.0 +8071200;0;0;0.0 +8074800;-18064.4;0;0.0 +8078400;-35710.1;0;0.0 +8082000;-16522.1;0;0.0 +8085600;-11622.6;0;0.0 +8089200;0;0;0.0 +8092800;-752.3;0;0.0 +8096400;-12953.1;0;0.0 +8100000;-29395.4;0;0.0 +8103600;-26044.6;0;0.0 +8107200;-24278.6;0;0.0 +8110800;-5059.0;0;0.0 +8114400;0;0;0.0 +8118000;0;1905.8;0.0 +8121600;0;0;0.0 +8125200;0;0;0.0 +8128800;0;0;0.0 +8132400;0;0;0.0 +8136000;0;13522.8;0.0 +8139600;0;10465.1;0.0 +8143200;0;7124.7;0.0 +8146800;0;81.5;0.0 +8150400;-908.1;0;0.0 +8154000;-3511.2;0;0.0 +8157600;-4353.2;0;0.0 +8161200;-3698.5;0;0.0 +8164800;-31427.1;0;0.0 +8168400;-23893.5;0;0.0 +8172000;-3358.8;0;0.0 +8175600;-6055.0;0;0.0 +8179200;-8693.3;0;0.0 +8182800;-1421.8;0;0.0 +8186400;-37500.0;0;0.0 +8190000;-34026.5;0;0.0 +8193600;-33658.7;0;0.0 +8197200;-8811.1;0;0.0 +8200800;0;0;0.0 +8204400;0;329.1;0.0 +8208000;0;0;0.0 +8211600;0;0;0.0 +8215200;0;0;0.0 +8218800;0;0;0.0 +8222400;0;10424.2;0.0 +8226000;0;7518.7;0.0 +8229600;0;4654.2;0.0 +8233200;0;0;0.0 +8236800;-542.3;0;0.0 +8240400;-2933.3;0;0.0 +8244000;-3291.6;0;0.0 +8247600;-11241.2;0;0.0 +8251200;-44805.7;0;0.0 +8254800;-34550.2;0;0.0 +8258400;-7621.4;0;0.0 +8262000;-3727.4;0;0.0 +8265600;-5895.9;0;0.0 +8269200;-37916.8;0;0.0 +8272800;-31976.5;0;0.0 +8276400;-38677.1;0;0.0 +8280000;-20092.4;0;0.0 +8283600;-13699.2;0;0.0 +8287200;0;0;0.0 +8290800;0;0;0.0 +8294400;0;0;0.0 +8298000;0;0;0.0 +8301600;0;0;0.0 +8305200;0;0;0.0 +8308800;0;5452.9;0.0 +8312400;0;0;0.0 +8316000;0;0;0.0 +8319600;-4184.6;0;0.0 +8323200;-131.3;0;0.0 +8326800;-4350.2;0;0.0 +8330400;-7183.0;0;0.0 +8334000;-36177.9;0;0.0 +8337600;-69382.9;0;0.0 +8341200;-69452.1;0;0.0 +8344800;-53235.3;0;0.0 +8348400;-37847.4;0;0.0 +8352000;-42939.2;0;0.0 +8355600;-57517.9;0;0.0 +8359200;-75450.8;0;0.0 +8362800;-73313.8;0;0.0 +8366400;-70519.0;0;0.0 +8370000;-42489.6;0;0.0 +8373600;-5412.1;0;0.0 +8377200;0;0;0.0 +8380800;0;0;0.0 +8384400;0;0;0.0 +8388000;0;0;0.0 +8391600;0;0;0.0 +8395200;0;0;0.0 +8398800;0;0;0.0 +8402400;0;0;0.0 +8406000;-23083.7;0;0.0 +8409600;-13398.0;0;0.0 +8413200;-21317.5;0;0.0 +8416800;-27925.5;0;0.0 +8420400;-53430.1;0;0.0 +8424000;-61722.1;0;0.0 +8427600;-64407.2;0;0.0 +8431200;-56713.8;0;0.0 +8434800;-53380.2;0;0.0 +8438400;-52032.5;0;0.0 +8442000;-44751.0;0;0.0 +8445600;-68604.3;0;0.0 +8449200;-82672.3;0;0.0 +8452800;-64400.7;0;0.0 +8456400;-55255.6;0;0.0 +8460000;-17639.4;0;0.0 +8463600;0;0;0.0 +8467200;0;0;0.0 +8470800;0;0;0.0 +8474400;0;0;0.0 +8478000;0;0;0.0 +8481600;0;0;0.0 +8485200;0;0;0.0 +8488800;-4529.2;0;0.0 +8492400;0;0;0.0 +8496000;0;0;0.0 +8499600;0;245.3;0.0 +8503200;-633.2;0;0.0 +8506800;-15034.0;0;0.0 +8510400;-37659.8;0;0.0 +8514000;-41382.8;0;0.0 +8517600;-33084.2;0;0.0 +8521200;-21619.9;0;0.0 +8524800;-33033.9;0;0.0 +8528400;-25378.1;0;0.0 +8532000;-6281.3;0;0.0 +8535600;-10823.4;0;0.0 +8539200;-7562.5;0;0.0 +8542800;-5604.1;0;0.0 +8546400;0;0;0.0 +8550000;0;0;0.0 +8553600;0;0;0.0 +8557200;0;0;0.0 +8560800;0;0;0.0 +8564400;0;0;0.0 +8568000;0;5653.1;0.0 +8571600;0;0;0.0 +8575200;0;0;0.0 +8578800;-7285.4;0;0.0 +8582400;0;0;0.0 +8586000;-3348.6;0;0.0 +8589600;0;0;0.0 +8593200;-19518.6;0;0.0 +8596800;-39223.9;0;0.0 +8600400;-4985.4;0;0.0 +8604000;-19905.9;0;0.0 +8607600;0;0;0.0 +8611200;-894.7;0;0.0 +8614800;-5067.2;0;0.0 +8618400;-20422.6;0;0.0 +8622000;-30653.9;0;0.0 +8625600;-27619.1;0;0.0 +8629200;-6920.8;0;0.0 +8632800;0;0;0.0 +8636400;0;400.8;0.0 +8640000;0;0;0.0 +8643600;0;0;0.0 +8647200;0;0;0.0 +8650800;0;0;0.0 +8654400;0;11346.9;0.0 +8658000;0;0;0.0 +8661600;0;0;0.0 +8665200;-1428.0;52.2;0.0 +8668800;0;0;0.0 +8672400;-4165.2;0;0.0 +8676000;0;0;0.0 +8679600;-16604.4;0;0.0 +8683200;-19885.6;0;0.0 +8686800;-30530.5;0;0.0 +8690400;-14506.6;0;0.0 +8694000;-4902.9;0;0.0 +8697600;-17189.3;0;0.0 +8701200;-27520.7;0;0.0 +8704800;-36269.2;0;0.0 +8708400;-45272.0;0;0.0 +8712000;-44345.0;0;0.0 +8715600;-8772.4;0;0.0 +8719200;0;0;0.0 +8722800;0;0;0.0 +8726400;0;0;0.0 +8730000;0;0;0.0 +8733600;0;0;0.0 +8737200;0;0;0.0 +8740800;0;5963.4;0.0 +8744400;0;0;0.0 +8748000;0;0;0.0 +8751600;-5873.0;0;0.0 +8755200;-356.3;0;0.0 +8758800;0;0;0.0 +8762400;0;0;0.0 +8766000;-18191.9;0;0.0 +8769600;-25576.3;0;0.0 +8773200;-32352.3;0;0.0 +8776800;-712.5;0;0.0 +8780400;-105.0;0;0.0 +8784000;-3512.2;0;0.0 +8787600;-19203.7;0;0.0 +8791200;-33260.8;0;0.0 +8794800;-40715.9;0;0.0 +8798400;-40163.0;0;0.0 +8802000;-6242.1;0;0.0 +8805600;0;0;0.0 +8809200;0;118.3;0.0 +8812800;0;0;0.0 +8816400;0;0;0.0 +8820000;0;0;0.0 +8823600;0;0;0.0 +8827200;0;9951.9;0.0 +8830800;0;0;0.0 +8834400;0;0;0.0 +8838000;0;521.6;0.0 +8841600;-417.7;0;0.0 +8845200;-6202.8;0;0.0 +8848800;-17.7;0;0.0 +8852400;-11078.6;0;0.0 +8856000;-22901.1;0;0.0 +8859600;-27220.3;0;0.0 +8863200;-686.5;0;0.0 +8866800;0;0;0.0 +8870400;-2691.1;0;0.0 +8874000;-11293.2;0;0.0 +8877600;-19663.0;0;0.0 +8881200;-38354.0;0;0.0 +8884800;-35853.6;0;0.0 +8888400;-11478.4;0;0.0 +8892000;0;0;0.0 +8895600;0;215.0;0.0 +8899200;0;0;0.0 +8902800;0;0;0.0 +8906400;0;0;0.0 +8910000;0;0;0.0 +8913600;0;9591.7;0.0 +8917200;0;0;0.0 +8920800;0;0;0.0 +8924400;-2727.3;108.0;0.0 +8928000;0;0;0.0 +8931600;-3486.2;0;0.0 +8935200;0;0;0.0 +8938800;-15482.0;0;0.0 +8942400;-35121.5;0;0.0 +8946000;-23681.1;0;0.0 +8949600;0;0;0.0 +8953200;0;0;0.0 +8956800;-1297.6;0;0.0 +8960400;-895.2;0;0.0 +8964000;-35345.7;0;0.0 +8967600;-36736.7;0;0.0 +8971200;-39551.6;0;0.0 +8974800;-19795.9;0;0.0 +8978400;0;0;0.0 +8982000;0;0;0.0 +8985600;0;0;0.0 +8989200;0;0;0.0 +8992800;0;0;0.0 +8996400;0;0;0.0 +9000000;0;9203.1;0.0 +9003600;0;0;0.0 +9007200;0;0;0.0 +9010800;-1791.3;18.1;0.0 +9014400;0;0;0.0 +9018000;-1803.6;0;0.0 +9021600;0;0;0.0 +9025200;-13815.5;0;0.0 +9028800;-13973.1;0;0.0 +9032400;-12763.1;0;0.0 +9036000;-1531.3;0;0.0 +9039600;0;0;0.0 +9043200;-1556.7;0;0.0 +9046800;-2034.4;0;0.0 +9050400;-24513.4;0;0.0 +9054000;-34591.0;0;0.0 +9057600;-20242.9;0;0.0 +9061200;-14439.5;0;0.0 +9064800;0;0;0.0 +9068400;0;0;0.0 +9072000;0;0;0.0 +9075600;0;0;0.0 +9079200;0;0;0.0 +9082800;0;0;0.0 +9086400;0;18025.9;0.0 +9090000;0;13257.3;0.0 +9093600;0;9708.0;0.0 +9097200;0;649.7;0.0 +9100800;0;0;0.0 +9104400;0;269.0;0.0 +9108000;0;0;0.0 +9111600;-2338.8;0;0.0 +9115200;-11258.8;0;0.0 +9118800;-10336.2;0;0.0 +9122400;0;0;0.0 +9126000;0;0;0.0 +9129600;-228.3;0;0.0 +9133200;-89.1;0;0.0 +9136800;-12196.5;0;0.0 +9140400;-5026.1;0;0.0 +9144000;-16848.0;0;0.0 +9147600;0;0;0.0 +9151200;0;459.9;0.0 +9154800;0;2934.3;0.0 +9158400;0;0;0.0 +9162000;0;0;0.0 +9165600;0;0;0.0 +9169200;0;0;0.0 +9172800;0;17395.8;0.0 +9176400;0;13183.6;0.0 +9180000;0;9803.5;0.0 +9183600;0;543.4;0.0 +9187200;-694.3;0;0.0 +9190800;-6380.4;0;0.0 +9194400;-136.3;0;0.0 +9198000;-10088.2;0;0.0 +9201600;-17042.3;0;0.0 +9205200;-15622.5;0;0.0 +9208800;-2551.3;0;0.0 +9212400;-3914.0;0;0.0 +9216000;-1506.9;0;0.0 +9219600;-10325.3;0;0.0 +9223200;-37413.2;0;0.0 +9226800;-19800.7;0;0.0 +9230400;-29938.9;0;0.0 +9234000;-9229.7;0;0.0 +9237600;0;0;0.0 +9241200;0;242.6;0.0 +9244800;0;0;0.0 +9248400;0;0;0.0 +9252000;0;0;0.0 +9255600;0;0;0.0 +9259200;0;8793.9;0.0 +9262800;0;0;0.0 +9266400;0;0;0.0 +9270000;-2631.0;426.1;0.0 +9273600;0;145.7;0.0 +9277200;0;0;0.0 +9280800;0;0;0.0 +9284400;-19171.5;0;0.0 +9288000;-35268.8;0;0.0 +9291600;-30757.6;0;0.0 +9295200;-7487.8;0;0.0 +9298800;-4072.1;0;0.0 +9302400;-7673.8;0;0.0 +9306000;-28432.0;0;0.0 +9309600;-32777.6;0;0.0 +9313200;-13094.1;0;0.0 +9316800;-33333.5;0;0.0 +9320400;-11190.9;0;0.0 +9324000;0;0;0.0 +9327600;0;0;0.0 +9331200;0;0;0.0 +9334800;0;0;0.0 +9338400;0;0;0.0 +9342000;0;0;0.0 +9345600;0;7548.7;0.0 +9349200;0;0;0.0 +9352800;0;0;0.0 +9356400;-1636.7;8.4;0.0 +9360000;-922.7;0;0.0 +9363600;-4844.5;0;0.0 +9367200;-4271.2;0;0.0 +9370800;-12166.5;0;0.0 +9374400;-48076.1;0;0.0 +9378000;-56333.3;0;0.0 +9381600;-42091.2;0;0.0 +9385200;-33078.5;0;0.0 +9388800;-39543.6;0;0.0 +9392400;-60720.7;0;0.0 +9396000;-61553.1;0;0.0 +9399600;-48891.6;0;0.0 +9403200;-51295.0;0;0.0 +9406800;-13821.8;0;0.0 +9410400;0;0;0.0 +9414000;0;0;0.0 +9417600;0;0;0.0 +9421200;0;0;0.0 +9424800;0;0;0.0 +9428400;0;0;0.0 +9432000;0;650.7;0.0 +9435600;0;0;0.0 +9439200;0;0;0.0 +9442800;-16352.2;0;0.0 +9446400;-2807.3;0;0.0 +9450000;-11074.2;0;0.0 +9453600;-7671.0;0;0.0 +9457200;-29860.5;0;0.0 +9460800;-64213.4;0;0.0 +9464400;-53884.3;0;0.0 +9468000;-20442.5;0;0.0 +9471600;-19267.6;0;0.0 +9475200;-23919.8;0;0.0 +9478800;-43693.8;0;0.0 +9482400;-51879.6;0;0.0 +9486000;-44296.3;0;0.0 +9489600;-30399.6;0;0.0 +9493200;-20987.2;0;0.0 +9496800;0;0;0.0 +9500400;0;0;0.0 +9504000;0;0;0.0 +9507600;0;0;0.0 +9511200;0;0;0.0 +9514800;0;0;0.0 +9518400;0;5800.9;0.0 +9522000;0;0;0.0 +9525600;0;0;0.0 +9529200;-8503.5;0;0.0 +9532800;-826.7;0;0.0 +9536400;-4661.0;0;0.0 +9540000;-4330.4;0;0.0 +9543600;-19208.3;0;0.0 +9547200;-60489.4;0;0.0 +9550800;-61045.0;0;0.0 +9554400;-27692.4;0;0.0 +9558000;-21717.7;0;0.0 +9561600;-10041.0;0;0.0 +9565200;-38882.7;0;0.0 +9568800;-35755.1;0;0.0 +9572400;-40363.2;0;0.0 +9576000;-27962.1;0;0.0 +9579600;-18819.8;0;0.0 +9583200;0;0;0.0 +9586800;0;0;0.0 +9590400;0;0;0.0 +9594000;0;0;0.0 +9597600;0;0;0.0 +9601200;0;0;0.0 +9604800;0;6161.7;0.0 +9608400;0;0;0.0 +9612000;0;0;0.0 +9615600;-4684.9;0;0.0 +9619200;-3333.3;0;0.0 +9622800;-7017.6;0;0.0 +9626400;-7055.2;0;0.0 +9630000;-15308.3;0;0.0 +9633600;-21461.3;0;0.0 +9637200;-32531.6;0;0.0 +9640800;-27543.7;0;0.0 +9644400;-21373.5;0;0.0 +9648000;-37703.0;0;0.0 +9651600;-22072.1;0;0.0 +9655200;-42453.6;0;0.0 +9658800;-45531.3;0;0.0 +9662400;-36331.6;0;0.0 +9666000;-20683.3;0;0.0 +9669600;-9771.7;0;0.0 +9673200;0;0;0.0 +9676800;0;0;0.0 +9680400;0;0;0.0 +9684000;0;0;0.0 +9687600;0;0;0.0 +9691200;0;5340.7;0.0 +9694800;0;3513.3;0.0 +9698400;0;1887.7;0.0 +9702000;0;0;0.0 +9705600;0;0;0.0 +9709200;0;2512.7;0.0 +9712800;-1802.8;0;0.0 +9716400;-3532.7;0;0.0 +9720000;-27995.5;0;0.0 +9723600;-40325.3;0;0.0 +9727200;-22428.6;0;0.0 +9730800;-8575.1;0;0.0 +9734400;-15968.4;0;0.0 +9738000;-707.4;0;0.0 +9741600;-12294.8;0;0.0 +9745200;-27924.1;0;0.0 +9748800;-16368.2;0;0.0 +9752400;-1928.5;0;0.0 +9756000;0;0;0.0 +9759600;0;0;0.0 +9763200;0;0;0.0 +9766800;0;0;0.0 +9770400;0;0;0.0 +9774000;0;0;0.0 +9777600;0;7149.5;0.0 +9781200;0;4557.4;0.0 +9784800;0;2077.8;0.0 +9788400;-2015.0;0;0.0 +9792000;-4002.0;0;0.0 +9795600;-6822.3;0;0.0 +9799200;-6323.5;0;0.0 +9802800;-7122.9;0;0.0 +9806400;-46760.6;0;0.0 +9810000;-32509.4;0;0.0 +9813600;-18756.3;0;0.0 +9817200;-5226.3;0;0.0 +9820800;-8499.1;0;0.0 +9824400;-30722.7;0;0.0 +9828000;-34341.4;0;0.0 +9831600;-27516.6;0;0.0 +9835200;-37003.9;0;0.0 +9838800;-16162.8;0;0.0 +9842400;0;0;0.0 +9846000;0;0;0.0 +9849600;0;0;0.0 +9853200;0;0;0.0 +9856800;0;0;0.0 +9860400;0;0;0.0 +9864000;0;3306.0;0.0 +9867600;0;0;0.0 +9871200;0;0;0.0 +9874800;-13304.1;0;0.0 +9878400;-5695.9;0;0.0 +9882000;0;0;0.0 +9885600;0;0;0.0 +9889200;-21964.8;0;0.0 +9892800;-33128.0;0;0.0 +9896400;-22002.1;0;0.0 +9900000;-16793.1;0;0.0 +9903600;-3758.2;0;0.0 +9907200;-7756.2;0;0.0 +9910800;-20671.4;0;0.0 +9914400;-39973.7;0;0.0 +9918000;-36181.0;0;0.0 +9921600;-36708.4;0;0.0 +9925200;-13761.6;0;0.0 +9928800;0;0;0.0 +9932400;0;0;0.0 +9936000;0;0;0.0 +9939600;0;0;0.0 +9943200;0;0;0.0 +9946800;0;0;0.0 +9950400;0;7288.2;0.0 +9954000;0;0;0.0 +9957600;0;0;0.0 +9961200;-5497.8;0;0.0 +9964800;-1570.2;0;0.0 +9968400;-5312.1;0;0.0 +9972000;-5792.8;0;0.0 +9975600;-7887.2;0;0.0 +9979200;-51955.1;0;0.0 +9982800;-59428.1;0;0.0 +9986400;-37382.9;0;0.0 +9990000;-17446.3;0;0.0 +9993600;-16618.0;0;0.0 +9997200;-22299.3;0;0.0 +10000800;-38890.7;0;0.0 +10004400;-42453.1;0;0.0 +10008000;-40900.3;0;0.0 +10011600;-3029.5;0;0.0 +10015200;0;0;0.0 +10018800;0;0;0.0 +10022400;0;0;0.0 +10026000;0;0;0.0 +10029600;0;0;0.0 +10033200;0;0;0.0 +10036800;0;4563.0;0.0 +10040400;0;0;0.0 +10044000;0;0;0.0 +10047600;-15343.4;0;0.0 +10051200;-6559.7;0;0.0 +10054800;-2674.0;0;0.0 +10058400;-205.5;0;0.0 +10062000;-17628.6;0;0.0 +10065600;-46185.3;0;0.0 +10069200;-35651.2;0;0.0 +10072800;-8096.1;0;0.0 +10076400;-2068.7;0;0.0 +10080000;0;0;0.0 +10083600;-16229.8;0;0.0 +10087200;-28671.4;0;0.0 +10090800;-19002.5;0;0.0 +10094400;-16490.9;0;0.0 +10098000;-9729.4;0;0.0 +10101600;0;0;0.0 +10105200;0;0;0.0 +10108800;0;0;0.0 +10112400;0;0;0.0 +10116000;0;0;0.0 +10119600;0;0;0.0 +10123200;0;2839.4;0.0 +10126800;0;0;0.0 +10130400;0;0;0.0 +10134000;-14583.8;0;0.0 +10137600;-13876.2;0;0.0 +10141200;-1791.9;0;0.0 +10144800;-1811.8;0;0.0 +10148400;-24118.7;0;0.0 +10152000;-40125.7;0;0.0 +10155600;-9215.5;0;0.0 +10159200;-297.3;0;0.0 +10162800;-5776.5;0;0.0 +10166400;-6298.5;0;0.0 +10170000;-21793.2;0;0.0 +10173600;-41392.4;0;0.0 +10177200;-40120.0;0;0.0 +10180800;-20527.7;0;0.0 +10184400;-22941.6;0;0.0 +10188000;0;0;0.0 +10191600;0;0;0.0 +10195200;0;0;0.0 +10198800;0;0;0.0 +10202400;0;0;0.0 +10206000;0;0;0.0 +10209600;0;4500.4;0.0 +10213200;0;0;0.0 +10216800;0;0;0.0 +10220400;-17086.7;0;0.0 +10224000;-16503.1;0;0.0 +10227600;-488.9;0;0.0 +10231200;0;0;0.0 +10234800;-17103.1;0;0.0 +10238400;-23432.5;0;0.0 +10242000;-24198.9;0;0.0 +10245600;-7190.9;0;0.0 +10249200;-3868.7;0;0.0 +10252800;-9449.2;0;0.0 +10256400;-5578.0;0;0.0 +10260000;-29744.2;0;0.0 +10263600;-47502.5;0;0.0 +10267200;-36868.7;0;0.0 +10270800;-19762.5;0;0.0 +10274400;-14796.7;0;0.0 +10278000;0;0;0.0 +10281600;0;0;0.0 +10285200;0;0;0.0 +10288800;0;0;0.0 +10292400;0;0;0.0 +10296000;0;2229.1;0.0 +10299600;0;732.7;0.0 +10303200;0;78.2;0.0 +10306800;0;0;0.0 +10310400;0;0;0.0 +10314000;0;3842.3;0.0 +10317600;0;0;0.0 +10321200;-26.0;0;0.0 +10324800;-15885.9;0;0.0 +10328400;-16030.2;0;0.0 +10332000;-17506.5;0;0.0 +10335600;-4783.1;0;0.0 +10339200;-14836.2;0;0.0 +10342800;-22264.6;0;0.0 +10346400;-15667.3;0;0.0 +10350000;-24518.8;0;0.0 +10353600;-22849.7;0;0.0 +10357200;-4191.5;0;0.0 +10360800;0;0;0.0 +10364400;0;0;0.0 +10368000;0;0;0.0 +10371600;0;0;0.0 +10375200;0;0;0.0 +10378800;0;0;0.0 +10382400;0;4836.4;0.0 +10386000;0;2934.1;0.0 +10389600;0;812.1;0.0 +10393200;-1714.7;0;0.0 +10396800;-3301.8;0;0.0 +10400400;-4898.5;0;0.0 +10404000;-4311.2;0;0.0 +10407600;-14576.5;0;0.0 +10411200;-47087.4;0;0.0 +10414800;-51499.6;0;0.0 +10418400;-20444.7;0;0.0 +10422000;-2606.1;0;0.0 +10425600;-9308.7;0;0.0 +10429200;-36372.3;0;0.0 +10432800;-54256.0;0;0.0 +10436400;-50312.2;0;0.0 +10440000;-37375.8;0;0.0 +10443600;-13568.5;0;0.0 +10447200;0;0;0.0 +10450800;0;0;0.0 +10454400;0;0;0.0 +10458000;0;0;0.0 +10461600;0;0;0.0 +10465200;0;0;0.0 +10468800;0;3437.9;0.0 +10472400;0;0;0.0 +10476000;0;0;0.0 +10479600;-14951.5;0;0.0 +10483200;-14388.1;0;0.0 +10486800;-12005.8;0;0.0 +10490400;-11488.4;0;0.0 +10494000;-36845.8;0;0.0 +10497600;-65889.6;0;0.0 +10501200;-66316.8;0;0.0 +10504800;-35970.0;0;0.0 +10508400;-14893.1;0;0.0 +10512000;-23063.4;0;0.0 +10515600;-28905.2;0;0.0 +10519200;-62474.4;0;0.0 +10522800;-46455.9;0;0.0 +10526400;-44819.1;0;0.0 +10530000;-11916.1;0;0.0 +10533600;0;0;0.0 +10537200;0;0;0.0 +10540800;0;0;0.0 +10544400;0;0;0.0 +10548000;0;0;0.0 +10551600;0;0;0.0 +10555200;0;4137.1;0.0 +10558800;0;0;0.0 +10562400;0;0;0.0 +10566000;-14879.6;0;0.0 +10569600;-1626.8;0;0.0 +10573200;-1425.6;0;0.0 +10576800;0;0;0.0 +10580400;-16465.7;0;0.0 +10584000;-46466.9;0;0.0 +10587600;-58136.0;0;0.0 +10591200;-43213.6;0;0.0 +10594800;-20513.7;0;0.0 +10598400;-25526.5;0;0.0 +10602000;-41561.0;0;0.0 +10605600;-63715.9;0;0.0 +10609200;-54303.4;0;0.0 +10612800;-42308.2;0;0.0 +10616400;-16713.2;0;0.0 +10620000;0;0;0.0 +10623600;0;0;0.0 +10627200;0;0;0.0 +10630800;0;0;0.0 +10634400;0;0;0.0 +10638000;0;0;0.0 +10641600;0;4080.8;0.0 +10645200;0;0;0.0 +10648800;0;0;0.0 +10652400;-4494.2;0;0.0 +10656000;-2374.4;0;0.0 +10659600;-4340.6;0;0.0 +10663200;-4468.2;0;0.0 +10666800;-27505.9;0;0.0 +10670400;-62065.2;0;0.0 +10674000;-64539.3;0;0.0 +10677600;-47139.7;0;0.0 +10681200;-27987.8;0;0.0 +10684800;-35781.0;0;0.0 +10688400;-57213.4;0;0.0 +10692000;-57986.8;0;0.0 +10695600;-54923.0;0;0.0 +10699200;-45120.4;0;0.0 +10702800;-17996.2;0;0.0 +10706400;0;0;0.0 +10710000;0;0;0.0 +10713600;0;0;0.0 +10717200;0;0;0.0 +10720800;0;0;0.0 +10724400;0;0;0.0 +10728000;0;499.2;0.0 +10731600;0;0;0.0 +10735200;0;0;0.0 +10738800;-19284.9;0;0.0 +10742400;-5878.1;0;0.0 +10746000;-20490.3;0;0.0 +10749600;-16446.1;0;0.0 +10753200;-40806.0;0;0.0 +10756800;-70391.9;0;0.0 +10760400;-72104.6;0;0.0 +10764000;-45547.9;0;0.0 +10767600;-28097.3;0;0.0 +10771200;-37987.7;0;0.0 +10774800;-50699.1;0;0.0 +10778400;-53498.0;0;0.0 +10782000;-46598.5;0;0.0 +10785600;-46831.3;0;0.0 +10789200;-16910.9;0;0.0 +10792800;0;0;0.0 +10796400;0;0;0.0 +10800000;0;0;0.0 +10803600;0;0;0.0 +10807200;0;0;0.0 +10810800;0;0;0.0 +10814400;0;2038.6;0.0 +10818000;0;0;0.0 +10821600;0;0;0.0 +10825200;-7190.2;0;0.0 +10828800;-6169.2;0;0.0 +10832400;-6385.4;0;0.0 +10836000;-4179.9;0;0.0 +10839600;-24074.5;0;0.0 +10843200;-23717.3;0;0.0 +10846800;-16090.1;0;0.0 +10850400;-5616.0;0;0.0 +10854000;-5920.0;0;0.0 +10857600;-12538.2;0;0.0 +10861200;-17270.8;0;0.0 +10864800;-41579.3;0;0.0 +10868400;-29848.6;0;0.0 +10872000;-19503.6;0;0.0 +10875600;-26398.3;0;0.0 +10879200;-8900.0;0;0.0 +10882800;0;0;0.0 +10886400;0;0;0.0 +10890000;0;0;0.0 +10893600;0;0;0.0 +10897200;0;0;0.0 +10900800;0;4817.8;0.0 +10904400;0;3394.1;0.0 +10908000;0;1042.2;0.0 +10911600;0;0;0.0 +10915200;0;0;0.0 +10918800;0;1770.6;0.0 +10922400;-1121.4;0;0.0 +10926000;-3824.4;0;0.0 +10929600;-21994.2;0;0.0 +10933200;-27341.5;0;0.0 +10936800;-19957.3;0;0.0 +10940400;-7557.4;0;0.0 +10944000;-10966.9;0;0.0 +10947600;-21785.7;0;0.0 +10951200;-31649.3;0;0.0 +10954800;-18307.0;0;0.0 +10958400;-13216.2;0;0.0 +10962000;0;0;0.0 +10965600;0;0;0.0 +10969200;0;0;0.0 +10972800;0;0;0.0 +10976400;0;0;0.0 +10980000;0;0;0.0 +10983600;0;0;0.0 +10987200;0;5804.2;0.0 +10990800;0;0;0.0 +10994400;0;0;0.0 +10998000;-1207.8;0;0.0 +11001600;-2866.0;0;0.0 +11005200;-4988.6;0;0.0 +11008800;-4501.7;0;0.0 +11012400;-7279.3;0;0.0 +11016000;-36748.8;0;0.0 +11019600;-46687.6;0;0.0 +11023200;-28651.4;0;0.0 +11026800;-9589.8;0;0.0 +11030400;-19165.3;0;0.0 +11034000;-27823.2;0;0.0 +11037600;-52085.1;0;0.0 +11041200;-30705.9;0;0.0 +11044800;-36457.1;0;0.0 +11048400;-18855.6;0;0.0 +11052000;0;0;0.0 +11055600;0;0;0.0 +11059200;0;0;0.0 +11062800;0;0;0.0 +11066400;0;0;0.0 +11070000;0;0;0.0 +11073600;0;1295.7;0.0 +11077200;0;0;0.0 +11080800;0;0;0.0 +11084400;-12941.8;0;0.0 +11088000;-1808.9;0;0.0 +11091600;-2241.4;0;0.0 +11095200;-1025.2;0;0.0 +11098800;-32360.0;0;0.0 +11102400;-63777.0;0;0.0 +11106000;-66520.7;0;0.0 +11109600;-46655.3;0;0.0 +11113200;-35494.5;0;0.0 +11116800;-41753.2;0;0.0 +11120400;-57610.8;0;0.0 +11124000;-75013.1;0;0.0 +11127600;-73316.4;0;0.0 +11131200;-70854.3;0;0.0 +11134800;-45259.2;0;0.0 +11138400;-4537.3;0;0.0 +11142000;0;0;0.0 +11145600;0;0;0.0 +11149200;0;0;0.0 +11152800;0;0;0.0 +11156400;0;0;0.0 +11160000;0;0;0.0 +11163600;0;0;0.0 +11167200;0;0;0.0 +11170800;-25571.1;0;0.0 +11174400;-10206.3;0;0.0 +11178000;-28894.0;0;0.0 +11181600;-35080.5;0;0.0 +11185200;-67802.7;0;0.0 +11188800;-89946.7;0;0.0 +11192400;-87189.9;0;0.0 +11196000;-68678.1;0;0.0 +11199600;-57672.3;0;0.0 +11203200;-61819.5;0;0.0 +11206800;-74365.2;0;0.0 +11210400;-83386.1;0;0.0 +11214000;-77410.1;0;0.0 +11217600;-75367.4;0;0.0 +11221200;-48144.4;0;0.0 +11224800;-13342.9;0;0.0 +11228400;0;0;0.0 +11232000;0;0;0.0 +11235600;0;0;0.0 +11239200;0;0;0.0 +11242800;0;0;0.0 +11246400;0;0;0.0 +11250000;0;0;0.0 +11253600;0;0;0.0 +11257200;-29524.4;0;0.0 +11260800;-5653.3;0;0.0 +11264400;-8035.7;0;0.0 +11268000;-520.7;0;0.0 +11271600;-23028.0;0;0.0 +11275200;-39604.3;0;0.0 +11278800;-34865.9;0;0.0 +11282400;-467.6;0;0.0 +11286000;-661.1;0;0.0 +11289600;-4096.4;0;0.0 +11293200;-23390.7;0;0.0 +11296800;-41361.0;0;0.0 +11300400;-27580.6;0;0.0 +11304000;-24107.3;0;0.0 +11307600;-7313.0;0;0.0 +11311200;0;0;0.0 +11314800;0;0;0.0 +11318400;0;0;0.0 +11322000;0;0;0.0 +11325600;0;0;0.0 +11329200;0;0;0.0 +11332800;0;3410.3;0.0 +11336400;0;0;0.0 +11340000;0;0;0.0 +11343600;-15882.4;0;0.0 +11347200;-14968.9;0;0.0 +11350800;-3460.1;0;0.0 +11354400;0;0;0.0 +11358000;-17684.7;0;0.0 +11361600;-36736.1;0;0.0 +11365200;-34162.0;0;0.0 +11368800;-1451.4;0;0.0 +11372400;-3645.3;0;0.0 +11376000;-9909.5;0;0.0 +11379600;-39474.0;0;0.0 +11383200;-65707.4;0;0.0 +11386800;-42926.9;0;0.0 +11390400;-39959.7;0;0.0 +11394000;-19115.8;0;0.0 +11397600;0;0;0.0 +11401200;0;0;0.0 +11404800;0;0;0.0 +11408400;0;0;0.0 +11412000;0;0;0.0 +11415600;0;0;0.0 +11419200;0;2517.9;0.0 +11422800;0;0;0.0 +11426400;0;0;0.0 +11430000;-6808.4;0;0.0 +11433600;-5908.4;0;0.0 +11437200;-19688.8;0;0.0 +11440800;-15079.7;0;0.0 +11444400;-51038.7;0;0.0 +11448000;-60348.8;0;0.0 +11451600;-65397.7;0;0.0 +11455200;-58589.2;0;0.0 +11458800;-57964.3;0;0.0 +11462400;-64095.1;0;0.0 +11466000;-65513.1;0;0.0 +11469600;-83998.5;0;0.0 +11473200;-90757.4;0;0.0 +11476800;-73961.4;0;0.0 +11480400;-64692.9;0;0.0 +11484000;-44494.8;0;0.0 +11487600;-13287.7;0;0.0 +11491200;0;0;0.0 +11494800;0;0;0.0 +11498400;0;0;0.0 +11502000;0;0;0.0 +11505600;0;0;0.0 +11509200;-1706.3;0;0.0 +11512800;-6001.9;0;0.0 +11516400;0;0;0.0 +11520000;0;0;0.0 +11523600;-21373.0;0;0.0 +11527200;-27457.5;0;0.0 +11530800;-48597.5;0;0.0 +11534400;-67422.4;0;0.0 +11538000;-70892.2;0;0.0 +11541600;-60810.9;0;0.0 +11545200;-58051.5;0;0.0 +11548800;-61273.7;0;0.0 +11552400;-59908.0;0;0.0 +11556000;-74874.3;0;0.0 +11559600;-68791.8;0;0.0 +11563200;-53053.5;0;0.0 +11566800;-7346.0;0;0.0 +11570400;0;0;0.0 +11574000;0;0;0.0 +11577600;0;0;0.0 +11581200;0;0;0.0 +11584800;0;0;0.0 +11588400;0;0;0.0 +11592000;0;0;0.0 +11595600;0;0;0.0 +11599200;0;0;0.0 +11602800;-19349.9;0;0.0 +11606400;-6652.3;0;0.0 +11610000;-7734.3;0;0.0 +11613600;-12304.9;0;0.0 +11617200;-43787.4;0;0.0 +11620800;-73382.4;0;0.0 +11624400;-75578.5;0;0.0 +11628000;-52758.3;0;0.0 +11631600;-43001.6;0;0.0 +11635200;-50596.7;0;0.0 +11638800;-69328.3;0;0.0 +11642400;-87697.8;0;0.0 +11646000;-70024.1;0;0.0 +11649600;-55513.4;0;0.0 +11653200;-24642.0;0;0.0 +11656800;-1392.7;0;0.0 +11660400;0;0;0.0 +11664000;0;0;0.0 +11667600;0;0;0.0 +11671200;0;0;0.0 +11674800;0;0;0.0 +11678400;0;821.0;0.0 +11682000;0;0;0.0 +11685600;0;0;0.0 +11689200;-13000.1;0;0.0 +11692800;-2376.6;0;0.0 +11696400;-12857.6;0;0.0 +11700000;-18698.0;0;0.0 +11703600;-53436.5;0;0.0 +11707200;-79286.3;0;0.0 +11710800;-79804.6;0;0.0 +11714400;-62678.9;0;0.0 +11718000;-53667.5;0;0.0 +11721600;-58357.2;0;0.0 +11725200;-73807.2;0;0.0 +11728800;-88701.1;0;0.0 +11732400;-85434.6;0;0.0 +11736000;-82570.9;0;0.0 +11739600;-57488.1;0;0.0 +11743200;-19457.6;0;0.0 +11746800;0;0;0.0 +11750400;0;0;0.0 +11754000;0;0;0.0 +11757600;0;0;0.0 +11761200;0;0;0.0 +11764800;0;0;0.0 +11768400;0;0;0.0 +11772000;0;0;0.0 +11775600;-33715.1;0;0.0 +11779200;-34368.3;0;0.0 +11782800;-40042.8;0;0.0 +11786400;-38611.4;0;0.0 +11790000;-57889.3;0;0.0 +11793600;-78883.4;0;0.0 +11797200;-72823.1;0;0.0 +11800800;-48794.5;0;0.0 +11804400;-32008.9;0;0.0 +11808000;-37870.8;0;0.0 +11811600;-33452.6;0;0.0 +11815200;-70706.6;0;0.0 +11818800;-69035.1;0;0.0 +11822400;-59338.7;0;0.0 +11826000;-27535.2;0;0.0 +11829600;-7945.9;0;0.0 +11833200;0;0;0.0 +11836800;0;0;0.0 +11840400;0;0;0.0 +11844000;0;0;0.0 +11847600;0;0;0.0 +11851200;0;1220.9;0.0 +11854800;0;0;0.0 +11858400;0;0;0.0 +11862000;-24692.2;0;0.0 +11865600;-14275.3;0;0.0 +11869200;-1614.4;0;0.0 +11872800;-6726.4;0;0.0 +11876400;-26143.1;0;0.0 +11880000;-45366.1;0;0.0 +11883600;-48444.8;0;0.0 +11887200;-24131.5;0;0.0 +11890800;-11666.6;0;0.0 +11894400;-6748.6;0;0.0 +11898000;-29708.9;0;0.0 +11901600;-43858.7;0;0.0 +11905200;-42753.7;0;0.0 +11908800;-41752.5;0;0.0 +11912400;-6022.7;0;0.0 +11916000;0;0;0.0 +11919600;0;0;0.0 +11923200;0;0;0.0 +11926800;0;0;0.0 +11930400;0;0;0.0 +11934000;0;0;0.0 +11937600;0;2632.1;0.0 +11941200;0;0;0.0 +11944800;0;0;0.0 +11948400;-13756.3;0;0.0 +11952000;-2387.4;0;0.0 +11955600;-5162.8;0;0.0 +11959200;-14533.5;0;0.0 +11962800;-39624.4;0;0.0 +11966400;-66820.8;0;0.0 +11970000;-59872.7;0;0.0 +11973600;-42997.8;0;0.0 +11977200;-22794.4;0;0.0 +11980800;-37258.1;0;0.0 +11984400;-43443.7;0;0.0 +11988000;-71883.2;0;0.0 +11991600;-44401.6;0;0.0 +11995200;-34985.7;0;0.0 +11998800;-19951.2;0;0.0 +12002400;0;0;0.0 +12006000;0;0;0.0 +12009600;0;0;0.0 +12013200;0;0;0.0 +12016800;0;0;0.0 +12020400;0;0;0.0 +12024000;0;2370.7;0.0 +12027600;0;0;0.0 +12031200;0;0;0.0 +12034800;-7665.9;0;0.0 +12038400;-4976.5;0;0.0 +12042000;-6668.4;0;0.0 +12045600;-17953.8;0;0.0 +12049200;-38984.6;0;0.0 +12052800;-52005.7;0;0.0 +12056400;-58038.7;0;0.0 +12060000;-52657.1;0;0.0 +12063600;-54240.0;0;0.0 +12067200;-60556.5;0;0.0 +12070800;-59800.0;0;0.0 +12074400;-80296.2;0;0.0 +12078000;-85842.9;0;0.0 +12081600;-69144.4;0;0.0 +12085200;-63204.8;0;0.0 +12088800;-42560.5;0;0.0 +12092400;-6330.5;0;0.0 +12096000;0;0;0.0 +12099600;0;0;0.0 +12103200;0;0;0.0 +12106800;0;0;0.0 +12110400;0;0;0.0 +12114000;-1010.1;0;0.0 +12117600;-5072.7;0;0.0 +12121200;0;0;0.0 +12124800;0;0;0.0 +12128400;-5635.4;0;0.0 +12132000;-20482.9;0;0.0 +12135600;-29943.8;0;0.0 +12139200;-53219.1;0;0.0 +12142800;-59317.8;0;0.0 +12146400;-49500.6;0;0.0 +12150000;-46432.2;0;0.0 +12153600;-54924.8;0;0.0 +12157200;-59865.7;0;0.0 +12160800;-65454.5;0;0.0 +12164400;-61808.5;0;0.0 +12168000;-51011.7;0;0.0 +12171600;-16802.2;0;0.0 +12175200;0;0;0.0 +12178800;0;0;0.0 +12182400;0;0;0.0 +12186000;0;0;0.0 +12189600;0;0;0.0 +12193200;0;0;0.0 +12196800;0;336.2;0.0 +12200400;0;0;0.0 +12204000;0;0;0.0 +12207600;-24631.9;0;0.0 +12211200;-10899.6;0;0.0 +12214800;-13900.4;0;0.0 +12218400;-7750.9;0;0.0 +12222000;-36554.4;0;0.0 +12225600;-69279.8;0;0.0 +12229200;-72050.3;0;0.0 +12232800;-51504.0;0;0.0 +12236400;-37657.6;0;0.0 +12240000;-50284.6;0;0.0 +12243600;-69880.0;0;0.0 +12247200;-89158.6;0;0.0 +12250800;-77080.3;0;0.0 +12254400;-61302.3;0;0.0 +12258000;-20958.3;0;0.0 +12261600;-1700.3;0;0.0 +12265200;0;0;0.0 +12268800;0;0;0.0 +12272400;0;0;0.0 +12276000;0;0;0.0 +12279600;0;0;0.0 +12283200;0;1552.1;0.0 +12286800;0;0;0.0 +12290400;0;0;0.0 +12294000;-19488.9;0;0.0 +12297600;-13727.1;0;0.0 +12301200;-31268.8;0;0.0 +12304800;-36307.8;0;0.0 +12308400;-65121.3;0;0.0 +12312000;-87828.8;0;0.0 +12315600;-84218.4;0;0.0 +12319200;-65628.6;0;0.0 +12322800;-56460.4;0;0.0 +12326400;-60992.0;0;0.0 +12330000;-78265.4;0;0.0 +12333600;-96762.6;0;0.0 +12337200;-89836.6;0;0.0 +12340800;-85618.8;0;0.0 +12344400;-62851.0;0;0.0 +12348000;-38187.1;0;0.0 +12351600;-17588.3;0;0.0 +12355200;0;0;0.0 +12358800;0;0;0.0 +12362400;0;0;0.0 +12366000;0;0;0.0 +12369600;0;0;0.0 +12373200;0;0;0.0 +12376800;0;0;0.0 +12380400;-40220.2;0;0.0 +12384000;-25065.8;0;0.0 +12387600;-28409.7;0;0.0 +12391200;-5120.3;0;0.0 +12394800;-30013.2;0;0.0 +12398400;-60066.1;0;0.0 +12402000;-42020.0;0;0.0 +12405600;-16339.2;0;0.0 +12409200;-88.5;0;0.0 +12412800;-1002.6;0;0.0 +12416400;-23944.6;0;0.0 +12420000;-50213.2;0;0.0 +12423600;-45261.7;0;0.0 +12427200;-35881.3;0;0.0 +12430800;-13893.8;0;0.0 +12434400;0;0;0.0 +12438000;0;0;0.0 +12441600;0;0;0.0 +12445200;0;0;0.0 +12448800;0;0;0.0 +12452400;0;0;0.0 +12456000;0;430.8;0.0 +12459600;0;0;0.0 +12463200;0;0;0.0 +12466800;-16805.3;0;0.0 +12470400;-3469.0;0;0.0 +12474000;-7530.1;0;0.0 +12477600;-13914.3;0;0.0 +12481200;-48703.8;0;0.0 +12484800;-74799.6;0;0.0 +12488400;-71179.7;0;0.0 +12492000;-51928.8;0;0.0 +12495600;-26319.0;0;0.0 +12499200;-28799.9;0;0.0 +12502800;-47659.5;0;0.0 +12506400;-66416.0;0;0.0 +12510000;-61213.6;0;0.0 +12513600;-48980.8;0;0.0 +12517200;-27496.0;0;0.0 +12520800;-330.3;0;0.0 +12524400;0;0;0.0 +12528000;0;0;0.0 +12531600;0;0;0.0 +12535200;0;0;0.0 +12538800;0;0;0.0 +12542400;0;0;0.0 +12546000;0;0;0.0 +12549600;0;0;0.0 +12553200;-19176.1;0;0.0 +12556800;-4784.5;0;0.0 +12560400;-20470.9;0;0.0 +12564000;-30330.3;0;0.0 +12567600;-62199.5;0;0.0 +12571200;-87101.2;0;0.0 +12574800;-83037.8;0;0.0 +12578400;-66298.5;0;0.0 +12582000;-55793.7;0;0.0 +12585600;-65176.4;0;0.0 +12589200;-83467.3;0;0.0 +12592800;-100707.3;0;0.0 +12596400;-89565.4;0;0.0 +12600000;-83383.7;0;0.0 +12603600;-48996.0;0;0.0 +12607200;-3675.9;0;0.0 +12610800;0;0;0.0 +12614400;0;0;0.0 +12618000;0;0;0.0 +12621600;0;0;0.0 +12625200;0;0;0.0 +12628800;0;0;0.0 +12632400;0;0;0.0 +12636000;0;0;0.0 +12639600;-36519.6;0;0.0 +12643200;-25957.3;0;0.0 +12646800;-35162.5;0;0.0 +12650400;-39360.9;0;0.0 +12654000;-65779.1;0;0.0 +12657600;-70692.0;0;0.0 +12661200;-72496.9;0;0.0 +12664800;-63405.7;0;0.0 +12668400;-63276.9;0;0.0 +12672000;-69619.5;0;0.0 +12675600;-71445.2;0;0.0 +12679200;-93907.0;0;0.0 +12682800;-96193.5;0;0.0 +12686400;-75415.8;0;0.0 +12690000;-64100.3;0;0.0 +12693600;-29208.2;0;0.0 +12697200;-1663.9;0;0.0 +12700800;0;0;0.0 +12704400;0;0;0.0 +12708000;0;0;0.0 +12711600;0;0;0.0 +12715200;0;0;0.0 +12718800;-1862.5;0;0.0 +12722400;-6276.7;0;0.0 +12726000;0;0;0.0 +12729600;0;0;0.0 +12733200;-20334.2;0;0.0 +12736800;-23615.4;0;0.0 +12740400;-19057.0;0;0.0 +12744000;-34021.6;0;0.0 +12747600;-22945.9;0;0.0 +12751200;-14233.9;0;0.0 +12754800;-5888.5;0;0.0 +12758400;-8686.9;0;0.0 +12762000;-20886.7;0;0.0 +12765600;-37336.8;0;0.0 +12769200;-46061.2;0;0.0 +12772800;-45422.1;0;0.0 +12776400;-19139.1;0;0.0 +12780000;-1357.2;0;0.0 +12783600;0;0;0.0 +12787200;0;0;0.0 +12790800;0;0;0.0 +12794400;0;0;0.0 +12798000;0;0;0.0 +12801600;0;0;0.0 +12805200;0;0;0.0 +12808800;0;0;0.0 +12812400;-28565.3;0;0.0 +12816000;-31585.4;0;0.0 +12819600;-25729.6;0;0.0 +12823200;-30259.8;0;0.0 +12826800;-60900.1;0;0.0 +12830400;-81763.1;0;0.0 +12834000;-74585.2;0;0.0 +12837600;-46883.0;0;0.0 +12841200;-32845.4;0;0.0 +12844800;-38156.0;0;0.0 +12848400;-45941.3;0;0.0 +12852000;-68585.1;0;0.0 +12855600;-51850.0;0;0.0 +12859200;-47148.9;0;0.0 +12862800;-27438.8;0;0.0 +12866400;0;0;0.0 +12870000;0;0;0.0 +12873600;0;0;0.0 +12877200;0;0;0.0 +12880800;0;0;0.0 +12884400;0;0;0.0 +12888000;0;19.1;0.0 +12891600;0;0;0.0 +12895200;0;0;0.0 +12898800;-23713.0;0;0.0 +12902400;-7864.8;0;0.0 +12906000;-14124.0;0;0.0 +12909600;-16993.5;0;0.0 +12913200;-51736.3;0;0.0 +12916800;-77690.1;0;0.0 +12920400;-76227.7;0;0.0 +12924000;-59180.3;0;0.0 +12927600;-47118.9;0;0.0 +12931200;-56107.7;0;0.0 +12934800;-72940.9;0;0.0 +12938400;-89875.1;0;0.0 +12942000;-78212.0;0;0.0 +12945600;-66141.8;0;0.0 +12949200;-30373.7;0;0.0 +12952800;-2933.8;0;0.0 +12956400;0;0;0.0 +12960000;0;0;0.0 +12963600;0;0;0.0 +12967200;0;0;0.0 +12970800;0;0;0.0 +12974400;0;0;0.0 +12978000;0;0;0.0 +12981600;0;0;0.0 +12985200;-34164.1;0;0.0 +12988800;-35954.3;0;0.0 +12992400;-44507.1;0;0.0 +12996000;-41774.5;0;0.0 +12999600;-69472.3;0;0.0 +13003200;-90083.3;0;0.0 +13006800;-85933.2;0;0.0 +13010400;-68143.0;0;0.0 +13014000;-58189.9;0;0.0 +13017600;-68155.0;0;0.0 +13021200;-86099.2;0;0.0 +13024800;-104180.4;0;0.0 +13028400;-91879.2;0;0.0 +13032000;-85852.4;0;0.0 +13035600;-60395.4;0;0.0 +13039200;-28444.3;0;0.0 +13042800;-2344.1;0;0.0 +13046400;0;0;0.0 +13050000;0;0;0.0 +13053600;0;0;0.0 +13057200;0;0;0.0 +13060800;0;0;0.0 +13064400;0;0;0.0 +13068000;0;0;0.0 +13071600;-36900.4;0;0.0 +13075200;-30981.1;0;0.0 +13078800;-40041.2;0;0.0 +13082400;-35069.6;0;0.0 +13086000;-64090.1;0;0.0 +13089600;-90312.3;0;0.0 +13093200;-88425.5;0;0.0 +13096800;-70850.8;0;0.0 +13100400;-61302.5;0;0.0 +13104000;-71308.6;0;0.0 +13107600;-89827.8;0;0.0 +13111200;-106708.0;0;0.0 +13114800;-95374.0;0;0.0 +13118400;-89695.6;0;0.0 +13122000;-66325.2;0;0.0 +13125600;-40832.1;0;0.0 +13129200;-17400.2;0;0.0 +13132800;0;0;0.0 +13136400;0;0;0.0 +13140000;0;0;0.0 +13143600;0;0;0.0 +13147200;0;0;0.0 +13150800;0;0;0.0 +13154400;0;0;0.0 +13158000;-49950.8;0;0.0 +13161600;-52237.9;0;0.0 +13165200;-63832.4;0;0.0 +13168800;-61267.7;0;0.0 +13172400;-85308.0;0;0.0 +13176000;-104867.8;0;0.0 +13179600;-97637.0;0;0.0 +13183200;-73966.4;0;0.0 +13186800;-60543.4;0;0.0 +13190400;-64996.8;0;0.0 +13194000;-79732.2;0;0.0 +13197600;-95099.5;0;0.0 +13201200;-90733.8;0;0.0 +13204800;-86668.7;0;0.0 +13208400;-59376.4;0;0.0 +13212000;-31589.1;0;0.0 +13215600;-3198.2;0;0.0 +13219200;0;0;0.0 +13222800;0;0;0.0 +13226400;0;0;0.0 +13230000;0;0;0.0 +13233600;0;0;0.0 +13237200;0;0;0.0 +13240800;0;0;0.0 +13244400;-31727.8;0;0.0 +13248000;-6582.7;0;0.0 +13251600;-16328.9;0;0.0 +13255200;-17194.1;0;0.0 +13258800;-43480.2;0;0.0 +13262400;-57761.4;0;0.0 +13266000;-63522.2;0;0.0 +13269600;-56706.8;0;0.0 +13273200;-57134.6;0;0.0 +13276800;-60504.3;0;0.0 +13280400;-61100.4;0;0.0 +13284000;-83169.8;0;0.0 +13287600;-91296.6;0;0.0 +13291200;-68320.4;0;0.0 +13294800;-54519.2;0;0.0 +13298400;-14770.6;0;0.0 +13302000;0;0;0.0 +13305600;0;0;0.0 +13309200;0;0;0.0 +13312800;0;0;0.0 +13316400;0;0;0.0 +13320000;0;0;0.0 +13323600;0;0;0.0 +13327200;-2723.8;0;0.0 +13330800;0;0;0.0 +13334400;0;0;0.0 +13338000;-587.8;240.1;0.0 +13341600;-2714.0;0;0.0 +13345200;-25406.9;0;0.0 +13348800;-48499.2;0;0.0 +13352400;-56259.0;0;0.0 +13356000;-47116.6;0;0.0 +13359600;-45859.9;0;0.0 +13363200;-55477.1;0;0.0 +13366800;-63756.2;0;0.0 +13370400;-73877.9;0;0.0 +13374000;-71291.1;0;0.0 +13377600;-69761.5;0;0.0 +13381200;-31946.9;0;0.0 +13384800;-5391.2;0;0.0 +13388400;0;0;0.0 +13392000;0;0;0.0 +13395600;0;0;0.0 +13399200;0;0;0.0 +13402800;0;0;0.0 +13406400;0;0;0.0 +13410000;0;0;0.0 +13413600;0;0;0.0 +13417200;-27680.6;0;0.0 +13420800;-7513.9;0;0.0 +13424400;-11371.2;0;0.0 +13428000;-12334.8;0;0.0 +13431600;-43224.5;0;0.0 +13435200;-70373.0;0;0.0 +13438800;-72699.6;0;0.0 +13442400;-57319.9;0;0.0 +13446000;-45286.9;0;0.0 +13449600;-53605.0;0;0.0 +13453200;-73928.7;0;0.0 +13456800;-93715.5;0;0.0 +13460400;-81967.1;0;0.0 +13464000;-63064.8;0;0.0 +13467600;-29281.8;0;0.0 +13471200;-7937.1;0;0.0 +13474800;0;0;0.0 +13478400;0;0;0.0 +13482000;0;0;0.0 +13485600;0;0;0.0 +13489200;0;0;0.0 +13492800;0;1607.2;0.0 +13496400;0;0;0.0 +13500000;0;0;0.0 +13503600;-20938.7;0;0.0 +13507200;-9752.6;0;0.0 +13510800;-22638.8;0;0.0 +13514400;-21054.8;0;0.0 +13518000;-59433.7;0;0.0 +13521600;-83872.3;0;0.0 +13525200;-80246.6;0;0.0 +13528800;-64067.6;0;0.0 +13532400;-55849.0;0;0.0 +13536000;-63293.1;0;0.0 +13539600;-83213.6;0;0.0 +13543200;-99910.5;0;0.0 +13546800;-90061.4;0;0.0 +13550400;-84760.9;0;0.0 +13554000;-59612.7;0;0.0 +13557600;-20123.6;0;0.0 +13561200;0;0;0.0 +13564800;0;0;0.0 +13568400;0;0;0.0 +13572000;0;0;0.0 +13575600;0;0;0.0 +13579200;0;0;0.0 +13582800;0;0;0.0 +13586400;0;0;0.0 +13590000;-30140.0;0;0.0 +13593600;-27927.7;0;0.0 +13597200;-34468.1;0;0.0 +13600800;-34418.0;0;0.0 +13604400;-62546.2;0;0.0 +13608000;-83557.4;0;0.0 +13611600;-75980.4;0;0.0 +13615200;-56010.0;0;0.0 +13618800;-43524.8;0;0.0 +13622400;-49404.2;0;0.0 +13626000;-66405.4;0;0.0 +13629600;-82759.3;0;0.0 +13633200;-80179.2;0;0.0 +13636800;-79648.5;0;0.0 +13640400;-54228.1;0;0.0 +13644000;-28302.5;0;0.0 +13647600;-3666.2;0;0.0 +13651200;0;0;0.0 +13654800;0;0;0.0 +13658400;0;0;0.0 +13662000;0;0;0.0 +13665600;0;0;0.0 +13669200;0;0;0.0 +13672800;0;0;0.0 +13676400;-36262.0;0;0.0 +13680000;-37561.8;0;0.0 +13683600;-41130.3;0;0.0 +13687200;-40185.4;0;0.0 +13690800;-68672.7;0;0.0 +13694400;-89416.6;0;0.0 +13698000;-86194.7;0;0.0 +13701600;-68315.9;0;0.0 +13705200;-47137.4;0;0.0 +13708800;-57480.2;0;0.0 +13712400;-73453.0;0;0.0 +13716000;-89119.3;0;0.0 +13719600;-84945.4;0;0.0 +13723200;-78673.1;0;0.0 +13726800;-54529.5;0;0.0 +13730400;-16061.0;0;0.0 +13734000;-2143.5;0;0.0 +13737600;0;0;0.0 +13741200;0;0;0.0 +13744800;0;0;0.0 +13748400;0;0;0.0 +13752000;0;0;0.0 +13755600;0;0;0.0 +13759200;0;0;0.0 +13762800;-30267.0;0;0.0 +13766400;-11347.2;0;0.0 +13770000;-22667.5;0;0.0 +13773600;-27997.9;0;0.0 +13777200;-60312.0;0;0.0 +13780800;-83426.3;0;0.0 +13784400;-80151.8;0;0.0 +13788000;-59717.0;0;0.0 +13791600;-47381.7;0;0.0 +13795200;-50354.8;0;0.0 +13798800;-71351.6;0;0.0 +13802400;-87423.3;0;0.0 +13806000;-79160.4;0;0.0 +13809600;-75494.2;0;0.0 +13813200;-42577.3;0;0.0 +13816800;-4034.2;0;0.0 +13820400;0;0;0.0 +13824000;0;0;0.0 +13827600;0;0;0.0 +13831200;0;0;0.0 +13834800;0;0;0.0 +13838400;0;784.7;0.0 +13842000;0;0;0.0 +13845600;0;0;0.0 +13849200;-35619.7;0;0.0 +13852800;-21218.4;0;0.0 +13856400;-28909.5;0;0.0 +13860000;-24591.8;0;0.0 +13863600;-56701.8;0;0.0 +13867200;-65557.7;0;0.0 +13870800;-68677.5;0;0.0 +13874400;-60676.6;0;0.0 +13878000;-60759.8;0;0.0 +13881600;-67074.7;0;0.0 +13885200;-70955.2;0;0.0 +13888800;-93591.2;0;0.0 +13892400;-97552.7;0;0.0 +13896000;-79556.5;0;0.0 +13899600;-71475.5;0;0.0 +13903200;-47240.2;0;0.0 +13906800;-6723.2;0;0.0 +13910400;0;0;0.0 +13914000;0;0;0.0 +13917600;0;0;0.0 +13921200;0;0;0.0 +13924800;0;0;0.0 +13928400;-2231.7;0;0.0 +13932000;-6845.4;0;0.0 +13935600;0;0;0.0 +13939200;0;0;0.0 +13942800;-56670.7;0;0.0 +13946400;-58601.5;0;0.0 +13950000;-69050.2;0;0.0 +13953600;-79129.0;0;0.0 +13957200;-78834.9;0;0.0 +13960800;-66522.1;0;0.0 +13964400;-62943.4;0;0.0 +13968000;-71111.5;0;0.0 +13971600;-79337.1;0;0.0 +13975200;-88661.1;0;0.0 +13978800;-84468.8;0;0.0 +13982400;-80526.6;0;0.0 +13986000;-53515.4;0;0.0 +13989600;-28905.8;0;0.0 +13993200;-14673.5;0;0.0 +13996800;0;0;0.0 +14000400;0;0;0.0 +14004000;0;0;0.0 +14007600;0;0;0.0 +14011200;0;0;0.0 +14014800;0;0;0.0 +14018400;0;0;0.0 +14022000;-51378.6;0;0.0 +14025600;-54564.0;0;0.0 +14029200;-65750.3;0;0.0 +14032800;-64430.9;0;0.0 +14036400;-89170.4;0;0.0 +14040000;-108652.5;0;0.0 +14043600;-102183.0;0;0.0 +14047200;-82708.0;0;0.0 +14050800;-70303.0;0;0.0 +14054400;-77657.1;0;0.0 +14058000;-92143.4;0;0.0 +14061600;-104348.4;0;0.0 +14065200;-96650.4;0;0.0 +14068800;-91609.1;0;0.0 +14072400;-68302.6;0;0.0 +14076000;-28171.7;0;0.0 +14079600;-1858.5;0;0.0 +14083200;0;0;0.0 +14086800;0;0;0.0 +14090400;0;0;0.0 +14094000;0;0;0.0 +14097600;0;0;0.0 +14101200;0;0;0.0 +14104800;0;0;0.0 +14108400;-23130.6;0;0.0 +14112000;-2421.7;0;0.0 +14115600;-2427.0;0;0.0 +14119200;-15934.9;0;0.0 +14122800;-43865.8;0;0.0 +14126400;-63547.7;0;0.0 +14130000;-19235.5;0;0.0 +14133600;-5858.0;0;0.0 +14137200;0;0;0.0 +14140800;-10683.5;0;0.0 +14144400;-25365.2;0;0.0 +14148000;-60484.4;0;0.0 +14151600;-43352.2;0;0.0 +14155200;-48527.2;0;0.0 +14158800;-8943.5;0;0.0 +14162400;-179.5;0;0.0 +14166000;0;0;0.0 +14169600;0;0;0.0 +14173200;0;0;0.0 +14176800;0;0;0.0 +14180400;0;0;0.0 +14184000;0;3579.8;0.0 +14187600;0;0;0.0 +14191200;0;0;0.0 +14194800;-19853.9;0;0.0 +14198400;-10165.4;0;0.0 +14202000;-10565.0;0;0.0 +14205600;-7319.5;0;0.0 +14209200;-33767.2;0;0.0 +14212800;-55055.9;0;0.0 +14216400;-65063.2;0;0.0 +14220000;-45097.8;0;0.0 +14223600;-30554.3;0;0.0 +14227200;-42154.5;0;0.0 +14230800;-63320.6;0;0.0 +14234400;-85971.8;0;0.0 +14238000;-75795.1;0;0.0 +14241600;-64912.9;0;0.0 +14245200;-26766.9;0;0.0 +14248800;-5834.3;0;0.0 +14252400;0;0;0.0 +14256000;0;0;0.0 +14259600;0;0;0.0 +14263200;0;0;0.0 +14266800;0;0;0.0 +14270400;0;1447.6;0.0 +14274000;0;0;0.0 +14277600;0;0;0.0 +14281200;-21123.2;0;0.0 +14284800;-9440.4;0;0.0 +14288400;-26604.4;0;0.0 +14292000;-28392.4;0;0.0 +14295600;-57044.5;0;0.0 +14299200;-82630.0;0;0.0 +14302800;-79334.0;0;0.0 +14306400;-61375.1;0;0.0 +14310000;-47837.1;0;0.0 +14313600;-58659.3;0;0.0 +14317200;-73106.2;0;0.0 +14320800;-92053.3;0;0.0 +14324400;-85020.9;0;0.0 +14328000;-77104.8;0;0.0 +14331600;-47593.4;0;0.0 +14335200;-6346.5;0;0.0 +14338800;0;0;0.0 +14342400;0;0;0.0 +14346000;0;0;0.0 +14349600;0;0;0.0 +14353200;0;0;0.0 +14356800;0;0;0.0 +14360400;0;0;0.0 +14364000;0;0;0.0 +14367600;-31744.0;0;0.0 +14371200;-31965.4;0;0.0 +14374800;-40309.7;0;0.0 +14378400;-39249.5;0;0.0 +14382000;-68060.5;0;0.0 +14385600;-92019.7;0;0.0 +14389200;-84880.4;0;0.0 +14392800;-68547.3;0;0.0 +14396400;-53288.2;0;0.0 +14400000;-60394.7;0;0.0 +14403600;-75424.1;0;0.0 +14407200;-91612.0;0;0.0 +14410800;-89155.6;0;0.0 +14414400;-85978.4;0;0.0 +14418000;-63382.2;0;0.0 +14421600;-37842.3;0;0.0 +14425200;-15859.8;0;0.0 +14428800;0;0;0.0 +14432400;0;0;0.0 +14436000;0;0;0.0 +14439600;0;0;0.0 +14443200;0;0;0.0 +14446800;0;0;0.0 +14450400;0;0;0.0 +14454000;-47289.0;0;0.0 +14457600;-48819.1;0;0.0 +14461200;-54683.2;0;0.0 +14464800;-53166.4;0;0.0 +14468400;-75687.1;0;0.0 +14472000;-81046.3;0;0.0 +14475600;-78212.1;0;0.0 +14479200;-67409.3;0;0.0 +14482800;-63657.6;0;0.0 +14486400;-69397.3;0;0.0 +14490000;-76473.3;0;0.0 +14493600;-94756.5;0;0.0 +14497200;-100560.0;0;0.0 +14500800;-84045.2;0;0.0 +14504400;-76548.8;0;0.0 +14508000;-55439.6;0;0.0 +14511600;-30745.1;0;0.0 +14515200;0;0;0.0 +14518800;0;0;0.0 +14522400;0;0;0.0 +14526000;0;0;0.0 +14529600;-114.3;0;0.0 +14533200;-7540.7;0;0.0 +14536800;-13183.8;0;0.0 +14540400;0;0;0.0 +14544000;0;0;0.0 +14547600;-74432.1;0;0.0 +14551200;-63705.0;0;0.0 +14554800;-75431.9;0;0.0 +14558400;-85269.0;0;0.0 +14562000;-84409.9;0;0.0 +14565600;-70052.5;0;0.0 +14569200;-65809.7;0;0.0 +14572800;-67837.8;0;0.0 +14576400;-77809.6;0;0.0 +14580000;-87701.4;0;0.0 +14583600;-83438.3;0;0.0 +14587200;-81432.7;0;0.0 +14590800;-54319.7;0;0.0 +14594400;-27964.1;0;0.0 +14598000;-12319.6;0;0.0 +14601600;0;0;0.0 +14605200;0;0;0.0 +14608800;0;0;0.0 +14612400;0;0;0.0 +14616000;0;0;0.0 +14619600;0;0;0.0 +14623200;0;0;0.0 +14626800;-40528.8;0;0.0 +14630400;-35130.0;0;0.0 +14634000;-42115.5;0;0.0 +14637600;-38966.8;0;0.0 +14641200;-70945.2;0;0.0 +14644800;-94710.8;0;0.0 +14648400;-91157.4;0;0.0 +14652000;-72910.0;0;0.0 +14655600;-62364.4;0;0.0 +14659200;-72080.8;0;0.0 +14662800;-90375.5;0;0.0 +14666400;-108194.6;0;0.0 +14670000;-96771.3;0;0.0 +14673600;-89779.0;0;0.0 +14677200;-65351.2;0;0.0 +14680800;-38445.8;0;0.0 +14684400;-8110.4;0;0.0 +14688000;0;0;0.0 +14691600;0;0;0.0 +14695200;0;0;0.0 +14698800;0;0;0.0 +14702400;0;0;0.0 +14706000;0;0;0.0 +14709600;0;0;0.0 +14713200;-45247.1;0;0.0 +14716800;-50030.7;0;0.0 +14720400;-59308.3;0;0.0 +14724000;-59518.5;0;0.0 +14727600;-83965.3;0;0.0 +14731200;-103240.3;0;0.0 +14734800;-98187.8;0;0.0 +14738400;-78905.5;0;0.0 +14742000;-67788.5;0;0.0 +14745600;-76559.6;0;0.0 +14749200;-93160.9;0;0.0 +14752800;-108703.4;0;0.0 +14756400;-99627.7;0;0.0 +14760000;-93104.0;0;0.0 +14763600;-69021.7;0;0.0 +14767200;-43127.0;0;0.0 +14770800;-17980.4;0;0.0 +14774400;0;0;0.0 +14778000;0;0;0.0 +14781600;0;0;0.0 +14785200;0;0;0.0 +14788800;0;0;0.0 +14792400;0;0;0.0 +14796000;0;0;0.0 +14799600;-50822.8;0;0.0 +14803200;-49865.4;0;0.0 +14806800;-49500.2;0;0.0 +14810400;-46384.0;0;0.0 +14814000;-72201.5;0;0.0 +14817600;-92217.1;0;0.0 +14821200;-87540.8;0;0.0 +14824800;-70164.8;0;0.0 +14828400;-59543.6;0;0.0 +14832000;-69713.0;0;0.0 +14835600;-88711.1;0;0.0 +14839200;-104415.4;0;0.0 +14842800;-94367.9;0;0.0 +14846400;-89718.9;0;0.0 +14850000;-66162.2;0;0.0 +14853600;-27238.5;0;0.0 +14857200;-3106.7;0;0.0 +14860800;0;0;0.0 +14864400;0;0;0.0 +14868000;0;0;0.0 +14871600;0;0;0.0 +14875200;0;0;0.0 +14878800;0;0;0.0 +14882400;0;0;0.0 +14886000;-35738.8;0;0.0 +14889600;-24548.5;0;0.0 +14893200;-42125.4;0;0.0 +14896800;-42774.3;0;0.0 +14900400;-72569.0;0;0.0 +14904000;-92716.5;0;0.0 +14907600;-88502.4;0;0.0 +14911200;-69661.4;0;0.0 +14914800;-58923.9;0;0.0 +14918400;-66770.7;0;0.0 +14922000;-85662.9;0;0.0 +14925600;-103202.6;0;0.0 +14929200;-93012.7;0;0.0 +14932800;-85431.0;0;0.0 +14936400;-59030.0;0;0.0 +14940000;-22410.4;0;0.0 +14943600;-0.7;0;0.0 +14947200;0;0;0.0 +14950800;0;0;0.0 +14954400;0;0;0.0 +14958000;0;0;0.0 +14961600;0;0;0.0 +14965200;0;0;0.0 +14968800;0;0;0.0 +14972400;-41531.2;0;0.0 +14976000;-31255.6;0;0.0 +14979600;-44387.1;0;0.0 +14983200;-38162.3;0;0.0 +14986800;-66521.2;0;0.0 +14990400;-90210.8;0;0.0 +14994000;-85877.1;0;0.0 +14997600;-67610.1;0;0.0 +15001200;-58571.9;0;0.0 +15004800;-67411.7;0;0.0 +15008400;-84722.6;0;0.0 +15012000;-101963.7;0;0.0 +15015600;-92428.1;0;0.0 +15019200;-84404.1;0;0.0 +15022800;-55902.0;0;0.0 +15026400;-15559.3;0;0.0 +15030000;-4146.5;0;0.0 +15033600;0;0;0.0 +15037200;0;0;0.0 +15040800;0;0;0.0 +15044400;0;0;0.0 +15048000;0;0;0.0 +15051600;0;0;0.0 +15055200;0;0;0.0 +15058800;-39038.7;0;0.0 +15062400;-39105.5;0;0.0 +15066000;-44918.0;0;0.0 +15069600;-45210.7;0;0.0 +15073200;-71632.5;0;0.0 +15076800;-76258.9;0;0.0 +15080400;-77445.7;0;0.0 +15084000;-68614.5;0;0.0 +15087600;-67705.2;0;0.0 +15091200;-72616.4;0;0.0 +15094800;-75846.3;0;0.0 +15098400;-98365.3;0;0.0 +15102000;-101094.5;0;0.0 +15105600;-82799.2;0;0.0 +15109200;-70173.8;0;0.0 +15112800;-34455.4;0;0.0 +15116400;-4323.8;0;0.0 +15120000;0;0;0.0 +15123600;0;0;0.0 +15127200;0;0;0.0 +15130800;0;0;0.0 +15134400;0;0;0.0 +15138000;-1573.6;0;0.0 +15141600;-6019.0;0;0.0 +15145200;0;0;0.0 +15148800;0;0;0.0 +15152400;-28417.5;0;0.0 +15156000;-45646.9;0;0.0 +15159600;-62075.2;0;0.0 +15163200;-76104.5;0;0.0 +15166800;-76840.9;0;0.0 +15170400;-65196.8;0;0.0 +15174000;-59615.8;0;0.0 +15177600;-68075.2;0;0.0 +15181200;-77358.7;0;0.0 +15184800;-87300.3;0;0.0 +15188400;-83650.1;0;0.0 +15192000;-80557.4;0;0.0 +15195600;-53370.4;0;0.0 +15199200;-29550.9;0;0.0 +15202800;-17931.6;0;0.0 +15206400;0;0;0.0 +15210000;0;0;0.0 +15213600;0;0;0.0 +15217200;0;0;0.0 +15220800;0;0;0.0 +15224400;0;0;0.0 +15228000;0;0;0.0 +15231600;-44626.0;0;0.0 +15235200;-46214.6;0;0.0 +15238800;-52579.6;0;0.0 +15242400;-50251.9;0;0.0 +15246000;-75978.3;0;0.0 +15249600;-98243.6;0;0.0 +15253200;-94839.2;0;0.0 +15256800;-77537.0;0;0.0 +15260400;-63258.0;0;0.0 +15264000;-73483.2;0;0.0 +15267600;-90562.0;0;0.0 +15271200;-102282.2;0;0.0 +15274800;-96290.7;0;0.0 +15278400;-91255.9;0;0.0 +15282000;-67660.6;0;0.0 +15285600;-42024.6;0;0.0 +15289200;-20118.8;0;0.0 +15292800;0;0;0.0 +15296400;0;0;0.0 +15300000;0;0;0.0 +15303600;0;0;0.0 +15307200;0;0;0.0 +15310800;0;0;0.0 +15314400;0;0;0.0 +15318000;-48941.7;0;0.0 +15321600;-51409.4;0;0.0 +15325200;-63524.8;0;0.0 +15328800;-61740.3;0;0.0 +15332400;-87901.6;0;0.0 +15336000;-107486.8;0;0.0 +15339600;-102281.4;0;0.0 +15343200;-81588.5;0;0.0 +15346800;-68882.6;0;0.0 +15350400;-76423.5;0;0.0 +15354000;-94650.3;0;0.0 +15357600;-109428.6;0;0.0 +15361200;-99368.2;0;0.0 +15364800;-93485.7;0;0.0 +15368400;-69447.0;0;0.0 +15372000;-43433.7;0;0.0 +15375600;-20401.4;0;0.0 +15379200;0;0;0.0 +15382800;0;0;0.0 +15386400;0;0;0.0 +15390000;0;0;0.0 +15393600;0;0;0.0 +15397200;0;0;0.0 +15400800;0;0;0.0 +15404400;-47865.1;0;0.0 +15408000;-46922.6;0;0.0 +15411600;-54364.3;0;0.0 +15415200;-56501.6;0;0.0 +15418800;-83062.8;0;0.0 +15422400;-101302.4;0;0.0 +15426000;-96269.0;0;0.0 +15429600;-77170.3;0;0.0 +15433200;-66498.0;0;0.0 +15436800;-74713.1;0;0.0 +15440400;-92347.5;0;0.0 +15444000;-104807.6;0;0.0 +15447600;-96451.7;0;0.0 +15451200;-90542.9;0;0.0 +15454800;-66738.4;0;0.0 +15458400;-38905.5;0;0.0 +15462000;-14541.8;0;0.0 +15465600;0;0;0.0 +15469200;0;0;0.0 +15472800;0;0;0.0 +15476400;0;0;0.0 +15480000;0;0;0.0 +15483600;0;0;0.0 +15487200;0;0;0.0 +15490800;-47641.9;0;0.0 +15494400;-49861.7;0;0.0 +15498000;-62284.9;0;0.0 +15501600;-61162.6;0;0.0 +15505200;-87320.6;0;0.0 +15508800;-104799.0;0;0.0 +15512400;-98711.4;0;0.0 +15516000;-80032.9;0;0.0 +15519600;-68130.7;0;0.0 +15523200;-76435.0;0;0.0 +15526800;-88859.8;0;0.0 +15530400;-104505.7;0;0.0 +15534000;-97335.5;0;0.0 +15537600;-91802.3;0;0.0 +15541200;-67960.8;0;0.0 +15544800;-41453.3;0;0.0 +15548400;-13589.9;0;0.0 +15552000;0;0;0.0 +15555600;0;0;0.0 +15559200;0;0;0.0 +15562800;0;0;0.0 +15566400;0;0;0.0 +15570000;0;0;0.0 +15573600;0;0;0.0 +15577200;-47892.2;0;0.0 +15580800;-53521.8;0;0.0 +15584400;-61848.7;0;0.0 +15588000;-60454.7;0;0.0 +15591600;-85120.5;0;0.0 +15595200;-102855.5;0;0.0 +15598800;-96468.6;0;0.0 +15602400;-76817.3;0;0.0 +15606000;-66151.2;0;0.0 +15609600;-74606.7;0;0.0 +15613200;-91760.6;0;0.0 +15616800;-108047.6;0;0.0 +15620400;-97569.3;0;0.0 +15624000;-90664.7;0;0.0 +15627600;-65276.3;0;0.0 +15631200;-34217.3;0;0.0 +15634800;-4018.7;0;0.0 +15638400;0;0;0.0 +15642000;0;0;0.0 +15645600;0;0;0.0 +15649200;0;0;0.0 +15652800;0;0;0.0 +15656400;0;0;0.0 +15660000;0;0;0.0 +15663600;-50469.0;0;0.0 +15667200;-55612.6;0;0.0 +15670800;-55570.7;0;0.0 +15674400;-54563.9;0;0.0 +15678000;-75708.5;0;0.0 +15681600;-77707.1;0;0.0 +15685200;-79840.5;0;0.0 +15688800;-69732.9;0;0.0 +15692400;-67273.3;0;0.0 +15696000;-69606.1;0;0.0 +15699600;-73858.0;0;0.0 +15703200;-93663.6;0;0.0 +15706800;-100451.7;0;0.0 +15710400;-83500.5;0;0.0 +15714000;-75356.5;0;0.0 +15717600;-53165.1;0;0.0 +15721200;-20807.7;0;0.0 +15724800;0;0;0.0 +15728400;0;0;0.0 +15732000;0;0;0.0 +15735600;0;0;0.0 +15739200;0;0;0.0 +15742800;-4853.8;0;0.0 +15746400;-10290.8;0;0.0 +15750000;0;0;0.0 +15753600;0;0;0.0 +15757200;-35466.8;0;0.0 +15760800;-46263.1;0;0.0 +15764400;-59500.1;0;0.0 +15768000;-71711.1;0;0.0 +15771600;-75653.2;0;0.0 +15775200;-65383.9;0;0.0 +15778800;-61924.4;0;0.0 +15782400;-71146.0;0;0.0 +15786000;-79887.5;0;0.0 +15789600;-90137.7;0;0.0 +15793200;-84344.7;0;0.0 +15796800;-80071.0;0;0.0 +15800400;-51275.0;0;0.0 +15804000;-6920.5;0;0.0 +15807600;0;0;0.0 +15811200;0;0;0.0 +15814800;0;0;0.0 +15818400;0;0;0.0 +15822000;0;0;0.0 +15825600;0;0;0.0 +15829200;0;0;0.0 +15832800;0;0;0.0 +15836400;-37957.2;0;0.0 +15840000;-44431.1;0;0.0 +15843600;-54898.9;0;0.0 +15847200;-54926.5;0;0.0 +15850800;-80963.8;0;0.0 +15854400;-100316.1;0;0.0 +15858000;-94445.5;0;0.0 +15861600;-75980.6;0;0.0 +15865200;-65861.7;0;0.0 +15868800;-74635.7;0;0.0 +15872400;-91848.5;0;0.0 +15876000;-109444.2;0;0.0 +15879600;-98646.0;0;0.0 +15883200;-90727.9;0;0.0 +15886800;-66768.2;0;0.0 +15890400;-39516.7;0;0.0 +15894000;-10210.1;0;0.0 +15897600;0;0;0.0 +15901200;0;0;0.0 +15904800;0;0;0.0 +15908400;0;0;0.0 +15912000;0;0;0.0 +15915600;0;0;0.0 +15919200;0;0;0.0 +15922800;-46682.7;0;0.0 +15926400;-52433.4;0;0.0 +15930000;-62043.1;0;0.0 +15933600;-60442.5;0;0.0 +15937200;-83691.8;0;0.0 +15940800;-102236.6;0;0.0 +15944400;-96843.3;0;0.0 +15948000;-79199.6;0;0.0 +15951600;-66029.0;0;0.0 +15955200;-74981.3;0;0.0 +15958800;-87928.9;0;0.0 +15962400;-101836.7;0;0.0 +15966000;-96284.5;0;0.0 +15969600;-92368.5;0;0.0 +15973200;-68831.0;0;0.0 +15976800;-42969.2;0;0.0 +15980400;-19580.2;0;0.0 +15984000;0;0;0.0 +15987600;0;0;0.0 +15991200;0;0;0.0 +15994800;0;0;0.0 +15998400;0;0;0.0 +16002000;0;0;0.0 +16005600;0;0;0.0 +16009200;-46000.8;0;0.0 +16012800;-47333.2;0;0.0 +16016400;-54119.7;0;0.0 +16020000;-52263.7;0;0.0 +16023600;-76846.3;0;0.0 +16027200;-97664.8;0;0.0 +16030800;-88626.9;0;0.0 +16034400;-67169.2;0;0.0 +16038000;-59424.1;0;0.0 +16041600;-69799.8;0;0.0 +16045200;-87313.1;0;0.0 +16048800;-97336.2;0;0.0 +16052400;-92816.9;0;0.0 +16056000;-89304.2;0;0.0 +16059600;-65653.0;0;0.0 +16063200;-36501.6;0;0.0 +16066800;-7926.2;0;0.0 +16070400;0;0;0.0 +16074000;0;0;0.0 +16077600;0;0;0.0 +16081200;0;0;0.0 +16084800;0;0;0.0 +16088400;0;0;0.0 +16092000;0;0;0.0 +16095600;-40756.5;0;0.0 +16099200;-33493.3;0;0.0 +16102800;-46127.6;0;0.0 +16106400;-47292.6;0;0.0 +16110000;-77046.2;0;0.0 +16113600;-96733.0;0;0.0 +16117200;-91712.9;0;0.0 +16120800;-73840.9;0;0.0 +16124400;-63140.0;0;0.0 +16128000;-72146.6;0;0.0 +16131600;-89705.4;0;0.0 +16135200;-107186.9;0;0.0 +16138800;-95710.3;0;0.0 +16142400;-88933.4;0;0.0 +16146000;-64827.1;0;0.0 +16149600;-21719.7;0;0.0 +16153200;0;0;0.0 +16156800;0;0;0.0 +16160400;0;0;0.0 +16164000;0;0;0.0 +16167600;0;0;0.0 +16171200;0;0;0.0 +16174800;0;0;0.0 +16178400;0;0;0.0 +16182000;-36947.8;0;0.0 +16185600;-37031.8;0;0.0 +16189200;-44433.0;0;0.0 +16192800;-47407.0;0;0.0 +16196400;-75284.1;0;0.0 +16200000;-96104.5;0;0.0 +16203600;-91361.9;0;0.0 +16207200;-71006.2;0;0.0 +16210800;-61058.2;0;0.0 +16214400;-68154.5;0;0.0 +16218000;-78841.2;0;0.0 +16221600;-96853.2;0;0.0 +16225200;-92035.0;0;0.0 +16228800;-87281.1;0;0.0 +16232400;-64008.2;0;0.0 +16236000;-36545.7;0;0.0 +16239600;-15599.8;0;0.0 +16243200;0;0;0.0 +16246800;0;0;0.0 +16250400;0;0;0.0 +16254000;0;0;0.0 +16257600;0;0;0.0 +16261200;0;0;0.0 +16264800;0;0;0.0 +16268400;-47040.8;0;0.0 +16272000;-48606.2;0;0.0 +16275600;-50462.9;0;0.0 +16279200;-51244.9;0;0.0 +16282800;-71783.5;0;0.0 +16286400;-73099.5;0;0.0 +16290000;-75782.0;0;0.0 +16293600;-69019.7;0;0.0 +16297200;-69217.5;0;0.0 +16300800;-76154.4;0;0.0 +16304400;-79054.4;0;0.0 +16308000;-102916.5;0;0.0 +16311600;-103894.3;0;0.0 +16315200;-84310.5;0;0.0 +16318800;-75845.2;0;0.0 +16322400;-53637.3;0;0.0 +16326000;-18999.5;0;0.0 +16329600;0;0;0.0 +16333200;0;0;0.0 +16336800;0;0;0.0 +16340400;0;0;0.0 +16344000;0;0;0.0 +16347600;-3928.8;0;0.0 +16351200;-8090.0;0;0.0 +16354800;0;0;0.0 +16358400;0;0;0.0 +16362000;-51254.8;0;0.0 +16365600;-55939.6;0;0.0 +16369200;-66607.7;0;0.0 +16372800;-78870.3;0;0.0 +16376400;-79458.1;0;0.0 +16380000;-67736.1;0;0.0 +16383600;-60851.3;0;0.0 +16387200;-64039.7;0;0.0 +16390800;-68658.0;0;0.0 +16394400;-77075.9;0;0.0 +16398000;-79983.4;0;0.0 +16401600;-78417.0;0;0.0 +16405200;-49873.2;0;0.0 +16408800;-11475.6;0;0.0 +16412400;-887.6;0;0.0 +16416000;0;0;0.0 +16419600;0;0;0.0 +16423200;0;0;0.0 +16426800;0;0;0.0 +16430400;0;0;0.0 +16434000;0;0;0.0 +16437600;0;0;0.0 +16441200;-40286.2;0;0.0 +16444800;-49528.6;0;0.0 +16448400;-56958.9;0;0.0 +16452000;-55589.4;0;0.0 +16455600;-81823.6;0;0.0 +16459200;-101252.7;0;0.0 +16462800;-95680.9;0;0.0 +16466400;-76833.7;0;0.0 +16470000;-65725.3;0;0.0 +16473600;-73550.1;0;0.0 +16477200;-92584.7;0;0.0 +16480800;-111397.3;0;0.0 +16484400;-99556.3;0;0.0 +16488000;-91982.4;0;0.0 +16491600;-68032.2;0;0.0 +16495200;-41963.7;0;0.0 +16498800;-19148.8;0;0.0 +16502400;0;0;0.0 +16506000;0;0;0.0 +16509600;0;0;0.0 +16513200;0;0;0.0 +16516800;0;0;0.0 +16520400;0;0;0.0 +16524000;0;0;0.0 +16527600;-46092.5;0;0.0 +16531200;-42813.4;0;0.0 +16534800;-53089.7;0;0.0 +16538400;-55635.1;0;0.0 +16542000;-83940.8;0;0.0 +16545600;-103521.3;0;0.0 +16549200;-98026.5;0;0.0 +16552800;-78834.8;0;0.0 +16556400;-64964.1;0;0.0 +16560000;-72793.5;0;0.0 +16563600;-91453.2;0;0.0 +16567200;-111373.2;0;0.0 +16570800;-100961.3;0;0.0 +16574400;-92778.2;0;0.0 +16578000;-68194.7;0;0.0 +16581600;-41439.3;0;0.0 +16585200;-6353.2;0;0.0 +16588800;0;0;0.0 +16592400;0;0;0.0 +16596000;0;0;0.0 +16599600;0;0;0.0 +16603200;0;0;0.0 +16606800;0;0;0.0 +16610400;0;0;0.0 +16614000;-44308.4;0;0.0 +16617600;-47581.3;0;0.0 +16621200;-56980.1;0;0.0 +16624800;-56597.6;0;0.0 +16628400;-81860.2;0;0.0 +16632000;-101625.5;0;0.0 +16635600;-94833.2;0;0.0 +16639200;-74431.3;0;0.0 +16642800;-63147.3;0;0.0 +16646400;-70032.6;0;0.0 +16650000;-83651.3;0;0.0 +16653600;-98782.7;0;0.0 +16657200;-94005.8;0;0.0 +16660800;-88707.2;0;0.0 +16664400;-60715.7;0;0.0 +16668000;-26506.8;0;0.0 +16671600;-1047.9;0;0.0 +16675200;0;0;0.0 +16678800;0;0;0.0 +16682400;0;0;0.0 +16686000;0;0;0.0 +16689600;0;0;0.0 +16693200;0;0;0.0 +16696800;0;0;0.0 +16700400;-41969.5;0;0.0 +16704000;-44836.9;0;0.0 +16707600;-55865.4;0;0.0 +16711200;-55713.1;0;0.0 +16714800;-79081.7;0;0.0 +16718400;-99819.1;0;0.0 +16722000;-94812.0;0;0.0 +16725600;-75901.0;0;0.0 +16729200;-65486.0;0;0.0 +16732800;-75255.1;0;0.0 +16736400;-93071.5;0;0.0 +16740000;-110266.3;0;0.0 +16743600;-98266.1;0;0.0 +16747200;-91475.1;0;0.0 +16750800;-67521.7;0;0.0 +16754400;-39911.2;0;0.0 +16758000;-14804.2;0;0.0 +16761600;0;0;0.0 +16765200;0;0;0.0 +16768800;0;0;0.0 +16772400;0;0;0.0 +16776000;0;0;0.0 +16779600;0;0;0.0 +16783200;0;0;0.0 +16786800;-44449.2;0;0.0 +16790400;-51119.0;0;0.0 +16794000;-61922.4;0;0.0 +16797600;-60455.2;0;0.0 +16801200;-85766.9;0;0.0 +16804800;-104517.8;0;0.0 +16808400;-98861.5;0;0.0 +16812000;-80214.0;0;0.0 +16815600;-69528.9;0;0.0 +16819200;-75150.7;0;0.0 +16822800;-91789.7;0;0.0 +16826400;-109567.3;0;0.0 +16830000;-99856.8;0;0.0 +16833600;-93328.7;0;0.0 +16837200;-69314.3;0;0.0 +16840800;-43319.7;0;0.0 +16844400;-21286.1;0;0.0 +16848000;0;0;0.0 +16851600;0;0;0.0 +16855200;0;0;0.0 +16858800;0;0;0.0 +16862400;-188.1;0;0.0 +16866000;0;0;0.0 +16869600;0;0;0.0 +16873200;-52870.8;0;0.0 +16876800;-54033.7;0;0.0 +16880400;-56711.3;0;0.0 +16884000;-51948.9;0;0.0 +16887600;-72863.2;0;0.0 +16891200;-75935.0;0;0.0 +16894800;-80263.0;0;0.0 +16898400;-73787.1;0;0.0 +16902000;-73084.9;0;0.0 +16905600;-75268.0;0;0.0 +16909200;-70532.4;0;0.0 +16912800;-90208.3;0;0.0 +16916400;-100483.0;0;0.0 +16920000;-84868.8;0;0.0 +16923600;-78125.5;0;0.0 +16927200;-56715.5;0;0.0 +16930800;-32046.6;0;0.0 +16934400;0;0;0.0 +16938000;0;0;0.0 +16941600;0;0;0.0 +16945200;0;0;0.0 +16948800;-735.0;0;0.0 +16952400;-8078.3;0;0.0 +16956000;-13066.5;0;0.0 +16959600;0;0;0.0 +16963200;0;0;0.0 +16966800;-77623.1;0;0.0 +16970400;-72795.7;0;0.0 +16974000;-81466.2;0;0.0 +16977600;-90271.6;0;0.0 +16981200;-86829.1;0;0.0 +16984800;-73802.9;0;0.0 +16988400;-63876.6;0;0.0 +16992000;-74569.5;0;0.0 +16995600;-83444.1;0;0.0 +16999200;-92127.2;0;0.0 +17002800;-87260.2;0;0.0 +17006400;-84020.7;0;0.0 +17010000;-56790.4;0;0.0 +17013600;-32667.2;0;0.0 +17017200;-20478.4;0;0.0 +17020800;0;0;0.0 +17024400;0;0;0.0 +17028000;0;0;0.0 +17031600;0;0;0.0 +17035200;-1001.7;0;0.0 +17038800;0;0;0.0 +17042400;0;0;0.0 +17046000;-55911.6;0;0.0 +17049600;-58644.5;0;0.0 +17053200;-67215.3;0;0.0 +17056800;-61986.7;0;0.0 +17060400;-87677.6;0;0.0 +17064000;-107349.2;0;0.0 +17067600;-101127.2;0;0.0 +17071200;-80859.7;0;0.0 +17074800;-65531.0;0;0.0 +17078400;-65660.7;0;0.0 +17082000;-83997.0;0;0.0 +17085600;-102310.3;0;0.0 +17089200;-96840.9;0;0.0 +17092800;-91828.9;0;0.0 +17096400;-68461.7;0;0.0 +17100000;-43197.8;0;0.0 +17103600;-20701.4;0;0.0 +17107200;0;0;0.0 +17110800;0;0;0.0 +17114400;0;0;0.0 +17118000;0;0;0.0 +17121600;0;0;0.0 +17125200;0;0;0.0 +17128800;0;0;0.0 +17132400;-51318.9;0;0.0 +17136000;-54785.8;0;0.0 +17139600;-64571.7;0;0.0 +17143200;-63658.6;0;0.0 +17146800;-88506.6;0;0.0 +17150400;-106543.5;0;0.0 +17154000;-100983.0;0;0.0 +17157600;-81673.6;0;0.0 +17161200;-69692.8;0;0.0 +17164800;-79667.4;0;0.0 +17168400;-97094.3;0;0.0 +17172000;-113098.9;0;0.0 +17175600;-101518.8;0;0.0 +17179200;-94434.0;0;0.0 +17182800;-70333.6;0;0.0 +17186400;-44157.1;0;0.0 +17190000;-21966.4;0;0.0 +17193600;0;0;0.0 +17197200;0;0;0.0 +17200800;0;0;0.0 +17204400;0;0;0.0 +17208000;-290.5;0;0.0 +17211600;0;0;0.0 +17215200;0;0;0.0 +17218800;-50086.4;0;0.0 +17222400;-45854.1;0;0.0 +17226000;-54888.4;0;0.0 +17229600;-58627.2;0;0.0 +17233200;-87007.2;0;0.0 +17236800;-106601.0;0;0.0 +17240400;-101152.0;0;0.0 +17244000;-82473.3;0;0.0 +17247600;-71434.5;0;0.0 +17251200;-77950.2;0;0.0 +17254800;-91004.2;0;0.0 +17258400;-104309.0;0;0.0 +17262000;-99162.8;0;0.0 +17265600;-94478.6;0;0.0 +17269200;-71205.7;0;0.0 +17272800;-45813.2;0;0.0 +17276400;-23679.5;0;0.0 +17280000;0;0;0.0 +17283600;0;0;0.0 +17287200;0;0;0.0 +17290800;0;0;0.0 +17294400;-2105.8;0;0.0 +17298000;-11888.9;0;0.0 +17301600;-17235.7;0;0.0 +17305200;-41522.2;0;0.0 +17308800;-49413.8;0;0.0 +17312400;-60515.2;0;0.0 +17316000;-61618.1;0;0.0 +17319600;-89376.8;0;0.0 +17323200;-107345.2;0;0.0 +17326800;-102082.8;0;0.0 +17330400;-82420.8;0;0.0 +17334000;-64392.8;0;0.0 +17337600;-70988.4;0;0.0 +17341200;-87127.4;0;0.0 +17344800;-102022.3;0;0.0 +17348400;-98177.5;0;0.0 +17352000;-93860.7;0;0.0 +17355600;-70817.0;0;0.0 +17359200;-45187.3;0;0.0 +17362800;-23127.5;0;0.0 +17366400;0;0;0.0 +17370000;0;0;0.0 +17373600;0;0;0.0 +17377200;0;0;0.0 +17380800;-4480.8;0;0.0 +17384400;-13812.9;0;0.0 +17388000;-19966.7;0;0.0 +17391600;-41452.7;0;0.0 +17395200;-49783.4;0;0.0 +17398800;-63434.3;0;0.0 +17402400;-65113.7;0;0.0 +17406000;-91001.4;0;0.0 +17409600;-109906.0;0;0.0 +17413200;-103900.8;0;0.0 +17416800;-85032.9;0;0.0 +17420400;-67765.8;0;0.0 +17424000;-72008.9;0;0.0 +17427600;-90995.5;0;0.0 +17431200;-103555.6;0;0.0 +17434800;-98570.2;0;0.0 +17438400;-93206.1;0;0.0 +17442000;-69705.9;0;0.0 +17445600;-44007.1;0;0.0 +17449200;-22210.9;0;0.0 +17452800;0;0;0.0 +17456400;0;0;0.0 +17460000;0;0;0.0 +17463600;0;0;0.0 +17467200;-301.6;0;0.0 +17470800;0;0;0.0 +17474400;0;0;0.0 +17478000;-51754.3;0;0.0 +17481600;-51447.7;0;0.0 +17485200;-52561.4;0;0.0 +17488800;-48911.2;0;0.0 +17492400;-70929.7;0;0.0 +17496000;-75221.0;0;0.0 +17499600;-73716.1;0;0.0 +17503200;-62878.5;0;0.0 +17506800;-59194.3;0;0.0 +17510400;-64675.6;0;0.0 +17514000;-66175.3;0;0.0 +17517600;-88207.8;0;0.0 +17521200;-97472.5;0;0.0 +17524800;-81642.9;0;0.0 +17528400;-74461.4;0;0.0 +17532000;-53515.3;0;0.0 +17535600;-28702.6;0;0.0 +17539200;0;0;0.0 +17542800;0;0;0.0 +17546400;0;0;0.0 +17550000;0;0;0.0 +17553600;0;0;0.0 +17557200;-5112.7;0;0.0 +17560800;-8878.5;0;0.0 +17564400;0;0;0.0 +17568000;0;0;0.0 +17571600;-37169.0;0;0.0 +17575200;-49085.4;0;0.0 +17578800;-64308.1;0;0.0 +17582400;-78528.0;0;0.0 +17586000;-80000.2;0;0.0 +17589600;-64195.8;0;0.0 +17593200;-60103.8;0;0.0 +17596800;-66726.9;0;0.0 +17600400;-70765.4;0;0.0 +17604000;-81171.5;0;0.0 +17607600;-80225.9;0;0.0 +17611200;-78953.7;0;0.0 +17614800;-52530.0;0;0.0 +17618400;-27163.6;0;0.0 +17622000;-12294.3;0;0.0 +17625600;0;0;0.0 +17629200;0;0;0.0 +17632800;0;0;0.0 +17636400;0;0;0.0 +17640000;0;0;0.0 +17643600;0;0;0.0 +17647200;0;0;0.0 +17650800;-40597.6;0;0.0 +17654400;-45104.4;0;0.0 +17658000;-56214.8;0;0.0 +17661600;-57196.7;0;0.0 +17665200;-84216.6;0;0.0 +17668800;-103879.2;0;0.0 +17672400;-98254.0;0;0.0 +17676000;-79267.7;0;0.0 +17679600;-63765.2;0;0.0 +17683200;-73384.4;0;0.0 +17686800;-88627.3;0;0.0 +17690400;-104792.9;0;0.0 +17694000;-96458.4;0;0.0 +17697600;-91016.2;0;0.0 +17701200;-67142.5;0;0.0 +17704800;-41264.9;0;0.0 +17708400;-8735.7;0;0.0 +17712000;0;0;0.0 +17715600;0;0;0.0 +17719200;0;0;0.0 +17722800;0;0;0.0 +17726400;0;0;0.0 +17730000;0;0;0.0 +17733600;0;0;0.0 +17737200;-39348.6;0;0.0 +17740800;-42462.1;0;0.0 +17744400;-50327.3;0;0.0 +17748000;-53919.8;0;0.0 +17751600;-82540.1;0;0.0 +17755200;-102689.4;0;0.0 +17758800;-97253.8;0;0.0 +17762400;-78621.5;0;0.0 +17766000;-67764.7;0;0.0 +17769600;-76166.4;0;0.0 +17773200;-92824.2;0;0.0 +17776800;-110502.3;0;0.0 +17780400;-98169.0;0;0.0 +17784000;-91734.3;0;0.0 +17787600;-68093.7;0;0.0 +17791200;-42754.3;0;0.0 +17794800;-20542.6;0;0.0 +17798400;0;0;0.0 +17802000;0;0;0.0 +17805600;0;0;0.0 +17809200;0;0;0.0 +17812800;-122.8;0;0.0 +17816400;0;0;0.0 +17820000;0;0;0.0 +17823600;-51054.0;0;0.0 +17827200;-46741.0;0;0.0 +17830800;-54793.5;0;0.0 +17834400;-56120.4;0;0.0 +17838000;-85563.9;0;0.0 +17841600;-104199.6;0;0.0 +17845200;-96822.9;0;0.0 +17848800;-77702.1;0;0.0 +17852400;-68494.3;0;0.0 +17856000;-75574.9;0;0.0 +17859600;-86296.4;0;0.0 +17863200;-99989.5;0;0.0 +17866800;-94985.5;0;0.0 +17870400;-90959.1;0;0.0 +17874000;-67748.8;0;0.0 +17877600;-42193.7;0;0.0 +17881200;-19503.5;0;0.0 +17884800;0;0;0.0 +17888400;0;0;0.0 +17892000;0;0;0.0 +17895600;0;0;0.0 +17899200;0;0;0.0 +17902800;0;0;0.0 +17906400;0;0;0.0 +17910000;-47934.6;0;0.0 +17913600;-46900.2;0;0.0 +17917200;-57704.3;0;0.0 +17920800;-57286.7;0;0.0 +17924400;-84767.9;0;0.0 +17928000;-106384.2;0;0.0 +17931600;-101387.2;0;0.0 +17935200;-82051.2;0;0.0 +17938800;-69474.6;0;0.0 +17942400;-74796.9;0;0.0 +17946000;-88042.7;0;0.0 +17949600;-100806.7;0;0.0 +17953200;-95962.6;0;0.0 +17956800;-91530.0;0;0.0 +17960400;-68013.4;0;0.0 +17964000;-41350.6;0;0.0 +17967600;-16168.2;0;0.0 +17971200;0;0;0.0 +17974800;0;0;0.0 +17978400;0;0;0.0 +17982000;0;0;0.0 +17985600;0;0;0.0 +17989200;0;0;0.0 +17992800;0;0;0.0 +17996400;-46734.5;0;0.0 +18000000;-43931.2;0;0.0 +18003600;-52003.0;0;0.0 +18007200;-49004.3;0;0.0 +18010800;-74073.3;0;0.0 +18014400;-94491.2;0;0.0 +18018000;-91374.9;0;0.0 +18021600;-69519.4;0;0.0 +18025200;-55466.9;0;0.0 +18028800;-60977.7;0;0.0 +18032400;-76786.4;0;0.0 +18036000;-94212.1;0;0.0 +18039600;-91212.8;0;0.0 +18043200;-87904.7;0;0.0 +18046800;-65469.2;0;0.0 +18050400;-40386.2;0;0.0 +18054000;-18474.4;0;0.0 +18057600;0;0;0.0 +18061200;0;0;0.0 +18064800;0;0;0.0 +18068400;0;0;0.0 +18072000;0;0;0.0 +18075600;0;0;0.0 +18079200;0;0;0.0 +18082800;-48792.9;0;0.0 +18086400;-49385.5;0;0.0 +18090000;-53835.2;0;0.0 +18093600;-53746.3;0;0.0 +18097200;-79834.7;0;0.0 +18100800;-82836.0;0;0.0 +18104400;-82816.6;0;0.0 +18108000;-73622.1;0;0.0 +18111600;-72645.6;0;0.0 +18115200;-77345.1;0;0.0 +18118800;-76083.7;0;0.0 +18122400;-100741.6;0;0.0 +18126000;-102581.1;0;0.0 +18129600;-85182.5;0;0.0 +18133200;-77736.6;0;0.0 +18136800;-55967.7;0;0.0 +18140400;-30768.0;0;0.0 +18144000;0;0;0.0 +18147600;0;0;0.0 +18151200;0;0;0.0 +18154800;0;0;0.0 +18158400;0;0;0.0 +18162000;-5773.2;0;0.0 +18165600;-10714.4;0;0.0 +18169200;0;0;0.0 +18172800;0;0;0.0 +18176400;-50927.0;0;0.0 +18180000;-58019.3;0;0.0 +18183600;-71270.5;0;0.0 +18187200;-84439.2;0;0.0 +18190800;-84857.9;0;0.0 +18194400;-69931.6;0;0.0 +18198000;-62004.3;0;0.0 +18201600;-70731.1;0;0.0 +18205200;-77387.2;0;0.0 +18208800;-87233.3;0;0.0 +18212400;-83203.0;0;0.0 +18216000;-81063.4;0;0.0 +18219600;-54334.0;0;0.0 +18223200;-30372.5;0;0.0 +18226800;-14506.0;0;0.0 +18230400;0;0;0.0 +18234000;0;0;0.0 +18237600;0;0;0.0 +18241200;0;0;0.0 +18244800;0;0;0.0 +18248400;0;0;0.0 +18252000;0;0;0.0 +18255600;-46558.3;0;0.0 +18259200;-49670.1;0;0.0 +18262800;-59075.4;0;0.0 +18266400;-54851.2;0;0.0 +18270000;-81944.7;0;0.0 +18273600;-101853.4;0;0.0 +18277200;-96674.7;0;0.0 +18280800;-77780.3;0;0.0 +18284400;-66367.6;0;0.0 +18288000;-73974.8;0;0.0 +18291600;-93104.1;0;0.0 +18295200;-108138.2;0;0.0 +18298800;-97966.3;0;0.0 +18302400;-92752.4;0;0.0 +18306000;-69119.9;0;0.0 +18309600;-43065.6;0;0.0 +18313200;-20051.5;0;0.0 +18316800;0;0;0.0 +18320400;0;0;0.0 +18324000;0;0;0.0 +18327600;0;0;0.0 +18331200;0;0;0.0 +18334800;0;0;0.0 +18338400;0;0;0.0 +18342000;-40195.2;0;0.0 +18345600;-38972.0;0;0.0 +18349200;-51437.6;0;0.0 +18352800;-53238.9;0;0.0 +18356400;-79282.1;0;0.0 +18360000;-100503.5;0;0.0 +18363600;-95869.2;0;0.0 +18367200;-76902.8;0;0.0 +18370800;-65909.8;0;0.0 +18374400;-73437.2;0;0.0 +18378000;-90382.2;0;0.0 +18381600;-105057.2;0;0.0 +18385200;-95309.7;0;0.0 +18388800;-89881.5;0;0.0 +18392400;-63986.4;0;0.0 +18396000;-33382.7;0;0.0 +18399600;-3371.4;0;0.0 +18403200;0;0;0.0 +18406800;0;0;0.0 +18410400;0;0;0.0 +18414000;0;0;0.0 +18417600;0;0;0.0 +18421200;0;0;0.0 +18424800;0;0;0.0 +18428400;-39805.4;0;0.0 +18432000;-43266.5;0;0.0 +18435600;-53702.6;0;0.0 +18439200;-51314.3;0;0.0 +18442800;-78652.8;0;0.0 +18446400;-98684.5;0;0.0 +18450000;-93034.7;0;0.0 +18453600;-74261.0;0;0.0 +18457200;-63752.1;0;0.0 +18460800;-73242.1;0;0.0 +18464400;-91514.6;0;0.0 +18468000;-107444.5;0;0.0 +18471600;-95317.2;0;0.0 +18475200;-89135.5;0;0.0 +18478800;-63875.2;0;0.0 +18482400;-26729.1;0;0.0 +18486000;-1151.7;0;0.0 +18489600;0;0;0.0 +18493200;0;0;0.0 +18496800;0;0;0.0 +18500400;0;0;0.0 +18504000;0;0;0.0 +18507600;0;0;0.0 +18511200;0;0;0.0 +18514800;-33608.6;0;0.0 +18518400;-37116.3;0;0.0 +18522000;-49972.8;0;0.0 +18525600;-53001.7;0;0.0 +18529200;-80768.7;0;0.0 +18532800;-100590.2;0;0.0 +18536400;-95540.2;0;0.0 +18540000;-77776.0;0;0.0 +18543600;-65982.5;0;0.0 +18547200;-73835.9;0;0.0 +18550800;-91654.9;0;0.0 +18554400;-107912.3;0;0.0 +18558000;-96538.6;0;0.0 +18561600;-90742.1;0;0.0 +18565200;-66819.9;0;0.0 +18568800;-34905.5;0;0.0 +18572400;-3077.6;0;0.0 +18576000;0;0;0.0 +18579600;0;0;0.0 +18583200;0;0;0.0 +18586800;0;0;0.0 +18590400;0;0;0.0 +18594000;0;0;0.0 +18597600;0;0;0.0 +18601200;-38201.6;0;0.0 +18604800;-45268.2;0;0.0 +18608400;-56337.0;0;0.0 +18612000;-57388.0;0;0.0 +18615600;-82228.7;0;0.0 +18619200;-101983.5;0;0.0 +18622800;-97212.7;0;0.0 +18626400;-78239.9;0;0.0 +18630000;-67386.9;0;0.0 +18633600;-76498.7;0;0.0 +18637200;-94380.8;0;0.0 +18640800;-111232.7;0;0.0 +18644400;-98661.1;0;0.0 +18648000;-92028.4;0;0.0 +18651600;-67829.7;0;0.0 +18655200;-41543.4;0;0.0 +18658800;-11394.5;0;0.0 +18662400;0;0;0.0 +18666000;0;0;0.0 +18669600;0;0;0.0 +18673200;0;0;0.0 +18676800;0;0;0.0 +18680400;0;0;0.0 +18684000;0;0;0.0 +18687600;-48178.1;0;0.0 +18691200;-56353.5;0;0.0 +18694800;-62281.1;0;0.0 +18698400;-60950.7;0;0.0 +18702000;-82700.7;0;0.0 +18705600;-85196.1;0;0.0 +18709200;-84677.8;0;0.0 +18712800;-75437.7;0;0.0 +18716400;-73006.1;0;0.0 +18720000;-77277.5;0;0.0 +18723600;-74696.5;0;0.0 +18727200;-92574.2;0;0.0 +18730800;-101530.7;0;0.0 +18734400;-84999.4;0;0.0 +18738000;-77407.6;0;0.0 +18741600;-55912.3;0;0.0 +18745200;-30576.8;0;0.0 +18748800;0;0;0.0 +18752400;0;0;0.0 +18756000;0;0;0.0 +18759600;0;0;0.0 +18763200;0;0;0.0 +18766800;-5683.5;0;0.0 +18770400;-10654.7;0;0.0 +18774000;0;0;0.0 +18777600;0;0;0.0 +18781200;-55797.5;0;0.0 +18784800;-58333.4;0;0.0 +18788400;-72603.9;0;0.0 +18792000;-82208.3;0;0.0 +18795600;-83437.8;0;0.0 +18799200;-68929.2;0;0.0 +18802800;-65597.3;0;0.0 +18806400;-70587.1;0;0.0 +18810000;-80303.4;0;0.0 +18813600;-83428.1;0;0.0 +18817200;-83901.1;0;0.0 +18820800;-81953.6;0;0.0 +18824400;-55771.1;0;0.0 +18828000;-32002.5;0;0.0 +18831600;-19829.9;0;0.0 +18835200;0;0;0.0 +18838800;0;0;0.0 +18842400;0;0;0.0 +18846000;0;0;0.0 +18849600;0;0;0.0 +18853200;0;0;0.0 +18856800;0;0;0.0 +18860400;-46845.1;0;0.0 +18864000;-44854.4;0;0.0 +18867600;-52646.1;0;0.0 +18871200;-51254.7;0;0.0 +18874800;-74815.3;0;0.0 +18878400;-96809.2;0;0.0 +18882000;-89677.3;0;0.0 +18885600;-69462.3;0;0.0 +18889200;-59605.8;0;0.0 +18892800;-69665.6;0;0.0 +18896400;-81462.0;0;0.0 +18900000;-96191.6;0;0.0 +18903600;-92622.2;0;0.0 +18907200;-88925.2;0;0.0 +18910800;-66091.8;0;0.0 +18914400;-40701.3;0;0.0 +18918000;-18618.5;0;0.0 +18921600;0;0;0.0 +18925200;0;0;0.0 +18928800;0;0;0.0 +18932400;0;0;0.0 +18936000;0;0;0.0 +18939600;0;0;0.0 +18943200;0;0;0.0 +18946800;-49116.7;0;0.0 +18950400;-50711.0;0;0.0 +18954000;-62866.6;0;0.0 +18957600;-62907.3;0;0.0 +18961200;-88252.3;0;0.0 +18964800;-107029.7;0;0.0 +18968400;-101086.7;0;0.0 +18972000;-81824.3;0;0.0 +18975600;-70130.7;0;0.0 +18979200;-78269.1;0;0.0 +18982800;-95947.2;0;0.0 +18986400;-111149.9;0;0.0 +18990000;-99329.3;0;0.0 +18993600;-93283.7;0;0.0 +18997200;-69304.7;0;0.0 +19000800;-42907.7;0;0.0 +19004400;-17483.7;0;0.0 +19008000;0;0;0.0 +19011600;0;0;0.0 +19015200;0;0;0.0 +19018800;0;0;0.0 +19022400;0;0;0.0 +19026000;0;0;0.0 +19029600;0;0;0.0 +19033200;-43903.1;0;0.0 +19036800;-47252.8;0;0.0 +19040400;-59678.7;0;0.0 +19044000;-60788.0;0;0.0 +19047600;-88145.9;0;0.0 +19051200;-108134.3;0;0.0 +19054800;-103251.4;0;0.0 +19058400;-84638.0;0;0.0 +19062000;-72785.2;0;0.0 +19065600;-80440.3;0;0.0 +19069200;-93260.7;0;0.0 +19072800;-104272.8;0;0.0 +19076400;-98277.6;0;0.0 +19080000;-92625.3;0;0.0 +19083600;-69156.0;0;0.0 +19087200;-42454.0;0;0.0 +19090800;-12166.0;0;0.0 +19094400;0;0;0.0 +19098000;0;0;0.0 +19101600;0;0;0.0 +19105200;0;0;0.0 +19108800;0;0;0.0 +19112400;0;0;0.0 +19116000;0;0;0.0 +19119600;-45688.4;0;0.0 +19123200;-50384.8;0;0.0 +19126800;-62262.6;0;0.0 +19130400;-62809.3;0;0.0 +19134000;-89738.9;0;0.0 +19137600;-108280.7;0;0.0 +19141200;-99832.8;0;0.0 +19144800;-82580.7;0;0.0 +19148400;-72011.1;0;0.0 +19152000;-79601.0;0;0.0 +19155600;-95979.3;0;0.0 +19159200;-104405.7;0;0.0 +19162800;-97804.7;0;0.0 +19166400;-93764.1;0;0.0 +19170000;-71122.9;0;0.0 +19173600;-45605.2;0;0.0 +19177200;-22568.5;0;0.0 +19180800;0;0;0.0 +19184400;0;0;0.0 +19188000;0;0;0.0 +19191600;0;0;0.0 +19195200;0;0;0.0 +19198800;0;0;0.0 +19202400;0;0;0.0 +19206000;-48440.9;0;0.0 +19209600;-48851.1;0;0.0 +19213200;-57350.2;0;0.0 +19216800;-58420.1;0;0.0 +19220400;-84370.4;0;0.0 +19224000;-104207.3;0;0.0 +19227600;-98639.3;0;0.0 +19231200;-80367.7;0;0.0 +19234800;-70166.9;0;0.0 +19238400;-77904.6;0;0.0 +19242000;-94820.4;0;0.0 +19245600;-102386.3;0;0.0 +19249200;-95570.4;0;0.0 +19252800;-90196.6;0;0.0 +19256400;-66017.9;0;0.0 +19260000;-31862.8;0;0.0 +19263600;-2352.7;0;0.0 +19267200;0;0;0.0 +19270800;0;0;0.0 +19274400;0;0;0.0 +19278000;0;0;0.0 +19281600;0;0;0.0 +19285200;0;0;0.0 +19288800;0;0;0.0 +19292400;-41545.4;0;0.0 +19296000;-43483.3;0;0.0 +19299600;-46836.4;0;0.0 +19303200;-47939.9;0;0.0 +19306800;-72509.7;0;0.0 +19310400;-78287.4;0;0.0 +19314000;-79136.1;0;0.0 +19317600;-70824.8;0;0.0 +19321200;-70616.9;0;0.0 +19324800;-76063.4;0;0.0 +19328400;-78151.5;0;0.0 +19332000;-92358.9;0;0.0 +19335600;-98496.3;0;0.0 +19339200;-80709.3;0;0.0 +19342800;-70589.9;0;0.0 +19346400;-37967.8;0;0.0 +19350000;-2985.1;0;0.0 +19353600;0;0;0.0 +19357200;0;0;0.0 +19360800;0;0;0.0 +19364400;0;0;0.0 +19368000;0;0;0.0 +19371600;-2190.8;0;0.0 +19375200;-6517.2;0;0.0 +19378800;0;0;0.0 +19382400;0;0;0.0 +19386000;-41624.9;0;0.0 +19389600;-43986.2;0;0.0 +19393200;-64197.2;0;0.0 +19396800;-80360.5;0;0.0 +19400400;-81592.6;0;0.0 +19404000;-69444.7;0;0.0 +19407600;-65371.7;0;0.0 +19411200;-73355.8;0;0.0 +19414800;-72056.8;0;0.0 +19418400;-79424.9;0;0.0 +19422000;-80536.2;0;0.0 +19425600;-79478.7;0;0.0 +19429200;-53785.2;0;0.0 +19432800;-30706.4;0;0.0 +19436400;-19003.2;0;0.0 +19440000;0;0;0.0 +19443600;0;0;0.0 +19447200;0;0;0.0 +19450800;0;0;0.0 +19454400;-268.6;0;0.0 +19458000;0;0;0.0 +19461600;0;0;0.0 +19465200;-48578.2;0;0.0 +19468800;-47106.5;0;0.0 +19472400;-54808.0;0;0.0 +19476000;-52532.4;0;0.0 +19479600;-78526.9;0;0.0 +19483200;-100783.9;0;0.0 +19486800;-96264.6;0;0.0 +19490400;-76491.9;0;0.0 +19494000;-67182.2;0;0.0 +19497600;-75567.0;0;0.0 +19501200;-92589.7;0;0.0 +19504800;-102142.0;0;0.0 +19508400;-96210.9;0;0.0 +19512000;-91919.9;0;0.0 +19515600;-69145.5;0;0.0 +19519200;-43405.6;0;0.0 +19522800;-21849.2;0;0.0 +19526400;0;0;0.0 +19530000;0;0;0.0 +19533600;0;0;0.0 +19537200;0;0;0.0 +19540800;-421.3;0;0.0 +19544400;0;0;0.0 +19548000;0;0;0.0 +19551600;-50421.6;0;0.0 +19555200;-50691.0;0;0.0 +19558800;-61647.4;0;0.0 +19562400;-55481.4;0;0.0 +19566000;-81117.4;0;0.0 +19569600;-102165.0;0;0.0 +19573200;-96810.8;0;0.0 +19576800;-76548.3;0;0.0 +19580400;-64573.3;0;0.0 +19584000;-66442.5;0;0.0 +19587600;-79874.9;0;0.0 +19591200;-94025.5;0;0.0 +19594800;-90923.3;0;0.0 +19598400;-87636.7;0;0.0 +19602000;-64128.0;0;0.0 +19605600;-36921.0;0;0.0 +19609200;-6458.9;0;0.0 +19612800;0;0;0.0 +19616400;0;0;0.0 +19620000;0;0;0.0 +19623600;0;0;0.0 +19627200;0;0;0.0 +19630800;0;0;0.0 +19634400;0;0;0.0 +19638000;-39371.7;0;0.0 +19641600;-43450.3;0;0.0 +19645200;-54745.2;0;0.0 +19648800;-55760.1;0;0.0 +19652400;-81957.7;0;0.0 +19656000;-102340.8;0;0.0 +19659600;-97644.3;0;0.0 +19663200;-78831.3;0;0.0 +19666800;-67529.7;0;0.0 +19670400;-75631.6;0;0.0 +19674000;-92857.7;0;0.0 +19677600;-101372.5;0;0.0 +19681200;-95319.4;0;0.0 +19684800;-90580.5;0;0.0 +19688400;-66852.4;0;0.0 +19692000;-40404.4;0;0.0 +19695600;-5844.3;0;0.0 +19699200;0;0;0.0 +19702800;0;0;0.0 +19706400;0;0;0.0 +19710000;0;0;0.0 +19713600;0;0;0.0 +19717200;0;0;0.0 +19720800;0;0;0.0 +19724400;-39300.3;0;0.0 +19728000;-45716.0;0;0.0 +19731600;-56420.6;0;0.0 +19735200;-58473.2;0;0.0 +19738800;-85012.7;0;0.0 +19742400;-104552.1;0;0.0 +19746000;-98831.3;0;0.0 +19749600;-81126.7;0;0.0 +19753200;-70303.0;0;0.0 +19756800;-78412.9;0;0.0 +19760400;-95025.5;0;0.0 +19764000;-102167.3;0;0.0 +19767600;-95310.5;0;0.0 +19771200;-90274.1;0;0.0 +19774800;-66534.1;0;0.0 +19778400;-38338.5;0;0.0 +19782000;-7987.1;0;0.0 +19785600;0;0;0.0 +19789200;0;0;0.0 +19792800;0;0;0.0 +19796400;0;0;0.0 +19800000;0;0;0.0 +19803600;0;0;0.0 +19807200;0;0;0.0 +19810800;-41856.3;0;0.0 +19814400;-48514.6;0;0.0 +19818000;-58884.8;0;0.0 +19821600;-59055.9;0;0.0 +19825200;-85037.4;0;0.0 +19828800;-105136.4;0;0.0 +19832400;-100520.4;0;0.0 +19836000;-82720.8;0;0.0 +19839600;-71480.8;0;0.0 +19843200;-77830.2;0;0.0 +19846800;-93290.0;0;0.0 +19850400;-103088.7;0;0.0 +19854000;-96954.4;0;0.0 +19857600;-91742.6;0;0.0 +19861200;-68123.1;0;0.0 +19864800;-42196.4;0;0.0 +19868400;-20710.7;0;0.0 +19872000;0;0;0.0 +19875600;0;0;0.0 +19879200;0;0;0.0 +19882800;0;0;0.0 +19886400;0;0;0.0 +19890000;0;0;0.0 +19893600;0;0;0.0 +19897200;-50746.2;0;0.0 +19900800;-56833.6;0;0.0 +19904400;-61691.1;0;0.0 +19908000;-60624.7;0;0.0 +19911600;-81712.3;0;0.0 +19915200;-84548.5;0;0.0 +19918800;-83708.5;0;0.0 +19922400;-74604.4;0;0.0 +19926000;-69547.3;0;0.0 +19929600;-74497.3;0;0.0 +19933200;-75636.6;0;0.0 +19936800;-90919.7;0;0.0 +19940400;-98760.5;0;0.0 +19944000;-82192.3;0;0.0 +19947600;-74818.6;0;0.0 +19951200;-52749.3;0;0.0 +19954800;-25226.3;0;0.0 +19958400;0;0;0.0 +19962000;0;0;0.0 +19965600;0;0;0.0 +19969200;0;0;0.0 +19972800;0;0;0.0 +19976400;-3891.3;0;0.0 +19980000;-8261.4;0;0.0 +19983600;0;0;0.0 +19987200;0;0;0.0 +19990800;-23754.1;0;0.0 +19994400;-42799.2;0;0.0 +19998000;-58784.8;0;0.0 +20001600;-70693.6;0;0.0 +20005200;-72822.7;0;0.0 +20008800;-59727.5;0;0.0 +20012400;-51994.8;0;0.0 +20016000;-56391.5;0;0.0 +20019600;-67109.1;0;0.0 +20023200;-73646.3;0;0.0 +20026800;-75173.0;0;0.0 +20030400;-74780.2;0;0.0 +20034000;-48330.8;0;0.0 +20037600;-17719.0;0;0.0 +20041200;-5919.7;0;0.0 +20044800;0;0;0.0 +20048400;0;0;0.0 +20052000;0;0;0.0 +20055600;0;0;0.0 +20059200;0;0;0.0 +20062800;0;0;0.0 +20066400;0;0;0.0 +20070000;-34275.2;0;0.0 +20073600;-28781.9;0;0.0 +20077200;-36696.9;0;0.0 +20080800;-36427.8;0;0.0 +20084400;-61126.3;0;0.0 +20088000;-86035.3;0;0.0 +20091600;-82794.5;0;0.0 +20095200;-63214.3;0;0.0 +20098800;-51190.1;0;0.0 +20102400;-58047.5;0;0.0 +20106000;-73730.8;0;0.0 +20109600;-89184.6;0;0.0 +20113200;-86856.0;0;0.0 +20116800;-83244.5;0;0.0 +20120400;-60144.3;0;0.0 +20124000;-22762.9;0;0.0 +20127600;-249.0;0;0.0 +20131200;0;0;0.0 +20134800;0;0;0.0 +20138400;0;0;0.0 +20142000;0;0;0.0 +20145600;0;0;0.0 +20149200;0;0;0.0 +20152800;0;0;0.0 +20156400;-31657.2;0;0.0 +20160000;-27321.8;0;0.0 +20163600;-35888.7;0;0.0 +20167200;-39240.1;0;0.0 +20170800;-69453.0;0;0.0 +20174400;-92750.7;0;0.0 +20178000;-88047.1;0;0.0 +20181600;-69917.6;0;0.0 +20185200;-60309.3;0;0.0 +20188800;-69637.2;0;0.0 +20192400;-85808.4;0;0.0 +20196000;-95474.4;0;0.0 +20199600;-89982.6;0;0.0 +20203200;-85373.5;0;0.0 +20206800;-62088.0;0;0.0 +20210400;-22748.1;0;0.0 +20214000;-167.4;0;0.0 +20217600;0;0;0.0 +20221200;0;0;0.0 +20224800;0;0;0.0 +20228400;0;0;0.0 +20232000;0;0;0.0 +20235600;0;0;0.0 +20239200;0;0;0.0 +20242800;-30387.9;0;0.0 +20246400;-26134.4;0;0.0 +20250000;-32889.4;0;0.0 +20253600;-34774.7;0;0.0 +20257200;-68371.6;0;0.0 +20260800;-93000.6;0;0.0 +20264400;-87978.5;0;0.0 +20268000;-68990.3;0;0.0 +20271600;-53630.6;0;0.0 +20275200;-59965.8;0;0.0 +20278800;-74684.4;0;0.0 +20282400;-90378.9;0;0.0 +20286000;-88154.5;0;0.0 +20289600;-85221.6;0;0.0 +20293200;-61537.1;0;0.0 +20296800;-24853.6;0;0.0 +20300400;-2509.8;0;0.0 +20304000;0;0;0.0 +20307600;0;0;0.0 +20311200;0;0;0.0 +20314800;0;0;0.0 +20318400;0;0;0.0 +20322000;0;0;0.0 +20325600;0;0;0.0 +20329200;-34063.5;0;0.0 +20332800;-18246.8;0;0.0 +20336400;-19200.7;0;0.0 +20340000;-17272.8;0;0.0 +20343600;-57152.3;0;0.0 +20347200;-88324.8;0;0.0 +20350800;-87349.3;0;0.0 +20354400;-69897.5;0;0.0 +20358000;-54944.7;0;0.0 +20361600;-58739.4;0;0.0 +20365200;-73922.8;0;0.0 +20368800;-90318.3;0;0.0 +20372400;-87593.0;0;0.0 +20376000;-84503.4;0;0.0 +20379600;-61523.5;0;0.0 +20383200;-32240.8;0;0.0 +20386800;-6154.0;0;0.0 +20390400;0;0;0.0 +20394000;0;0;0.0 +20397600;0;0;0.0 +20401200;0;0;0.0 +20404800;0;0;0.0 +20408400;0;0;0.0 +20412000;0;0;0.0 +20415600;-39467.2;0;0.0 +20419200;-40889.2;0;0.0 +20422800;-46974.7;0;0.0 +20426400;-48222.6;0;0.0 +20430000;-74931.2;0;0.0 +20433600;-93808.6;0;0.0 +20437200;-90549.3;0;0.0 +20440800;-73418.8;0;0.0 +20444400;-59884.8;0;0.0 +20448000;-67490.5;0;0.0 +20451600;-80234.6;0;0.0 +20455200;-94548.5;0;0.0 +20458800;-90424.9;0;0.0 +20462400;-86765.7;0;0.0 +20466000;-64637.5;0;0.0 +20469600;-37420.4;0;0.0 +20473200;-9670.6;0;0.0 +20476800;0;0;0.0 +20480400;0;0;0.0 +20484000;0;0;0.0 +20487600;0;0;0.0 +20491200;0;0;0.0 +20494800;0;0;0.0 +20498400;0;0;0.0 +20502000;-44623.9;0;0.0 +20505600;-46974.3;0;0.0 +20509200;-53275.1;0;0.0 +20512800;-51676.1;0;0.0 +20516400;-75273.1;0;0.0 +20520000;-80671.3;0;0.0 +20523600;-80191.4;0;0.0 +20527200;-66281.4;0;0.0 +20530800;-66795.1;0;0.0 +20534400;-63591.2;0;0.0 +20538000;-69023.8;0;0.0 +20541600;-88166.9;0;0.0 +20545200;-97374.4;0;0.0 +20548800;-81357.4;0;0.0 +20552400;-74266.0;0;0.0 +20556000;-53467.9;0;0.0 +20559600;-29319.7;0;0.0 +20563200;0;0;0.0 +20566800;0;0;0.0 +20570400;0;0;0.0 +20574000;0;0;0.0 +20577600;0;0;0.0 +20581200;-4337.1;0;0.0 +20584800;-8341.0;0;0.0 +20588400;0;0;0.0 +20592000;0;0;0.0 +20595600;-34764.6;0;0.0 +20599200;-46604.6;0;0.0 +20602800;-61448.5;0;0.0 +20606400;-76128.0;0;0.0 +20610000;-78191.6;0;0.0 +20613600;-65970.9;0;0.0 +20617200;-60955.2;0;0.0 +20620800;-67258.5;0;0.0 +20624400;-74550.3;0;0.0 +20628000;-77327.3;0;0.0 +20631600;-77648.1;0;0.0 +20635200;-76648.9;0;0.0 +20638800;-50409.2;0;0.0 +20642400;-26255.8;0;0.0 +20646000;-11158.8;0;0.0 +20649600;0;0;0.0 +20653200;0;0;0.0 +20656800;0;0;0.0 +20660400;0;0;0.0 +20664000;0;0;0.0 +20667600;0;0;0.0 +20671200;0;0;0.0 +20674800;-41384.2;0;0.0 +20678400;-42319.5;0;0.0 +20682000;-50807.4;0;0.0 +20685600;-51298.5;0;0.0 +20689200;-78871.4;0;0.0 +20692800;-98737.2;0;0.0 +20696400;-92734.8;0;0.0 +20700000;-71528.6;0;0.0 +20703600;-62539.8;0;0.0 +20707200;-62078.8;0;0.0 +20710800;-75313.6;0;0.0 +20714400;-91988.7;0;0.0 +20718000;-89883.0;0;0.0 +20721600;-86641.3;0;0.0 +20725200;-64670.2;0;0.0 +20728800;-38885.9;0;0.0 +20732400;-11768.0;0;0.0 +20736000;0;0;0.0 +20739600;0;0;0.0 +20743200;0;0;0.0 +20746800;0;0;0.0 +20750400;0;0;0.0 +20754000;0;0;0.0 +20757600;0;0;0.0 +20761200;-38625.1;0;0.0 +20764800;-34179.4;0;0.0 +20768400;-39450.4;0;0.0 +20772000;-38322.3;0;0.0 +20775600;-66769.8;0;0.0 +20779200;-88858.2;0;0.0 +20782800;-85365.7;0;0.0 +20786400;-64816.9;0;0.0 +20790000;-52575.0;0;0.0 +20793600;-57302.9;0;0.0 +20797200;-74007.4;0;0.0 +20800800;-90793.9;0;0.0 +20804400;-88567.5;0;0.0 +20808000;-85709.8;0;0.0 +20811600;-63557.0;0;0.0 +20815200;-38135.7;0;0.0 +20818800;-14821.3;0;0.0 +20822400;0;0;0.0 +20826000;0;0;0.0 +20829600;0;0;0.0 +20833200;0;0;0.0 +20836800;0;0;0.0 +20840400;0;0;0.0 +20844000;0;0;0.0 +20847600;-42987.4;0;0.0 +20851200;-43016.7;0;0.0 +20854800;-47634.6;0;0.0 +20858400;-38942.1;0;0.0 +20862000;-65671.0;0;0.0 +20865600;-87596.5;0;0.0 +20869200;-82774.7;0;0.0 +20872800;-64975.5;0;0.0 +20876400;-53633.5;0;0.0 +20880000;-47424.8;0;0.0 +20883600;-54616.7;0;0.0 +20887200;-77209.7;0;0.0 +20890800;-70724.7;0;0.0 +20894400;-57580.2;0;0.0 +20898000;-28432.5;0;0.0 +20901600;-2843.8;0;0.0 +20905200;0;0;0.0 +20908800;0;0;0.0 +20912400;0;0;0.0 +20916000;0;0;0.0 +20919600;0;0;0.0 +20923200;0;0;0.0 +20926800;0;0;0.0 +20930400;0;0;0.0 +20934000;-22508.9;0;0.0 +20937600;-6512.3;0;0.0 +20941200;-2009.0;0;0.0 +20944800;-443.4;0;0.0 +20948400;-27031.1;0;0.0 +20952000;-62194.6;0;0.0 +20955600;-66264.7;0;0.0 +20959200;-47049.6;0;0.0 +20962800;-31188.0;0;0.0 +20966400;-37305.1;0;0.0 +20970000;-56380.0;0;0.0 +20973600;-70401.1;0;0.0 +20977200;-57600.7;0;0.0 +20980800;-58129.1;0;0.0 +20984400;-24524.8;0;0.0 +20988000;-3552.4;0;0.0 +20991600;0;0;0.0 +20995200;0;0;0.0 +20998800;0;0;0.0 +21002400;0;0;0.0 +21006000;0;0;0.0 +21009600;0;0;0.0 +21013200;0;0;0.0 +21016800;0;0;0.0 +21020400;-25439.3;0;0.0 +21024000;-6395.7;0;0.0 +21027600;-8994.1;0;0.0 +21031200;-18163.0;0;0.0 +21034800;-51816.1;0;0.0 +21038400;-76252.8;0;0.0 +21042000;-76736.1;0;0.0 +21045600;-55110.9;0;0.0 +21049200;-47507.7;0;0.0 +21052800;-53728.8;0;0.0 +21056400;-73333.8;0;0.0 +21060000;-83374.9;0;0.0 +21063600;-77042.2;0;0.0 +21067200;-72315.3;0;0.0 +21070800;-33255.9;0;0.0 +21074400;-1591.6;0;0.0 +21078000;0;0;0.0 +21081600;0;0;0.0 +21085200;0;0;0.0 +21088800;0;0;0.0 +21092400;0;0;0.0 +21096000;0;0;0.0 +21099600;0;0;0.0 +21103200;0;0;0.0 +21106800;-24130.9;0;0.0 +21110400;-12308.6;0;0.0 +21114000;-18947.6;0;0.0 +21117600;-17193.0;0;0.0 +21121200;-51906.2;0;0.0 +21124800;-58568.7;0;0.0 +21128400;-61993.7;0;0.0 +21132000;-55222.0;0;0.0 +21135600;-52498.1;0;0.0 +21139200;-59777.4;0;0.0 +21142800;-59740.9;0;0.0 +21146400;-76782.7;0;0.0 +21150000;-82100.3;0;0.0 +21153600;-50315.4;0;0.0 +21157200;-37033.3;0;0.0 +21160800;-2661.0;0;0.0 +21164400;0;0;0.0 +21168000;0;0;0.0 +21171600;0;0;0.0 +21175200;0;0;0.0 +21178800;0;0;0.0 +21182400;0;552.1;0.0 +21186000;0;164.3;0.0 +21189600;-568.2;11.6;0.0 +21193200;0;0;0.0 +21196800;0;0;0.0 +21200400;0;867.3;0.0 +21204000;-7383.4;0;0.0 +21207600;-34175.3;0;0.0 +21211200;-57332.3;0;0.0 +21214800;-60691.9;0;0.0 +21218400;-46214.3;0;0.0 +21222000;-40756.5;0;0.0 +21225600;-51008.7;0;0.0 +21229200;-58877.3;0;0.0 +21232800;-61923.5;0;0.0 +21236400;-60236.6;0;0.0 +21240000;-48447.9;0;0.0 +21243600;-9135.7;0;0.0 +21247200;0;0;0.0 +21250800;0;0;0.0 +21254400;0;0;0.0 +21258000;0;0;0.0 +21261600;0;0;0.0 +21265200;0;0;0.0 +21268800;0;1196.8;0.0 +21272400;0;0;0.0 +21276000;0;0;0.0 +21279600;-12225.9;0;0.0 +21283200;-2852.7;0;0.0 +21286800;-11562.2;0;0.0 +21290400;-25059.6;0;0.0 +21294000;-58364.4;0;0.0 +21297600;-82939.3;0;0.0 +21301200;-80537.7;0;0.0 +21304800;-62066.3;0;0.0 +21308400;-53259.1;0;0.0 +21312000;-60670.2;0;0.0 +21315600;-77786.3;0;0.0 +21319200;-84879.9;0;0.0 +21322800;-70751.7;0;0.0 +21326400;-63213.8;0;0.0 +21330000;-13106.6;0;0.0 +21333600;0;0;0.0 +21337200;0;0;0.0 +21340800;0;0;0.0 +21344400;0;0;0.0 +21348000;0;0;0.0 +21351600;0;0;0.0 +21355200;0;1004.7;0.0 +21358800;0;0;0.0 +21362400;0;0;0.0 +21366000;-22677.8;0;0.0 +21369600;-14862.6;0;0.0 +21373200;-4509.7;0;0.0 +21376800;-15047.2;0;0.0 +21380400;-53389.8;0;0.0 +21384000;-77274.1;0;0.0 +21387600;-79194.5;0;0.0 +21391200;-63609.5;0;0.0 +21394800;-54310.5;0;0.0 +21398400;-63165.9;0;0.0 +21402000;-79005.5;0;0.0 +21405600;-86867.2;0;0.0 +21409200;-77548.8;0;0.0 +21412800;-64492.2;0;0.0 +21416400;-24485.0;0;0.0 +21420000;-4862.5;0;0.0 +21423600;0;0;0.0 +21427200;0;0;0.0 +21430800;0;0;0.0 +21434400;0;0;0.0 +21438000;0;0;0.0 +21441600;0;1045.4;0.0 +21445200;0;0;0.0 +21448800;0;0;0.0 +21452400;-19350.4;0;0.0 +21456000;-4858.4;0;0.0 +21459600;-6055.4;0;0.0 +21463200;-18656.8;0;0.0 +21466800;-48269.0;0;0.0 +21470400;-73687.2;0;0.0 +21474000;-70123.0;0;0.0 +21477600;-41373.7;0;0.0 +21481200;-28711.1;0;0.0 +21484800;-35720.2;0;0.0 +21488400;-55134.4;0;0.0 +21492000;-71407.4;0;0.0 +21495600;-72879.6;0;0.0 +21499200;-63185.9;0;0.0 +21502800;-42087.4;0;0.0 +21506400;-10839.8;0;0.0 +21510000;0;0;0.0 +21513600;0;0;0.0 +21517200;0;0;0.0 +21520800;0;0;0.0 +21524400;0;0;0.0 +21528000;0;0;0.0 +21531600;0;0;0.0 +21535200;0;0;0.0 +21538800;-25340.7;0;0.0 +21542400;-7136.5;0;0.0 +21546000;-16811.6;0;0.0 +21549600;-20519.3;0;0.0 +21553200;-50318.5;0;0.0 +21556800;-76375.6;0;0.0 +21560400;-78554.3;0;0.0 +21564000;-60466.4;0;0.0 +21567600;-51044.1;0;0.0 +21571200;-61444.7;0;0.0 +21574800;-77379.2;0;0.0 +21578400;-87406.6;0;0.0 +21582000;-84154.3;0;0.0 +21585600;-81063.3;0;0.0 +21589200;-58285.0;0;0.0 +21592800;-32546.0;0;0.0 +21596400;-2978.3;0;0.0 +21600000;0;0;0.0 +21603600;0;0;0.0 +21607200;0;0;0.0 +21610800;0;0;0.0 +21614400;0;0;0.0 +21618000;0;0;0.0 +21621600;0;0;0.0 +21625200;-36193.1;0;0.0 +21628800;-39294.0;0;0.0 +21632400;-46423.3;0;0.0 +21636000;-48961.6;0;0.0 +21639600;-75356.8;0;0.0 +21643200;-95070.3;0;0.0 +21646800;-89043.6;0;0.0 +21650400;-71471.4;0;0.0 +21654000;-61778.7;0;0.0 +21657600;-68790.6;0;0.0 +21661200;-79055.8;0;0.0 +21664800;-91978.5;0;0.0 +21668400;-89239.5;0;0.0 +21672000;-86111.0;0;0.0 +21675600;-64133.9;0;0.0 +21679200;-39155.1;0;0.0 +21682800;-7619.7;0;0.0 +21686400;0;0;0.0 +21690000;0;0;0.0 +21693600;0;0;0.0 +21697200;0;0;0.0 +21700800;0;0;0.0 +21704400;0;0;0.0 +21708000;0;0;0.0 +21711600;-42524.8;0;0.0 +21715200;-47467.8;0;0.0 +21718800;-51749.7;0;0.0 +21722400;-51806.7;0;0.0 +21726000;-75829.7;0;0.0 +21729600;-75077.0;0;0.0 +21733200;-77831.4;0;0.0 +21736800;-68995.3;0;0.0 +21740400;-66497.4;0;0.0 +21744000;-69423.1;0;0.0 +21747600;-71691.3;0;0.0 +21751200;-86022.7;0;0.0 +21754800;-93393.5;0;0.0 +21758400;-70723.8;0;0.0 +21762000;-57152.8;0;0.0 +21765600;-16354.7;0;0.0 +21769200;0;0;0.0 +21772800;0;0;0.0 +21776400;0;0;0.0 +21780000;0;0;0.0 +21783600;0;0;0.0 +21787200;0;0;0.0 +21790800;-459.3;0;0.0 +21794400;-5174.2;0;0.0 +21798000;0;0;0.0 +21801600;0;0;0.0 +21805200;-417.8;320.7;0.0 +21808800;-2145.1;0;0.0 +21812400;-20452.7;0;0.0 +21816000;-47613.5;0;0.0 +21819600;-54810.3;0;0.0 +21823200;-44411.6;0;0.0 +21826800;-37223.5;0;0.0 +21830400;-48503.2;0;0.0 +21834000;-48748.2;0;0.0 +21837600;-53507.5;0;0.0 +21841200;-45084.8;0;0.0 +21844800;-35823.8;0;0.0 +21848400;-10060.5;0;0.0 +21852000;0;0;0.0 +21855600;0;0;0.0 +21859200;0;0;0.0 +21862800;0;0;0.0 +21866400;0;0;0.0 +21870000;0;0;0.0 +21873600;0;410.2;0.0 +21877200;0;0;0.0 +21880800;0;0;0.0 +21884400;-19326.2;0;0.0 +21888000;-6902.8;0;0.0 +21891600;-4858.9;0;0.0 +21895200;-686.7;0;0.0 +21898800;-24685.2;0;0.0 +21902400;-65880.7;0;0.0 +21906000;-68704.3;0;0.0 +21909600;-54744.2;0;0.0 +21913200;-44477.1;0;0.0 +21916800;-54865.6;0;0.0 +21920400;-72913.2;0;0.0 +21924000;-82451.5;0;0.0 +21927600;-73209.6;0;0.0 +21931200;-68799.3;0;0.0 +21934800;-31678.5;0;0.0 +21938400;-6376.3;0;0.0 +21942000;0;0;0.0 +21945600;0;0;0.0 +21949200;0;0;0.0 +21952800;0;0;0.0 +21956400;0;0;0.0 +21960000;0;1012.0;0.0 +21963600;0;0;0.0 +21967200;0;0;0.0 +21970800;-21219.1;0;0.0 +21974400;-4736.2;0;0.0 +21978000;-18798.4;0;0.0 +21981600;-29745.5;0;0.0 +21985200;-63396.2;0;0.0 +21988800;-86570.1;0;0.0 +21992400;-81920.6;0;0.0 +21996000;-64296.7;0;0.0 +21999600;-54213.1;0;0.0 +22003200;-59021.4;0;0.0 +22006800;-73918.1;0;0.0 +22010400;-87375.6;0;0.0 +22014000;-84663.9;0;0.0 +22017600;-81608.0;0;0.0 +22021200;-59242.1;0;0.0 +22024800;-20530.3;0;0.0 +22028400;-861.0;0;0.0 +22032000;0;0;0.0 +22035600;0;0;0.0 +22039200;0;0;0.0 +22042800;0;0;0.0 +22046400;0;0;0.0 +22050000;0;0;0.0 +22053600;0;0;0.0 +22057200;-37541.8;0;0.0 +22060800;-38348.5;0;0.0 +22064400;-44257.3;0;0.0 +22068000;-46242.1;0;0.0 +22071600;-75761.0;0;0.0 +22075200;-95920.6;0;0.0 +22078800;-89410.3;0;0.0 +22082400;-70604.3;0;0.0 +22086000;-54149.7;0;0.0 +22089600;-58984.2;0;0.0 +22093200;-74025.3;0;0.0 +22096800;-90500.5;0;0.0 +22100400;-88458.5;0;0.0 +22104000;-86085.4;0;0.0 +22107600;-64283.1;0;0.0 +22111200;-40038.9;0;0.0 +22114800;-18754.8;0;0.0 +22118400;0;0;0.0 +22122000;0;0;0.0 +22125600;0;0;0.0 +22129200;0;0;0.0 +22132800;0;0;0.0 +22136400;0;0;0.0 +22140000;0;0;0.0 +22143600;-44772.3;0;0.0 +22147200;-44300.8;0;0.0 +22150800;-48842.8;0;0.0 +22154400;-46098.1;0;0.0 +22158000;-75619.1;0;0.0 +22161600;-94613.6;0;0.0 +22165200;-87793.0;0;0.0 +22168800;-66389.6;0;0.0 +22172400;-52978.5;0;0.0 +22176000;-59398.1;0;0.0 +22179600;-74297.6;0;0.0 +22183200;-91243.6;0;0.0 +22186800;-88829.1;0;0.0 +22190400;-85749.5;0;0.0 +22194000;-63257.0;0;0.0 +22197600;-37673.3;0;0.0 +22201200;-13399.0;0;0.0 +22204800;0;0;0.0 +22208400;0;0;0.0 +22212000;0;0;0.0 +22215600;0;0;0.0 +22219200;0;0;0.0 +22222800;0;0;0.0 +22226400;0;0;0.0 +22230000;-41255.7;0;0.0 +22233600;-40421.2;0;0.0 +22237200;-50583.8;0;0.0 +22240800;-52065.3;0;0.0 +22244400;-81105.8;0;0.0 +22248000;-102749.9;0;0.0 +22251600;-94083.1;0;0.0 +22255200;-71504.4;0;0.0 +22258800;-56848.8;0;0.0 +22262400;-62856.1;0;0.0 +22266000;-77327.2;0;0.0 +22269600;-93436.9;0;0.0 +22273200;-90896.3;0;0.0 +22276800;-87919.8;0;0.0 +22280400;-65423.9;0;0.0 +22284000;-40050.8;0;0.0 +22287600;-17936.0;0;0.0 +22291200;0;0;0.0 +22294800;0;0;0.0 +22298400;0;0;0.0 +22302000;0;0;0.0 +22305600;0;0;0.0 +22309200;0;0;0.0 +22312800;0;0;0.0 +22316400;-48068.3;0;0.0 +22320000;-54212.2;0;0.0 +22323600;-57121.1;0;0.0 +22327200;-50118.6;0;0.0 +22330800;-76524.4;0;0.0 +22334400;-82407.6;0;0.0 +22338000;-82066.0;0;0.0 +22341600;-73736.5;0;0.0 +22345200;-68901.5;0;0.0 +22348800;-74709.8;0;0.0 +22352400;-72514.4;0;0.0 +22356000;-89603.1;0;0.0 +22359600;-98673.2;0;0.0 +22363200;-83084.6;0;0.0 +22366800;-76562.0;0;0.0 +22370400;-55298.5;0;0.0 +22374000;-31281.3;0;0.0 +22377600;0;0;0.0 +22381200;0;0;0.0 +22384800;0;0;0.0 +22388400;0;0;0.0 +22392000;-571.8;0;0.0 +22395600;-7875.9;0;0.0 +22399200;-12159.7;0;0.0 +22402800;0;0;0.0 +22406400;0;0;0.0 +22410000;-49238.9;0;0.0 +22413600;-46625.9;0;0.0 +22417200;-61171.4;0;0.0 +22420800;-73186.5;0;0.0 +22424400;-72477.7;0;0.0 +22428000;-57535.9;0;0.0 +22431600;-50849.8;0;0.0 +22435200;-60183.1;0;0.0 +22438800;-65181.9;0;0.0 +22442400;-72958.3;0;0.0 +22446000;-75250.9;0;0.0 +22449600;-73226.0;0;0.0 +22453200;-38721.2;0;0.0 +22456800;-3480.0;0;0.0 +22460400;0;0;0.0 +22464000;0;0;0.0 +22467600;0;0;0.0 +22471200;0;0;0.0 +22474800;0;0;0.0 +22478400;0;0;0.0 +22482000;0;0;0.0 +22485600;0;0;0.0 +22489200;-24000.9;0;0.0 +22492800;-15074.6;0;0.0 +22496400;-19754.6;0;0.0 +22500000;-23015.6;0;0.0 +22503600;-58087.2;0;0.0 +22507200;-84593.5;0;0.0 +22510800;-82626.5;0;0.0 +22514400;-60455.8;0;0.0 +22518000;-48411.0;0;0.0 +22521600;-49800.6;0;0.0 +22525200;-64442.5;0;0.0 +22528800;-82254.5;0;0.0 +22532400;-80643.0;0;0.0 +22536000;-76848.6;0;0.0 +22539600;-44790.2;0;0.0 +22543200;-3965.7;0;0.0 +22546800;0;0;0.0 +22550400;0;0;0.0 +22554000;0;0;0.0 +22557600;0;0;0.0 +22561200;0;0;0.0 +22564800;0;0;0.0 +22568400;0;0;0.0 +22572000;0;0;0.0 +22575600;-25867.1;0;0.0 +22579200;-7971.5;0;0.0 +22582800;-13120.9;0;0.0 +22586400;-25147.7;0;0.0 +22590000;-56521.6;0;0.0 +22593600;-84251.5;0;0.0 +22597200;-83151.5;0;0.0 +22600800;-67934.6;0;0.0 +22604400;-57786.8;0;0.0 +22608000;-65012.4;0;0.0 +22611600;-71393.8;0;0.0 +22615200;-84835.9;0;0.0 +22618800;-82496.3;0;0.0 +22622400;-79505.6;0;0.0 +22626000;-53805.0;0;0.0 +22629600;-10864.0;0;0.0 +22633200;0;0;0.0 +22636800;0;0;0.0 +22640400;0;0;0.0 +22644000;0;0;0.0 +22647600;0;0;0.0 +22651200;0;0;0.0 +22654800;0;0;0.0 +22658400;0;0;0.0 +22662000;-25290.8;0;0.0 +22665600;-7268.5;0;0.0 +22669200;-19533.8;0;0.0 +22672800;-34870.4;0;0.0 +22676400;-67885.5;0;0.0 +22680000;-91319.4;0;0.0 +22683600;-88486.3;0;0.0 +22687200;-71960.3;0;0.0 +22690800;-61280.3;0;0.0 +22694400;-68650.0;0;0.0 +22698000;-75796.7;0;0.0 +22701600;-89688.0;0;0.0 +22705200;-86300.0;0;0.0 +22708800;-82406.8;0;0.0 +22712400;-54005.5;0;0.0 +22716000;-14267.2;0;0.0 +22719600;0;0;0.0 +22723200;0;0;0.0 +22726800;0;0;0.0 +22730400;0;0;0.0 +22734000;0;0;0.0 +22737600;0;0;0.0 +22741200;0;0;0.0 +22744800;0;0;0.0 +22748400;-23565.0;0;0.0 +22752000;-16895.5;0;0.0 +22755600;-37468.2;0;0.0 +22759200;-41014.8;0;0.0 +22762800;-72710.5;0;0.0 +22766400;-95457.2;0;0.0 +22770000;-92787.1;0;0.0 +22773600;-75790.6;0;0.0 +22777200;-66087.8;0;0.0 +22780800;-73880.1;0;0.0 +22784400;-79355.1;0;0.0 +22788000;-92470.3;0;0.0 +22791600;-88704.3;0;0.0 +22795200;-84940.2;0;0.0 +22798800;-60432.4;0;0.0 +22802400;-23512.3;0;0.0 +22806000;-2220.1;0;0.0 +22809600;0;0;0.0 +22813200;0;0;0.0 +22816800;0;0;0.0 +22820400;0;0;0.0 +22824000;0;0;0.0 +22827600;0;0;0.0 +22831200;0;0;0.0 +22834800;-30179.6;0;0.0 +22838400;-16250.8;0;0.0 +22842000;-28540.4;0;0.0 +22845600;-34352.8;0;0.0 +22849200;-66236.7;0;0.0 +22852800;-91266.3;0;0.0 +22856400;-90735.9;0;0.0 +22860000;-73272.1;0;0.0 +22863600;-57435.7;0;0.0 +22867200;-59140.2;0;0.0 +22870800;-73783.2;0;0.0 +22874400;-89698.3;0;0.0 +22878000;-86384.3;0;0.0 +22881600;-80595.3;0;0.0 +22885200;-50184.7;0;0.0 +22888800;-14314.6;0;0.0 +22892400;0;0;0.0 +22896000;0;0;0.0 +22899600;0;0;0.0 +22903200;0;0;0.0 +22906800;0;0;0.0 +22910400;0;0;0.0 +22914000;0;0;0.0 +22917600;0;0;0.0 +22921200;-31131.4;0;0.0 +22924800;-16777.2;0;0.0 +22928400;-19684.7;0;0.0 +22932000;-7379.5;0;0.0 +22935600;-33970.7;0;0.0 +22939200;-45206.1;0;0.0 +22942800;-46671.1;0;0.0 +22946400;-29758.4;0;0.0 +22950000;-31381.6;0;0.0 +22953600;-27926.2;0;0.0 +22957200;-32830.9;0;0.0 +22960800;-57651.4;0;0.0 +22964400;-71126.1;0;0.0 +22968000;-56570.7;0;0.0 +22971600;-55073.3;0;0.0 +22975200;-24262.5;0;0.0 +22978800;-2662.9;0;0.0 +22982400;0;0;0.0 +22986000;0;0;0.0 +22989600;0;0;0.0 +22993200;0;0;0.0 +22996800;0;0;0.0 +23000400;-1463.0;0;0.0 +23004000;-5071.3;0;0.0 +23007600;0;0;0.0 +23011200;0;0;0.0 +23014800;-823.3;0;0.0 +23018400;-14344.5;0;0.0 +23022000;-35469.0;0;0.0 +23025600;-55344.2;0;0.0 +23029200;-56379.0;0;0.0 +23032800;-41737.5;0;0.0 +23036400;-35994.1;0;0.0 +23040000;-41567.8;0;0.0 +23043600;-47265.4;0;0.0 +23047200;-57499.6;0;0.0 +23050800;-61249.4;0;0.0 +23054400;-61888.6;0;0.0 +23058000;-29258.1;0;0.0 +23061600;-6619.5;0;0.0 +23065200;0;0;0.0 +23068800;0;0;0.0 +23072400;0;0;0.0 +23076000;0;0;0.0 +23079600;0;0;0.0 +23083200;0;0;0.0 +23086800;0;0;0.0 +23090400;0;0;0.0 +23094000;-26293.4;0;0.0 +23097600;-11067.5;0;0.0 +23101200;-29777.1;0;0.0 +23104800;-35981.1;0;0.0 +23108400;-66667.5;0;0.0 +23112000;-86503.8;0;0.0 +23115600;-86282.8;0;0.0 +23119200;-62878.6;0;0.0 +23122800;-48444.1;0;0.0 +23126400;-57011.4;0;0.0 +23130000;-71476.4;0;0.0 +23133600;-88193.4;0;0.0 +23137200;-85607.1;0;0.0 +23140800;-82922.2;0;0.0 +23144400;-61464.0;0;0.0 +23148000;-36814.0;0;0.0 +23151600;-2654.1;0;0.0 +23155200;0;0;0.0 +23158800;0;0;0.0 +23162400;0;0;0.0 +23166000;0;0;0.0 +23169600;0;0;0.0 +23173200;0;0;0.0 +23176800;0;0;0.0 +23180400;-33034.5;0;0.0 +23184000;-20063.8;0;0.0 +23187600;-22124.2;0;0.0 +23191200;-17837.9;0;0.0 +23194800;-51439.4;0;0.0 +23198400;-79011.4;0;0.0 +23202000;-81245.1;0;0.0 +23205600;-62954.0;0;0.0 +23209200;-47314.8;0;0.0 +23212800;-56280.1;0;0.0 +23216400;-70379.2;0;0.0 +23220000;-85281.6;0;0.0 +23223600;-82134.0;0;0.0 +23227200;-78544.0;0;0.0 +23230800;-55270.8;0;0.0 +23234400;-22980.1;0;0.0 +23238000;-858.2;0;0.0 +23241600;0;0;0.0 +23245200;0;0;0.0 +23248800;0;0;0.0 +23252400;0;0;0.0 +23256000;0;0;0.0 +23259600;0;0;0.0 +23263200;0;0;0.0 +23266800;-31638.3;0;0.0 +23270400;-16299.4;0;0.0 +23274000;-20530.3;0;0.0 +23277600;-26874.0;0;0.0 +23281200;-58651.2;0;0.0 +23284800;-83275.0;0;0.0 +23288400;-81673.3;0;0.0 +23292000;-63514.2;0;0.0 +23295600;-52372.6;0;0.0 +23299200;-52727.8;0;0.0 +23302800;-45829.3;0;0.0 +23306400;-65965.5;0;0.0 +23310000;-61617.5;0;0.0 +23313600;-60596.6;0;0.0 +23317200;-26945.4;0;0.0 +23320800;-3039.8;0;0.0 +23324400;0;0;0.0 +23328000;0;0;0.0 +23331600;0;0;0.0 +23335200;0;0;0.0 +23338800;0;0;0.0 +23342400;0;54.4;0.0 +23346000;0;0;0.0 +23349600;0;0;0.0 +23353200;-23793.5;0;0.0 +23356800;-7067.6;0;0.0 +23360400;-1359.2;0;0.0 +23364000;0;0;0.0 +23367600;-16090.9;0;0.0 +23371200;-50807.5;0;0.0 +23374800;-57588.7;0;0.0 +23378400;-29770.2;0;0.0 +23382000;-4707.9;0;0.0 +23385600;-5597.7;0;0.0 +23389200;-15680.6;0;0.0 +23392800;-37968.1;0;0.0 +23396400;-55754.2;0;0.0 +23400000;-41155.5;0;0.0 +23403600;-19444.0;0;0.0 +23407200;0;0;0.0 +23410800;0;0;0.0 +23414400;0;0;0.0 +23418000;0;0;0.0 +23421600;0;0;0.0 +23425200;0;0;0.0 +23428800;0;2269.8;0.0 +23432400;0;0;0.0 +23436000;0;0;0.0 +23439600;-16276.5;0;0.0 +23443200;-15409.3;0;0.0 +23446800;-5417.1;0;0.0 +23450400;-4411.0;0;0.0 +23454000;-28062.1;0;0.0 +23457600;-37122.4;0;0.0 +23461200;-27548.8;0;0.0 +23464800;-17766.5;0;0.0 +23468400;-12902.6;0;0.0 +23472000;-2344.5;0;0.0 +23475600;-19116.8;0;0.0 +23479200;-42684.9;0;0.0 +23482800;-45745.0;0;0.0 +23486400;-31877.2;0;0.0 +23490000;-5314.1;0;0.0 +23493600;0;0;0.0 +23497200;0;0;0.0 +23500800;0;0;0.0 +23504400;0;0;0.0 +23508000;0;0;0.0 +23511600;0;0;0.0 +23515200;0;4364.7;0.0 +23518800;0;0;0.0 +23522400;0;0;0.0 +23526000;-12077.0;0;0.0 +23529600;-8998.9;0;0.0 +23533200;-2769.6;0;0.0 +23536800;-1884.7;0;0.0 +23540400;-5940.8;0;0.0 +23544000;-34080.1;0;0.0 +23547600;-41286.3;0;0.0 +23551200;-16733.9;0;0.0 +23554800;-20656.6;0;0.0 +23558400;-22704.9;0;0.0 +23562000;-9173.0;0;0.0 +23565600;-47574.9;0;0.0 +23569200;-64926.1;0;0.0 +23572800;-41745.5;0;0.0 +23576400;-33459.4;0;0.0 +23580000;-19128.6;0;0.0 +23583600;-2365.1;0;0.0 +23587200;0;0;0.0 +23590800;0;0;0.0 +23594400;0;0;0.0 +23598000;0;0;0.0 +23601600;0;50.6;0.0 +23605200;0;0;0.0 +23608800;-950.9;0;0.0 +23612400;0;0;0.0 +23616000;0;0;0.0 +23619600;0;0;0.0 +23623200;-2679.1;0;0.0 +23626800;-24451.8;0;0.0 +23630400;-34018.9;0;0.0 +23634000;-36695.3;0;0.0 +23637600;-14849.5;0;0.0 +23641200;-7198.0;0;0.0 +23644800;-7703.0;0;0.0 +23648400;-9790.0;0;0.0 +23652000;-15978.4;0;0.0 +23655600;-25549.2;0;0.0 +23659200;-30992.9;0;0.0 +23662800;0;0;0.0 +23666400;0;0;0.0 +23670000;0;0;0.0 +23673600;0;0;0.0 +23677200;0;0;0.0 +23680800;0;0;0.0 +23684400;0;0;0.0 +23688000;0;2590.5;0.0 +23691600;0;0;0.0 +23695200;0;0;0.0 +23698800;-16389.4;0;0.0 +23702400;-7624.7;0;0.0 +23706000;-733.1;0;0.0 +23709600;-13188.3;0;0.0 +23713200;-27389.0;0;0.0 +23716800;-47833.2;0;0.0 +23720400;-46853.0;0;0.0 +23724000;-34498.6;0;0.0 +23727600;-13388.8;0;0.0 +23731200;-17024.0;0;0.0 +23734800;-24550.0;0;0.0 +23738400;-48342.2;0;0.0 +23742000;-36165.9;0;0.0 +23745600;-31857.5;0;0.0 +23749200;-3573.8;0;0.0 +23752800;-3662.2;0;0.0 +23756400;0;0;0.0 +23760000;0;0;0.0 +23763600;0;0;0.0 +23767200;0;0;0.0 +23770800;0;0;0.0 +23774400;0;5888.3;0.0 +23778000;0;0;0.0 +23781600;0;0;0.0 +23785200;-9699.7;0;0.0 +23788800;0;0;0.0 +23792400;-779.8;0;0.0 +23796000;-1570.9;0;0.0 +23799600;-24506.4;0;0.0 +23803200;-61351.6;0;0.0 +23806800;-64630.9;0;0.0 +23810400;-50895.0;0;0.0 +23814000;-40061.2;0;0.0 +23817600;-42763.7;0;0.0 +23821200;-56123.6;0;0.0 +23824800;-73089.1;0;0.0 +23828400;-71756.5;0;0.0 +23832000;-70260.7;0;0.0 +23835600;-39209.6;0;0.0 +23839200;-14326.2;0;0.0 +23842800;0;0;0.0 +23846400;0;0;0.0 +23850000;0;0;0.0 +23853600;0;0;0.0 +23857200;0;0;0.0 +23860800;0;0;0.0 +23864400;0;0;0.0 +23868000;0;0;0.0 +23871600;-25616.6;0;0.0 +23875200;-8241.2;0;0.0 +23878800;-10465.3;0;0.0 +23882400;-1107.6;0;0.0 +23886000;-33262.6;0;0.0 +23889600;-44684.5;0;0.0 +23893200;-41783.8;0;0.0 +23896800;-25213.7;0;0.0 +23900400;-15261.3;0;0.0 +23904000;-14292.6;0;0.0 +23907600;-24720.8;0;0.0 +23911200;-48293.0;0;0.0 +23914800;-50952.3;0;0.0 +23918400;-44651.4;0;0.0 +23922000;-13899.2;0;0.0 +23925600;0;0;0.0 +23929200;0;0;0.0 +23932800;0;0;0.0 +23936400;0;0;0.0 +23940000;0;0;0.0 +23943600;0;0;0.0 +23947200;0;614.7;0.0 +23950800;0;0;0.0 +23954400;0;0;0.0 +23958000;-19561.9;0;0.0 +23961600;-19115.8;0;0.0 +23965200;-4515.0;0;0.0 +23968800;-1022.5;0;0.0 +23972400;-39896.0;0;0.0 +23976000;-69978.8;0;0.0 +23979600;-69595.3;0;0.0 +23983200;-52110.8;0;0.0 +23986800;-42638.0;0;0.0 +23990400;-48458.9;0;0.0 +23994000;-61370.5;0;0.0 +23997600;-78767.6;0;0.0 +24001200;-74899.7;0;0.0 +24004800;-70769.8;0;0.0 +24008400;-40722.1;0;0.0 +24012000;-3927.7;0;0.0 +24015600;0;0;0.0 +24019200;0;0;0.0 +24022800;0;0;0.0 +24026400;0;0;0.0 +24030000;0;0;0.0 +24033600;0;349.7;0.0 +24037200;0;0;0.0 +24040800;0;0;0.0 +24044400;-21858.5;0;0.0 +24048000;-5201.4;0;0.0 +24051600;-12686.6;0;0.0 +24055200;0;0;0.0 +24058800;-28260.2;0;0.0 +24062400;-49423.6;0;0.0 +24066000;-35987.2;0;0.0 +24069600;-4628.0;0;0.0 +24073200;0;0;0.0 +24076800;-6503.7;0;0.0 +24080400;-27187.0;0;0.0 +24084000;-41691.3;0;0.0 +24087600;-52623.0;0;0.0 +24091200;-38137.5;0;0.0 +24094800;-4829.8;0;0.0 +24098400;0;0;0.0 +24102000;0;0;0.0 +24105600;0;0;0.0 +24109200;0;0;0.0 +24112800;0;0;0.0 +24116400;0;0;0.0 +24120000;0;3765.5;0.0 +24123600;0;0;0.0 +24127200;0;0;0.0 +24130800;-17707.8;0;0.0 +24134400;-16279.8;0;0.0 +24138000;0;0;0.0 +24141600;0;0;0.0 +24145200;-11996.8;0;0.0 +24148800;-13223.4;0;0.0 +24152400;-7776.5;0;0.0 +24156000;-9305.1;0;0.0 +24159600;-3736.5;0;0.0 +24163200;-2050.7;0;0.0 +24166800;-3421.1;0;0.0 +24170400;-21514.5;0;0.0 +24174000;-43729.2;0;0.0 +24177600;-38456.8;0;0.0 +24181200;-23458.1;0;0.0 +24184800;-567.3;0;0.0 +24188400;0;0;0.0 +24192000;0;0;0.0 +24195600;0;0;0.0 +24199200;0;0;0.0 +24202800;0;0;0.0 +24206400;0;6815.7;0.0 +24210000;0;4641.4;0.0 +24213600;0;2800.2;0.0 +24217200;0;0;0.0 +24220800;0;0;0.0 +24224400;0;12328.7;0.0 +24228000;-4094.1;0;0.0 +24231600;-2118.9;0;0.0 +24235200;-12553.3;0;0.0 +24238800;-13139.1;0;0.0 +24242400;0;0;0.0 +24246000;0;0;0.0 +24249600;0;0;0.0 +24253200;-4116.5;0;0.0 +24256800;-13977.5;0;0.0 +24260400;-17156.4;0;0.0 +24264000;-17945.2;0;0.0 +24267600;0;0;0.0 +24271200;0;0;0.0 +24274800;0;109.3;0.0 +24278400;0;0;0.0 +24282000;0;0;0.0 +24285600;0;0;0.0 +24289200;0;0;0.0 +24292800;0;11274.4;0.0 +24296400;0;0;0.0 +24300000;0;0;0.0 +24303600;-1122.9;356.0;0.0 +24307200;0;0;0.0 +24310800;-8828.4;0;0.0 +24314400;-833.4;0;0.0 +24318000;-4540.8;0;0.0 +24321600;-36131.0;0;0.0 +24325200;-41886.6;0;0.0 +24328800;-5460.6;0;0.0 +24332400;-1996.6;0;0.0 +24336000;-4135.2;0;0.0 +24339600;-235.8;0;0.0 +24343200;-39117.9;0;0.0 +24346800;-24873.0;0;0.0 +24350400;-21692.5;0;0.0 +24354000;-13233.1;0;0.0 +24357600;0;0;0.0 +24361200;0;0;0.0 +24364800;0;0;0.0 +24368400;0;0;0.0 +24372000;0;0;0.0 +24375600;0;0;0.0 +24379200;0;2508.2;0.0 +24382800;0;0;0.0 +24386400;0;0;0.0 +24390000;-13059.9;0;0.0 +24393600;-12971.6;0;0.0 +24397200;-956.5;0;0.0 +24400800;-3152.6;0;0.0 +24404400;-35151.3;0;0.0 +24408000;-65837.1;0;0.0 +24411600;-66464.0;0;0.0 +24415200;-49947.8;0;0.0 +24418800;-39584.9;0;0.0 +24422400;-48083.1;0;0.0 +24426000;-53316.7;0;0.0 +24429600;-64723.2;0;0.0 +24433200;-61092.4;0;0.0 +24436800;-45348.7;0;0.0 +24440400;-15719.6;0;0.0 +24444000;-442.5;0;0.0 +24447600;0;0;0.0 +24451200;0;0;0.0 +24454800;0;0;0.0 +24458400;0;0;0.0 +24462000;0;0;0.0 +24465600;0;1479.5;0.0 +24469200;0;0;0.0 +24472800;0;0;0.0 +24476400;-20809.3;0;0.0 +24480000;-21741.0;0;0.0 +24483600;-3601.8;0;0.0 +24487200;-16592.0;0;0.0 +24490800;-54420.1;0;0.0 +24494400;-81587.8;0;0.0 +24498000;-81364.7;0;0.0 +24501600;-62193.0;0;0.0 +24505200;-53983.5;0;0.0 +24508800;-62827.5;0;0.0 +24512400;-70144.7;0;0.0 +24516000;-84538.7;0;0.0 +24519600;-79586.5;0;0.0 +24523200;-74081.8;0;0.0 +24526800;-45001.3;0;0.0 +24530400;-10349.3;0;0.0 +24534000;0;0;0.0 +24537600;0;0;0.0 +24541200;0;0;0.0 +24544800;0;0;0.0 +24548400;0;0;0.0 +24552000;0;0;0.0 +24555600;0;0;0.0 +24559200;0;0;0.0 +24562800;-27086.3;0;0.0 +24566400;-11296.7;0;0.0 +24570000;-13217.2;0;0.0 +24573600;-17672.6;0;0.0 +24577200;-45752.0;0;0.0 +24580800;-74035.8;0;0.0 +24584400;-70796.2;0;0.0 +24588000;-54740.9;0;0.0 +24591600;-45087.1;0;0.0 +24595200;-51613.8;0;0.0 +24598800;-61181.4;0;0.0 +24602400;-80035.8;0;0.0 +24606000;-76358.5;0;0.0 +24609600;-74309.9;0;0.0 +24613200;-42335.2;0;0.0 +24616800;-7165.9;0;0.0 +24620400;0;0;0.0 +24624000;0;0;0.0 +24627600;0;0;0.0 +24631200;0;0;0.0 +24634800;0;0;0.0 +24638400;0;0;0.0 +24642000;0;0;0.0 +24645600;0;0;0.0 +24649200;-25611.0;0;0.0 +24652800;-5927.1;0;0.0 +24656400;-14645.7;0;0.0 +24660000;-1341.6;0;0.0 +24663600;-26479.5;0;0.0 +24667200;-42525.5;0;0.0 +24670800;-49189.1;0;0.0 +24674400;-10795.7;0;0.0 +24678000;0;0;0.0 +24681600;-826.2;0;0.0 +24685200;-22204.2;0;0.0 +24688800;-35760.5;0;0.0 +24692400;-14105.7;0;0.0 +24696000;-7489.1;0;0.0 +24699600;-13245.1;0;0.0 +24703200;0;0;0.0 +24706800;0;0;0.0 +24710400;0;0;0.0 +24714000;0;0;0.0 +24717600;0;0;0.0 +24721200;0;0;0.0 +24724800;0;4141.9;0.0 +24728400;0;0;0.0 +24732000;0;0;0.0 +24735600;-17209.6;0;0.0 +24739200;-15876.4;0;0.0 +24742800;0;0;0.0 +24746400;0;0;0.0 +24750000;-15469.6;0;0.0 +24753600;-17952.1;0;0.0 +24757200;-17570.8;0;0.0 +24760800;-6940.5;0;0.0 +24764400;-1621.1;0;0.0 +24768000;-4043.7;0;0.0 +24771600;-3931.5;0;0.0 +24775200;-27854.7;0;0.0 +24778800;-29998.5;0;0.0 +24782400;-32015.4;0;0.0 +24786000;-19438.5;0;0.0 +24789600;-998.0;0;0.0 +24793200;0;0;0.0 +24796800;0;0;0.0 +24800400;0;0;0.0 +24804000;0;0;0.0 +24807600;0;0;0.0 +24811200;0;9867.1;0.0 +24814800;0;7812.4;0.0 +24818400;0;4891.2;0.0 +24822000;0;0;0.0 +24825600;0;0;0.0 +24829200;0;13031.1;0.0 +24832800;0;0;0.0 +24836400;-371.4;0;0.0 +24840000;-9390.9;0;0.0 +24843600;-7775.4;0;0.0 +24847200;-155.3;0;0.0 +24850800;0;0;0.0 +24854400;0;0;0.0 +24858000;0;0;0.0 +24861600;-15678.1;0;0.0 +24865200;-21763.1;0;0.0 +24868800;-8947.0;0;0.0 +24872400;0;0;0.0 +24876000;0;0;0.0 +24879600;0;255.3;0.0 +24883200;0;0;0.0 +24886800;0;0;0.0 +24890400;0;0;0.0 +24894000;0;0;0.0 +24897600;0;12745.3;0.0 +24901200;0;9571.6;0.0 +24904800;0;5774.7;0.0 +24908400;0;32.1;0.0 +24912000;0;0;0.0 +24915600;0;0;0.0 +24919200;0;0;0.0 +24922800;-8856.7;0;0.0 +24926400;-45059.9;0;0.0 +24930000;-22282.8;0;0.0 +24933600;-4912.4;0;0.0 +24937200;0;0;0.0 +24940800;-2106.4;0;0.0 +24944400;-15324.7;0;0.0 +24948000;-35330.8;0;0.0 +24951600;-17873.4;0;0.0 +24955200;-15007.3;0;0.0 +24958800;-5872.4;0;0.0 +24962400;0;0;0.0 +24966000;0;663.8;0.0 +24969600;0;0;0.0 +24973200;0;0;0.0 +24976800;0;0;0.0 +24980400;0;0;0.0 +24984000;0;14811.5;0.0 +24987600;0;11560.5;0.0 +24991200;0;7618.4;0.0 +24994800;0;674.6;0.0 +24998400;0;0;0.0 +25002000;-6222.3;0;0.0 +25005600;-1056.6;0;0.0 +25009200;-3371.1;0;0.0 +25012800;-14212.7;0;0.0 +25016400;-22524.8;0;0.0 +25020000;-14911.0;0;0.0 +25023600;-5750.3;0;0.0 +25027200;-9512.7;0;0.0 +25030800;-18570.5;0;0.0 +25034400;-34262.4;0;0.0 +25038000;-42888.9;0;0.0 +25041600;-29014.8;0;0.0 +25045200;-7275.4;0;0.0 +25048800;0;0;0.0 +25052400;0;289.6;0.0 +25056000;0;0;0.0 +25059600;0;0;0.0 +25063200;0;0;0.0 +25066800;0;0;0.0 +25070400;0;10568.7;0.0 +25074000;0;7267.0;0.0 +25077600;0;4090.7;0.0 +25081200;-3185.2;0;0.0 +25084800;0;0;0.0 +25088400;-2340.2;0;0.0 +25092000;0;0;0.0 +25095600;-18864.9;0;0.0 +25099200;-28384.3;0;0.0 +25102800;-11349.6;0;0.0 +25106400;-643.1;0;0.0 +25110000;0;0;0.0 +25113600;0;0;0.0 +25117200;-849.6;0;0.0 +25120800;-35715.9;0;0.0 +25124400;-37887.5;0;0.0 +25128000;-23719.0;0;0.0 +25131600;0;0;0.0 +25135200;0;0;0.0 +25138800;0;0;0.0 +25142400;0;0;0.0 +25146000;0;0;0.0 +25149600;0;0;0.0 +25153200;0;0;0.0 +25156800;0;4307.8;0.0 +25160400;0;0;0.0 +25164000;0;0;0.0 +25167600;-12185.6;0;0.0 +25171200;-10390.1;0;0.0 +25174800;0;0;0.0 +25178400;0;0;0.0 +25182000;-14584.1;0;0.0 +25185600;-42420.7;0;0.0 +25189200;-37910.9;0;0.0 +25192800;-2306.3;0;0.0 +25196400;0;0;0.0 +25200000;0;0;0.0 +25203600;-10896.5;0;0.0 +25207200;-38260.8;0;0.0 +25210800;-46792.8;0;0.0 +25214400;-23788.6;0;0.0 +25218000;-5453.5;0;0.0 +25221600;-2171.8;0;0.0 +25225200;0;0;0.0 +25228800;0;0;0.0 +25232400;0;0;0.0 +25236000;0;0;0.0 +25239600;0;0;0.0 +25243200;0;5086.5;0.0 +25246800;0;0;0.0 +25250400;0;0;0.0 +25254000;-6607.5;0;0.0 +25257600;0;0;0.0 +25261200;0;0;0.0 +25264800;0;0;0.0 +25268400;-4497.8;0;0.0 +25272000;-23431.9;0;0.0 +25275600;-33116.2;0;0.0 +25279200;-8111.8;0;0.0 +25282800;-1684.8;0;0.0 +25286400;-1035.4;0;0.0 +25290000;-3597.4;0;0.0 +25293600;-17471.5;0;0.0 +25297200;-37003.0;0;0.0 +25300800;-30188.9;0;0.0 +25304400;-233.5;0;0.0 +25308000;0;0;0.0 +25311600;0;0;0.0 +25315200;0;0;0.0 +25318800;0;0;0.0 +25322400;0;0;0.0 +25326000;0;0;0.0 +25329600;0;5552.9;0.0 +25333200;0;0;0.0 +25336800;0;0;0.0 +25340400;-9684.8;0;0.0 +25344000;-7964.3;0;0.0 +25347600;-1577.5;0;0.0 +25351200;-2052.0;0;0.0 +25354800;-30585.0;0;0.0 +25358400;-45865.8;0;0.0 +25362000;-53033.2;0;0.0 +25365600;-45019.2;0;0.0 +25369200;-43593.3;0;0.0 +25372800;-46611.4;0;0.0 +25376400;-40861.4;0;0.0 +25380000;-64246.4;0;0.0 +25383600;-72366.3;0;0.0 +25387200;-46425.6;0;0.0 +25390800;-49322.7;0;0.0 +25394400;-19320.7;0;0.0 +25398000;-1326.5;0;0.0 +25401600;0;0;0.0 +25405200;0;0;0.0 +25408800;0;0;0.0 +25412400;0;0;0.0 +25416000;0;0;0.0 +25419600;0;0;0.0 +25423200;-2386.8;0;0.0 +25426800;0;0;0.0 +25430400;0;0;0.0 +25434000;-2669.8;0;0.0 +25437600;-23117.0;0;0.0 +25441200;-40337.7;0;0.0 +25444800;-59280.0;0;0.0 +25448400;-61986.9;0;0.0 +25452000;-49882.2;0;0.0 +25455600;-45308.8;0;0.0 +25459200;-48543.6;0;0.0 +25462800;-53543.1;0;0.0 +25466400;-62499.4;0;0.0 +25470000;-66254.8;0;0.0 +25473600;-66738.3;0;0.0 +25477200;-41498.5;0;0.0 +25480800;-13287.3;0;0.0 +25484400;-3248.1;0;0.0 +25488000;0;0;0.0 +25491600;0;0;0.0 +25495200;0;0;0.0 +25498800;0;0;0.0 +25502400;0;0;0.0 +25506000;0;0;0.0 +25509600;0;0;0.0 +25513200;-23349.1;0;0.0 +25516800;-3505.4;0;0.0 +25520400;-11948.1;0;0.0 +25524000;-454.1;0;0.0 +25527600;-30124.3;0;0.0 +25531200;-48903.4;0;0.0 +25534800;-26894.1;0;0.0 +25538400;-11175.9;0;0.0 +25542000;0;0;0.0 +25545600;-4422.3;0;0.0 +25549200;-18210.4;0;0.0 +25552800;-23842.0;0;0.0 +25556400;-25756.6;0;0.0 +25560000;-33191.4;0;0.0 +25563600;-13734.5;0;0.0 +25567200;0;0;0.0 +25570800;0;44.1;0.0 +25574400;0;0;0.0 +25578000;0;0;0.0 +25581600;0;0;0.0 +25585200;0;0;0.0 +25588800;0;11049.2;0.0 +25592400;0;7983.8;0.0 +25596000;0;4556.7;0.0 +25599600;-1754.3;0;0.0 +25603200;0;0;0.0 +25606800;-5722.4;0;0.0 +25610400;0;0;0.0 +25614000;-18925.8;0;0.0 +25617600;-38353.7;0;0.0 +25621200;-10664.9;0;0.0 +25624800;-29.0;0;0.0 +25628400;-790.6;0;0.0 +25632000;-3161.2;0;0.0 +25635600;-8676.1;0;0.0 +25639200;-32681.2;0;0.0 +25642800;-22989.0;0;0.0 +25646400;-33152.9;0;0.0 +25650000;-4369.8;0;0.0 +25653600;0;0;0.0 +25657200;0;270.3;0.0 +25660800;0;0;0.0 +25664400;0;0;0.0 +25668000;0;0;0.0 +25671600;0;0;0.0 +25675200;0;9786.5;0.0 +25678800;0;0;0.0 +25682400;0;0;0.0 +25686000;-2966.3;41.2;0.0 +25689600;0;0;0.0 +25693200;-2782.4;0;0.0 +25696800;0;0;0.0 +25700400;-3582.5;0;0.0 +25704000;-20447.6;0;0.0 +25707600;-39570.0;0;0.0 +25711200;-24512.4;0;0.0 +25714800;-19950.4;0;0.0 +25718400;-29104.8;0;0.0 +25722000;-44893.9;0;0.0 +25725600;-62719.0;0;0.0 +25729200;-63958.4;0;0.0 +25732800;-49285.9;0;0.0 +25736400;-17604.9;0;0.0 +25740000;-1919.0;0;0.0 +25743600;0;0;0.0 +25747200;0;0;0.0 +25750800;0;0;0.0 +25754400;0;0;0.0 +25758000;0;0;0.0 +25761600;0;183.0;0.0 +25765200;0;0;0.0 +25768800;0;0;0.0 +25772400;-21846.3;0;0.0 +25776000;-7968.5;0;0.0 +25779600;-12216.7;0;0.0 +25783200;-3536.1;0;0.0 +25786800;-27793.9;0;0.0 +25790400;-53223.0;0;0.0 +25794000;-20000.9;0;0.0 +25797600;0;0;0.0 +25801200;0;0;0.0 +25804800;-5552.7;0;0.0 +25808400;-23847.6;0;0.0 +25812000;-33868.2;0;0.0 +25815600;-36237.4;0;0.0 +25819200;-26887.9;0;0.0 +25822800;-3189.3;0;0.0 +25826400;0;0;0.0 +25830000;0;0;0.0 +25833600;0;0;0.0 +25837200;0;0;0.0 +25840800;0;0;0.0 +25844400;0;0;0.0 +25848000;0;5911.8;0.0 +25851600;0;0;0.0 +25855200;0;0;0.0 +25858800;-5503.4;0;0.0 +25862400;0;0;0.0 +25866000;-126.3;0;0.0 +25869600;-703.2;0;0.0 +25873200;-5406.2;0;0.0 +25876800;-29152.0;0;0.0 +25880400;-7284.5;0;0.0 +25884000;-3613.2;0;0.0 +25887600;-125.3;0;0.0 +25891200;-342.0;0;0.0 +25894800;-1820.7;0;0.0 +25898400;-22735.5;0;0.0 +25902000;-40918.6;0;0.0 +25905600;-35005.4;0;0.0 +25909200;-43.5;0;0.0 +25912800;0;0;0.0 +25916400;0;0;0.0 +25920000;0;0;0.0 +25923600;0;0;0.0 +25927200;0;0;0.0 +25930800;0;0;0.0 +25934400;0;4010.4;0.0 +25938000;0;0;0.0 +25941600;0;0;0.0 +25945200;-15894.7;0;0.0 +25948800;-16179.0;0;0.0 +25952400;-4258.9;0;0.0 +25956000;0;0;0.0 +25959600;-22837.9;0;0.0 +25963200;-11251.3;0;0.0 +25966800;-7653.3;0;0.0 +25970400;-1389.1;0;0.0 +25974000;-1552.3;0;0.0 +25977600;-2641.7;0;0.0 +25981200;-2664.7;0;0.0 +25984800;-24273.3;0;0.0 +25988400;-42228.3;0;0.0 +25992000;-29341.6;0;0.0 +25995600;-27143.9;0;0.0 +25999200;-1157.7;0;0.0 +26002800;0;0;0.0 +26006400;0;0;0.0 +26010000;0;0;0.0 +26013600;0;0;0.0 +26017200;0;0;0.0 +26020800;0;9431.3;0.0 +26024400;0;6853.9;0.0 +26028000;0;4938.3;0.0 +26031600;0;0;0.0 +26035200;0;0;0.0 +26038800;0;14644.0;0.0 +26042400;-4332.8;0;0.0 +26046000;-2234.3;0;0.0 +26049600;-4124.6;0;0.0 +26053200;-8849.3;0;0.0 +26056800;-8185.8;0;0.0 +26060400;-1006.4;0;0.0 +26064000;0;0;0.0 +26067600;-3335.2;0;0.0 +26071200;-2522.5;0;0.0 +26074800;-6054.3;0;0.0 +26078400;-17240.0;0;0.0 +26082000;0;0;0.0 +26085600;0;69.3;0.0 +26089200;0;2061.9;0.0 +26092800;0;0;0.0 +26096400;0;0;0.0 +26100000;0;0;0.0 +26103600;0;0;0.0 +26107200;0;15835.7;0.0 +26110800;0;12729.8;0.0 +26114400;0;8392.3;0.0 +26118000;0;795.3;0.0 +26121600;0;0;0.0 +26125200;-519.4;0;0.0 +26128800;-1116.6;0;0.0 +26132400;-6713.6;0;0.0 +26136000;-42244.0;0;0.0 +26139600;-41596.7;0;0.0 +26143200;-37072.2;0;0.0 +26146800;-18676.0;0;0.0 +26150400;-13478.7;0;0.0 +26154000;-26735.2;0;0.0 +26157600;-38751.5;0;0.0 +26161200;-41513.9;0;0.0 +26164800;-25634.0;0;0.0 +26168400;-4901.3;0;0.0 +26172000;0;0;0.0 +26175600;0;0;0.0 +26179200;0;0;0.0 +26182800;0;0;0.0 +26186400;0;0;0.0 +26190000;0;0;0.0 +26193600;0;4181.8;0.0 +26197200;0;0;0.0 +26200800;0;0;0.0 +26204400;-12557.6;0;0.0 +26208000;-10657.1;0;0.0 +26211600;-689.2;0;0.0 +26215200;-3267.0;0;0.0 +26218800;-22024.3;0;0.0 +26222400;-56239.0;0;0.0 +26226000;-59705.8;0;0.0 +26229600;-40331.2;0;0.0 +26233200;-12412.9;0;0.0 +26236800;-3187.7;0;0.0 +26240400;-9650.9;0;0.0 +26244000;-39453.0;0;0.0 +26247600;-42965.5;0;0.0 +26251200;-31677.5;0;0.0 +26254800;-18313.0;0;0.0 +26258400;0;0;0.0 +26262000;0;0;0.0 +26265600;0;0;0.0 +26269200;0;0;0.0 +26272800;0;0;0.0 +26276400;0;0;0.0 +26280000;0;5524.5;0.0 +26283600;0;0;0.0 +26287200;0;0;0.0 +26290800;-9044.3;0;0.0 +26294400;0;0;0.0 +26298000;0;0;0.0 +26301600;0;0;0.0 +26305200;-1727.5;0;0.0 +26308800;-37039.6;0;0.0 +26312400;-37927.7;0;0.0 +26316000;-4694.2;0;0.0 +26319600;-561.8;0;0.0 +26323200;-1985.2;0;0.0 +26326800;-21562.7;0;0.0 +26330400;-38752.7;0;0.0 +26334000;-36176.7;0;0.0 +26337600;-37477.3;0;0.0 +26341200;-21379.1;0;0.0 +26344800;0;0;0.0 +26348400;0;826.3;0.0 +26352000;0;0;0.0 +26355600;0;0;0.0 +26359200;0;0;0.0 +26362800;0;0;0.0 +26366400;0;8953.2;0.0 +26370000;0;0;0.0 +26373600;0;0;0.0 +26377200;-5512.6;0;0.0 +26380800;0;0;0.0 +26384400;-1805.6;0;0.0 +26388000;0;0;0.0 +26391600;-17033.9;0;0.0 +26395200;-34425.1;0;0.0 +26398800;-9843.8;0;0.0 +26402400;-1126.1;0;0.0 +26406000;0;0;0.0 +26409600;-144.7;0;0.0 +26413200;-13548.0;0;0.0 +26416800;-20457.9;0;0.0 +26420400;-33443.9;0;0.0 +26424000;-30470.6;0;0.0 +26427600;-10214.5;0;0.0 +26431200;0;0;0.0 +26434800;0;1130.6;0.0 +26438400;0;0;0.0 +26442000;0;0;0.0 +26445600;0;0;0.0 +26449200;0;0;0.0 +26452800;0;14635.7;0.0 +26456400;0;11177.9;0.0 +26460000;0;7366.2;0.0 +26463600;0;238.9;0.0 +26467200;0;0;0.0 +26470800;-501.2;0;0.0 +26474400;-984.0;0;0.0 +26478000;-3048.1;0;0.0 +26481600;-15123.8;0;0.0 +26485200;-19130.9;0;0.0 +26488800;-6887.1;0;0.0 +26492400;-3892.4;0;0.0 +26496000;-2418.8;0;0.0 +26499600;-6238.6;0;0.0 +26503200;-35260.4;0;0.0 +26506800;-38894.8;0;0.0 +26510400;-31224.2;0;0.0 +26514000;-9338.4;0;0.0 +26517600;0;0;0.0 +26521200;0;20.6;0.0 +26524800;0;0;0.0 +26528400;0;0;0.0 +26532000;0;0;0.0 +26535600;0;0;0.0 +26539200;0;4950.6;0.0 +26542800;0;0;0.0 +26546400;0;0;0.0 +26550000;-10857.6;0;0.0 +26553600;-2504.7;0;0.0 +26557200;-1505.8;0;0.0 +26560800;0;0;0.0 +26564400;-9773.7;0;0.0 +26568000;-27474.0;0;0.0 +26571600;-34081.3;0;0.0 +26575200;-22756.7;0;0.0 +26578800;-28377.8;0;0.0 +26582400;-33315.3;0;0.0 +26586000;-28787.7;0;0.0 +26589600;-54509.8;0;0.0 +26593200;-67043.0;0;0.0 +26596800;-45094.3;0;0.0 +26600400;-43229.9;0;0.0 +26604000;-21677.4;0;0.0 +26607600;-613.7;0;0.0 +26611200;0;0;0.0 +26614800;0;0;0.0 +26618400;0;0;0.0 +26622000;0;0;0.0 +26625600;0;153.1;0.0 +26629200;0;0;0.0 +26632800;-1203.4;0;0.0 +26636400;0;0;0.0 +26640000;0;0;0.0 +26643600;-16242.7;0;0.0 +26647200;-21972.4;0;0.0 +26650800;-33702.7;0;0.0 +26654400;-48997.0;0;0.0 +26658000;-53262.9;0;0.0 +26661600;-39036.4;0;0.0 +26665200;-27986.5;0;0.0 +26668800;-19001.7;0;0.0 +26672400;-5581.6;0;0.0 +26676000;-13497.0;0;0.0 +26679600;-16968.3;0;0.0 +26683200;-24880.3;0;0.0 +26686800;0;0;0.0 +26690400;0;0;0.0 +26694000;0;0;0.0 +26697600;0;0;0.0 +26701200;0;0;0.0 +26704800;0;0;0.0 +26708400;0;0;0.0 +26712000;0;0;0.0 +26715600;0;4466.8;0.0 +26719200;0;0;0.0 +26722800;0;0;0.0 +26726400;-12770.5;0;0.0 +26730000;-5592.9;0;0.0 +26733600;-112.2;0;0.0 +26737200;-901.2;0;0.0 +26740800;-16170.0;0;0.0 +26744400;-26856.1;0;0.0 +26748000;-30108.1;0;0.0 +26751600;-5457.0;0;0.0 +26755200;0;0;0.0 +26758800;0;0;0.0 +26762400;-16170.7;0;0.0 +26766000;-35985.3;0;0.0 +26769600;-20618.4;0;0.0 +26773200;-35381.3;0;0.0 +26776800;-4848.7;0;0.0 +26780400;0;0;0.0 +26784000;0;381.5;0.0 +26787600;0;0;0.0 +26791200;0;0;0.0 +26794800;0;0;0.0 +26798400;0;0;0.0 +26802000;0;11799.7;0.0 +26805600;0;9101.2;0.0 +26809200;0;5741.0;0.0 +26812800;-2948.7;0;0.0 +26816400;0;0;0.0 +26820000;-3820.4;0;0.0 +26823600;0;0;0.0 +26827200;-18123.8;0;0.0 +26830800;-33921.7;0;0.0 +26834400;-23812.6;0;0.0 +26838000;0;0;0.0 +26841600;0;0;0.0 +26845200;0;0;0.0 +26848800;-13552.8;0;0.0 +26852400;-21148.2;0;0.0 +26856000;-38346.3;0;0.0 +26859600;-32919.0;0;0.0 +26863200;-4332.7;0;0.0 +26866800;0;0;0.0 +26870400;0;435.5;0.0 +26874000;0;0;0.0 +26877600;0;0;0.0 +26881200;0;0;0.0 +26884800;0;0;0.0 +26888400;0;9073.3;0.0 +26892000;0;0;0.0 +26895600;0;0;0.0 +26899200;-3715.0;0;0.0 +26902800;0;0;0.0 +26906400;-2018.6;0;0.0 +26910000;0;0;0.0 +26913600;-17231.6;0;0.0 +26917200;-38119.1;0;0.0 +26920800;-17996.6;0;0.0 +26924400;-15800.2;0;0.0 +26928000;0;0;0.0 +26931600;-1977.2;0;0.0 +26935200;-16284.5;0;0.0 +26938800;-34920.3;0;0.0 +26942400;-18867.6;0;0.0 +26946000;-24209.3;0;0.0 +26949600;-11945.3;0;0.0 +26953200;0;0;0.0 +26956800;0;222.7;0.0 +26960400;0;0;0.0 +26964000;0;0;0.0 +26967600;0;0;0.0 +26971200;0;0;0.0 +26974800;0;10180.3;0.0 +26978400;0;0;0.0 +26982000;0;0;0.0 +26985600;-3921.8;0;0.0 +26989200;0;0;0.0 +26992800;-1642.7;0;0.0 +26996400;0;0;0.0 +27000000;-17163.6;0;0.0 +27003600;-30725.2;0;0.0 +27007200;-23490.4;0;0.0 +27010800;-10545.9;0;0.0 +27014400;0;0;0.0 +27018000;0;0;0.0 +27021600;-7681.8;0;0.0 +27025200;-32995.4;0;0.0 +27028800;-36046.1;0;0.0 +27032400;-39689.6;0;0.0 +27036000;-8462.9;0;0.0 +27039600;0;0;0.0 +27043200;0;0;0.0 +27046800;0;0;0.0 +27050400;0;0;0.0 +27054000;0;0;0.0 +27057600;0;0;0.0 +27061200;0;6624.0;0.0 +27064800;0;0;0.0 +27068400;0;0;0.0 +27072000;-4010.5;0;0.0 +27075600;-249.3;0;0.0 +27079200;-3198.9;0;0.0 +27082800;-403.9;0;0.0 +27086400;-28094.8;0;0.0 +27090000;-42283.1;0;0.0 +27093600;-42238.8;0;0.0 +27097200;-15607.5;0;0.0 +27100800;0;0;0.0 +27104400;-844.3;0;0.0 +27108000;-7585.5;0;0.0 +27111600;-29365.2;0;0.0 +27115200;-43847.6;0;0.0 +27118800;-29155.2;0;0.0 +27122400;-22469.4;0;0.0 +27126000;0;0;0.0 +27129600;0;0;0.0 +27133200;0;0;0.0 +27136800;0;0;0.0 +27140400;0;0;0.0 +27144000;0;0;0.0 +27147600;0;10559.7;0.0 +27151200;0;0;0.0 +27154800;0;0;0.0 +27158400;-1638.9;150.9;0.0 +27162000;0;0;0.0 +27165600;-4071.5;0;0.0 +27169200;0;0;0.0 +27172800;-14949.1;0;0.0 +27176400;-14130.0;0;0.0 +27180000;-12377.8;0;0.0 +27183600;-1742.9;0;0.0 +27187200;0;0;0.0 +27190800;-1830.9;0;0.0 +27194400;-1862.0;0;0.0 +27198000;-22938.4;0;0.0 +27201600;-35635.4;0;0.0 +27205200;-22134.0;0;0.0 +27208800;-15529.7;0;0.0 +27212400;0;0;0.0 +27216000;0;0;0.0 +27219600;0;0;0.0 +27223200;0;0;0.0 +27226800;0;0;0.0 +27230400;0;0;0.0 +27234000;0;12038.6;0.0 +27237600;0;10482.3;0.0 +27241200;0;7464.4;0.0 +27244800;-3585.7;0;0.0 +27248400;0;0;0.0 +27252000;-406.5;0;0.0 +27255600;-1260.9;0;0.0 +27259200;-2130.2;0;0.0 +27262800;-7737.6;0;0.0 +27266400;-2324.9;0;0.0 +27270000;-1182.2;0;0.0 +27273600;0;0;0.0 +27277200;0;0;0.0 +27280800;-3992.6;0;0.0 +27284400;-4744.9;0;0.0 +27288000;-12053.8;0;0.0 +27291600;-19507.0;0;0.0 +27295200;-6464.0;0;0.0 +27298800;0;0;0.0 +27302400;0;65.6;0.0 +27306000;0;0;0.0 +27309600;0;0;0.0 +27313200;0;0;0.0 +27316800;0;0;0.0 +27320400;0;7967.9;0.0 +27324000;0;0;0.0 +27327600;0;0;0.0 +27331200;-2596.4;0;0.0 +27334800;0;0;0.0 +27338400;0;0;0.0 +27342000;0;0;0.0 +27345600;-16390.6;0;0.0 +27349200;-28006.9;0;0.0 +27352800;-23861.9;0;0.0 +27356400;-8819.6;0;0.0 +27360000;0;0;0.0 +27363600;-306.4;0;0.0 +27367200;-14091.7;0;0.0 +27370800;-35176.3;0;0.0 +27374400;-20503.7;0;0.0 +27378000;-25714.2;0;0.0 +27381600;-18432.8;0;0.0 +27385200;0;0;0.0 +27388800;0;66.8;0.0 +27392400;0;0;0.0 +27396000;0;0;0.0 +27399600;0;0;0.0 +27403200;0;0;0.0 +27406800;0;9756.1;0.0 +27410400;0;0;0.0 +27414000;0;0;0.0 +27417600;-3780.6;0;0.0 +27421200;0;0;0.0 +27424800;-312.8;0;0.0 +27428400;0;0;0.0 +27432000;-17485.6;0;0.0 +27435600;-33201.8;0;0.0 +27439200;-22987.0;0;0.0 +27442800;-2704.9;0;0.0 +27446400;-12.1;0;0.0 +27450000;0;0;0.0 +27453600;-21088.8;0;0.0 +27457200;-31160.6;0;0.0 +27460800;-39992.4;0;0.0 +27464400;-40432.4;0;0.0 +27468000;-6773.0;0;0.0 +27471600;0;0;0.0 +27475200;0;60.7;0.0 +27478800;0;0;0.0 +27482400;0;0;0.0 +27486000;0;0;0.0 +27489600;0;0;0.0 +27493200;0;12069.7;0.0 +27496800;0;9289.5;0.0 +27500400;0;6038.4;0.0 +27504000;-289.1;105.4;0.0 +27507600;0;0;0.0 +27511200;-6550.2;0;0.0 +27514800;0;0;0.0 +27518400;-2430.9;0;0.0 +27522000;-17689.7;0;0.0 +27525600;-30532.3;0;0.0 +27529200;-7770.2;0;0.0 +27532800;-280.2;0;0.0 +27536400;0;0;0.0 +27540000;-13942.2;0;0.0 +27543600;-30677.1;0;0.0 +27547200;-32433.1;0;0.0 +27550800;-36728.0;0;0.0 +27554400;-17473.4;0;0.0 +27558000;0;0;0.0 +27561600;0;0;0.0 +27565200;0;0;0.0 +27568800;0;0;0.0 +27572400;0;0;0.0 +27576000;0;0;0.0 +27579600;0;3606.9;0.0 +27583200;0;0;0.0 +27586800;0;0;0.0 +27590400;-9745.6;0;0.0 +27594000;-1742.9;0;0.0 +27597600;-81.2;0;0.0 +27601200;-7959.9;0;0.0 +27604800;-34476.1;0;0.0 +27608400;-65535.3;0;0.0 +27612000;-60630.4;0;0.0 +27615600;-36752.8;0;0.0 +27619200;-22717.7;0;0.0 +27622800;-28877.1;0;0.0 +27626400;-46781.3;0;0.0 +27630000;-53353.5;0;0.0 +27633600;-26004.5;0;0.0 +27637200;-25746.3;0;0.0 +27640800;-8522.0;0;0.0 +27644400;0;0;0.0 +27648000;0;0;0.0 +27651600;0;0;0.0 +27655200;0;0;0.0 +27658800;0;0;0.0 +27662400;0;0;0.0 +27666000;0;8798.1;0.0 +27669600;0;0;0.0 +27673200;0;0;0.0 +27676800;-5039.3;0;0.0 +27680400;0;0;0.0 +27684000;-887.8;0;0.0 +27687600;0;0;0.0 +27691200;-15742.7;0;0.0 +27694800;-32224.8;0;0.0 +27698400;-14412.0;0;0.0 +27702000;-10384.0;0;0.0 +27705600;0;0;0.0 +27709200;0;0;0.0 +27712800;-12931.3;0;0.0 +27716400;-29053.7;0;0.0 +27720000;-9232.6;0;0.0 +27723600;-18333.9;0;0.0 +27727200;-12254.1;0;0.0 +27730800;0;0;0.0 +27734400;0;1693.0;0.0 +27738000;0;0;0.0 +27741600;0;0;0.0 +27745200;0;0;0.0 +27748800;0;0;0.0 +27752400;0;15474.7;0.0 +27756000;0;11857.0;0.0 +27759600;0;8891.0;0.0 +27763200;-2828.3;0;0.0 +27766800;0;0;0.0 +27770400;-742.6;0;0.0 +27774000;-1611.6;0;0.0 +27777600;-5624.5;0;0.0 +27781200;-3963.4;0;0.0 +27784800;-3312.2;0;0.0 +27788400;-6504.6;0;0.0 +27792000;-1194.5;0;0.0 +27795600;0;0;0.0 +27799200;-2143.7;0;0.0 +27802800;-13208.0;0;0.0 +27806400;-34713.7;0;0.0 +27810000;-18616.3;0;0.0 +27813600;-14616.8;0;0.0 +27817200;0;0;0.0 +27820800;0;60.8;0.0 +27824400;0;0;0.0 +27828000;0;0;0.0 +27831600;0;0;0.0 +27835200;0;0;0.0 +27838800;0;13882.9;0.0 +27842400;0;11127.8;0.0 +27846000;0;7824.1;0.0 +27849600;-2578.6;0;0.0 +27853200;0;0;0.0 +27856800;0;0;0.0 +27860400;0;0;0.0 +27864000;-3503.9;0;0.0 +27867600;-3097.7;0;0.0 +27871200;-5121.9;0;0.0 +27874800;-5341.5;0;0.0 +27878400;0;0;0.0 +27882000;0;0;0.0 +27885600;-4060.2;0;0.0 +27889200;-13832.6;0;0.0 +27892800;-21659.4;0;0.0 +27896400;-25900.3;0;0.0 +27900000;-2186.2;0;0.0 +27903600;0;0;0.0 +27907200;0;132.5;0.0 +27910800;0;0;0.0 +27914400;0;0;0.0 +27918000;0;0;0.0 +27921600;0;0;0.0 +27925200;0;8625.7;0.0 +27928800;0;0;0.0 +27932400;0;0;0.0 +27936000;-2663.3;0;0.0 +27939600;0;0;0.0 +27943200;-2426.2;0;0.0 +27946800;0;0;0.0 +27950400;-19321.2;0;0.0 +27954000;-30409.6;0;0.0 +27957600;-40541.2;0;0.0 +27961200;-9033.0;0;0.0 +27964800;0;0;0.0 +27968400;-1512.3;0;0.0 +27972000;-16437.1;0;0.0 +27975600;-35564.5;0;0.0 +27979200;-18727.0;0;0.0 +27982800;-27654.5;0;0.0 +27986400;-6945.2;0;0.0 +27990000;0;0;0.0 +27993600;0;824.8;0.0 +27997200;0;0;0.0 +28000800;0;0;0.0 +28004400;0;0;0.0 +28008000;0;0;0.0 +28011600;0;12832.8;0.0 +28015200;0;0;0.0 +28018800;0;0;0.0 +28022400;-2368.9;153.3;0.0 +28026000;0;0;0.0 +28029600;-4807.6;0;0.0 +28033200;0;0;0.0 +28036800;-15860.9;0;0.0 +28040400;-34611.3;0;0.0 +28044000;-25293.2;0;0.0 +28047600;-4026.0;0;0.0 +28051200;0;0;0.0 +28054800;0;0;0.0 +28058400;-13146.1;0;0.0 +28062000;-28899.7;0;0.0 +28065600;-26729.0;0;0.0 +28069200;-24369.1;0;0.0 +28072800;-5799.4;0;0.0 +28076400;0;0;0.0 +28080000;0;1778.3;0.0 +28083600;0;0;0.0 +28087200;0;0;0.0 +28090800;0;0;0.0 +28094400;0;0;0.0 +28098000;0;13168.6;0.0 +28101600;0;10140.0;0.0 +28105200;0;6427.0;0.0 +28108800;0;0;0.0 +28112400;0;0;0.0 +28116000;-6752.5;0;0.0 +28119600;0;0;0.0 +28123200;-16525.1;0;0.0 +28126800;-35522.2;0;0.0 +28130400;-16991.2;0;0.0 +28134000;-3760.4;0;0.0 +28137600;0;0;0.0 +28141200;0;0;0.0 +28144800;-13496.8;0;0.0 +28148400;-28655.1;0;0.0 +28152000;-26046.3;0;0.0 +28155600;-24490.1;0;0.0 +28159200;-5459.5;0;0.0 +28162800;0;0;0.0 +28166400;0;2953.7;0.0 +28170000;0;0;0.0 +28173600;0;0;0.0 +28177200;0;0;0.0 +28180800;0;0;0.0 +28184400;0;15129.5;0.0 +28188000;0;10935.3;0.0 +28191600;0;6762.5;0.0 +28195200;0;0;0.0 +28198800;0;0;0.0 +28202400;-4290.3;0;0.0 +28206000;0;0;0.0 +28209600;-16667.3;0;0.0 +28213200;-35346.0;0;0.0 +28216800;-26751.5;0;0.0 +28220400;-5192.8;0;0.0 +28224000;0;0;0.0 +28227600;-148.6;0;0.0 +28231200;-13501.4;0;0.0 +28234800;-29496.1;0;0.0 +28238400;-26775.8;0;0.0 +28242000;-24895.5;0;0.0 +28245600;-5442.9;0;0.0 +28249200;0;0;0.0 +28252800;0;3500.3;0.0 +28256400;0;0;0.0 +28260000;0;0;0.0 +28263600;0;0;0.0 +28267200;0;0;0.0 +28270800;0;18615.0;0.0 +28274400;0;14707.2;0.0 +28278000;0;10191.6;0.0 +28281600;0;1705.6;0.0 +28285200;0;0;0.0 +28288800;-5979.1;0;0.0 +28292400;0;0;0.0 +28296000;-18763.7;0;0.0 +28299600;-29450.0;0;0.0 +28303200;-18181.2;0;0.0 +28306800;-6931.4;0;0.0 +28310400;-869.0;0;0.0 +28314000;-354.2;0;0.0 +28317600;-3662.3;0;0.0 +28321200;-18529.0;0;0.0 +28324800;-26472.4;0;0.0 +28328400;-24586.7;0;0.0 +28332000;-5549.2;0;0.0 +28335600;0;0;0.0 +28339200;0;2373.3;0.0 +28342800;0;0;0.0 +28346400;0;0;0.0 +28350000;0;0;0.0 +28353600;0;0;0.0 +28357200;0;17087.8;0.0 +28360800;0;13646.8;0.0 +28364400;0;10141.3;0.0 +28368000;0;199.1;0.0 +28371600;-1287.2;0;0.0 +28375200;-4631.9;0;0.0 +28378800;-924.5;0;0.0 +28382400;-2499.7;0;0.0 +28386000;-33226.9;0;0.0 +28389600;-6233.6;0;0.0 +28393200;-4470.9;0;0.0 +28396800;-1586.7;0;0.0 +28400400;-3184.5;0;0.0 +28404000;-3980.1;0;0.0 +28407600;-24995.2;0;0.0 +28411200;-41685.6;0;0.0 +28414800;-27654.3;0;0.0 +28418400;-24717.8;0;0.0 +28422000;-5692.1;0;0.0 +28425600;0;0;0.0 +28429200;0;0;0.0 +28432800;0;0;0.0 +28436400;0;0;0.0 +28440000;0;0;0.0 +28443600;0;3876.7;0.0 +28447200;0;1737.3;0.0 +28450800;0;332.8;0.0 +28454400;0;0;0.0 +28458000;0;0;0.0 +28461600;0;1909.9;0.0 +28465200;-142.7;0;0.0 +28468800;-4838.9;0;0.0 +28472400;-33258.1;0;0.0 +28476000;-40194.1;0;0.0 +28479600;-28482.8;0;0.0 +28483200;-14224.5;0;0.0 +28486800;-8425.6;0;0.0 +28490400;-20843.7;0;0.0 +28494000;-21616.8;0;0.0 +28497600;-26053.0;0;0.0 +28501200;-35194.3;0;0.0 +28504800;-5690.2;0;0.0 +28508400;0;0;0.0 +28512000;0;0;0.0 +28515600;0;0;0.0 +28519200;0;0;0.0 +28522800;0;0;0.0 +28526400;0;0;0.0 +28530000;0;104.3;0.0 +28533600;0;0;0.0 +28537200;0;0;0.0 +28540800;-15364.2;0;0.0 +28544400;-17908.2;0;0.0 +28548000;-7868.4;0;0.0 +28551600;-994.2;0;0.0 +28555200;-21154.3;0;0.0 +28558800;-50463.6;0;0.0 +28562400;-35010.7;0;0.0 +28566000;-4587.3;0;0.0 +28569600;-1001.3;0;0.0 +28573200;-8621.7;0;0.0 +28576800;-28185.0;0;0.0 +28580400;-44522.7;0;0.0 +28584000;-20430.8;0;0.0 +28587600;-44685.5;0;0.0 +28591200;-9675.3;0;0.0 +28594800;0;0;0.0 +28598400;0;0;0.0 +28602000;0;0;0.0 +28605600;0;0;0.0 +28609200;0;0;0.0 +28612800;0;0;0.0 +28616400;0;7356.4;0.0 +28620000;0;0;0.0 +28623600;0;0;0.0 +28627200;-5435.4;0;0.0 +28630800;0;0;0.0 +28634400;-2023.3;0;0.0 +28638000;0;0;0.0 +28641600;-17130.1;0;0.0 +28645200;-35057.2;0;0.0 +28648800;-24941.9;0;0.0 +28652400;-5033.8;0;0.0 +28656000;0;0;0.0 +28659600;0;0;0.0 +28663200;-13671.7;0;0.0 +28666800;-28599.5;0;0.0 +28670400;-25968.0;0;0.0 +28674000;-24729.3;0;0.0 +28677600;-4963.9;0;0.0 +28681200;0;0;0.0 +28684800;0;2407.0;0.0 +28688400;0;0;0.0 +28692000;0;0;0.0 +28695600;0;0;0.0 +28699200;0;0;0.0 +28702800;0;16426.5;0.0 +28706400;0;12064.4;0.0 +28710000;0;7746.1;0.0 +28713600;0;182.6;0.0 +28717200;0;0;0.0 +28720800;-4867.1;0;0.0 +28724400;0;0;0.0 +28728000;-14822.2;0;0.0 +28731600;-34424.5;0;0.0 +28735200;-23736.7;0;0.0 +28738800;-3798.2;0;0.0 +28742400;0;0;0.0 +28746000;0;0;0.0 +28749600;-13452.8;0;0.0 +28753200;-30171.3;0;0.0 +28756800;-26151.6;0;0.0 +28760400;-24522.5;0;0.0 +28764000;-5622.1;0;0.0 +28767600;0;0;0.0 +28771200;0;2111.0;0.0 +28774800;0;0;0.0 +28778400;0;0;0.0 +28782000;0;0;0.0 +28785600;0;0;0.0 +28789200;0;12813.5;0.0 +28792800;0;0;0.0 +28796400;0;0;0.0 +28800000;0;757.5;0.0 +28803600;0;0;0.0 +28807200;-5143.0;0;0.0 +28810800;0;0;0.0 +28814400;-14049.8;0;0.0 +28818000;-32451.3;0;0.0 +28821600;-21833.7;0;0.0 +28825200;-6537.7;0;0.0 +28828800;0;0;0.0 +28832400;0;0;0.0 +28836000;-13076.3;0;0.0 +28839600;-28963.4;0;0.0 +28843200;-26661.1;0;0.0 +28846800;-26562.6;0;0.0 +28850400;-6425.0;0;0.0 +28854000;0;0;0.0 +28857600;0;1278.7;0.0 +28861200;0;0;0.0 +28864800;0;0;0.0 +28868400;0;0;0.0 +28872000;0;0;0.0 +28875600;0;8777.4;0.0 +28879200;0;0;0.0 +28882800;0;0;0.0 +28886400;-4149.8;0;0.0 +28890000;-9954.9;0;0.0 +28893600;-1614.7;0;0.0 +28897200;0;0;0.0 +28900800;-13798.7;0;0.0 +28904400;-41107.0;0;0.0 +28908000;-27924.9;0;0.0 +28911600;-2056.0;0;0.0 +28915200;0;0;0.0 +28918800;-224.0;0;0.0 +28922400;-14240.9;0;0.0 +28926000;-33961.1;0;0.0 +28929600;-20229.2;0;0.0 +28933200;-24414.2;0;0.0 +28936800;-13306.0;0;0.0 +28940400;0;0;0.0 +28944000;0;1088.1;0.0 +28947600;0;0;0.0 +28951200;0;0;0.0 +28954800;0;0;0.0 +28958400;0;0;0.0 +28962000;0;12860.8;0.0 +28965600;0;0;0.0 +28969200;0;0;0.0 +28972800;0;1017.2;0.0 +28976400;0;0;0.0 +28980000;-1693.2;0;0.0 +28983600;0;0;0.0 +28987200;-11652.1;0;0.0 +28990800;-11338.9;0;0.0 +28994400;-9947.7;0;0.0 +28998000;-16.1;0;0.0 +29001600;0;0;0.0 +29005200;0;0;0.0 +29008800;-79.6;0;0.0 +29012400;-21371.0;0;0.0 +29016000;-34674.5;0;0.0 +29019600;-18692.3;0;0.0 +29023200;-14117.0;0;0.0 +29026800;0;0;0.0 +29030400;0;527.0;0.0 +29034000;0;0;0.0 +29037600;0;0;0.0 +29041200;0;0;0.0 +29044800;0;0;0.0 +29048400;0;14925.6;0.0 +29052000;0;12167.0;0.0 +29055600;0;8951.0;0.0 +29059200;-2305.9;0;0.0 +29062800;0;0;0.0 +29066400;0;0;0.0 +29070000;0;0;0.0 +29073600;-4037.7;0;0.0 +29077200;-12606.9;0;0.0 +29080800;-9853.9;0;0.0 +29084400;0;0;0.0 +29088000;0;0;0.0 +29091600;0;0;0.0 +29095200;-2080.0;0;0.0 +29098800;-11607.5;0;0.0 +29102400;-15178.2;0;0.0 +29106000;-16320.6;0;0.0 +29109600;0;0;0.0 +29113200;0;2412.0;0.0 +29116800;0;5498.3;0.0 +29120400;0;0;0.0 +29124000;0;0;0.0 +29127600;0;0;0.0 +29131200;0;0;0.0 +29134800;0;17915.0;0.0 +29138400;0;15783.8;0.0 +29142000;0;11514.5;0.0 +29145600;0;4104.0;0.0 +29149200;0;693.8;0.0 +29152800;-2875.9;0;0.0 +29156400;-1463.8;21.4;0.0 +29160000;-3243.2;0;0.0 +29163600;-34998.1;0;0.0 +29167200;-25161.6;0;0.0 +29170800;-1258.2;0;0.0 +29174400;0;0;0.0 +29178000;0;0;0.0 +29181600;-12283.0;0;0.0 +29185200;-27072.8;0;0.0 +29188800;-24903.1;0;0.0 +29192400;-24036.8;0;0.0 +29196000;-4728.8;0;0.0 +29199600;0;0;0.0 +29203200;0;4474.5;0.0 +29206800;0;0;0.0 +29210400;0;0;0.0 +29214000;0;0;0.0 +29217600;0;0;0.0 +29221200;0;20322.1;0.0 +29224800;0;16617.7;0.0 +29228400;0;12442.5;0.0 +29232000;0;4486.3;0.0 +29235600;0;1375.4;0.0 +29239200;-1854.6;131.7;0.0 +29242800;0;1218.7;0.0 +29246400;-13382.0;0;0.0 +29250000;-27971.0;0;0.0 +29253600;-18881.8;0;0.0 +29257200;-482.1;0;0.0 +29260800;0;1843.5;0.0 +29264400;0;54.5;0.0 +29268000;-10063.0;0;0.0 +29271600;-24654.6;0;0.0 +29275200;-22901.5;0;0.0 +29278800;-21226.7;0;0.0 +29282400;-3417.3;0;0.0 +29286000;0;1472.5;0.0 +29289600;0;6544.6;0.0 +29293200;0;0;0.0 +29296800;0;0;0.0 +29300400;0;0;0.0 +29304000;0;0;0.0 +29307600;0;23514.3;0.0 +29311200;0;17558.8;0.0 +29314800;0;12099.0;0.0 +29318400;0;4767.8;0.0 +29322000;0;1600.1;0.0 +29325600;-2746.3;86.3;0.0 +29329200;0;224.4;0.0 +29332800;-14406.7;0;0.0 +29336400;-27827.1;0;0.0 +29340000;-20466.1;0;0.0 +29343600;-1468.1;0;0.0 +29347200;0;88.5;0.0 +29350800;0;0;0.0 +29354400;-11401.7;0;0.0 +29358000;-25597.2;0;0.0 +29361600;-24147.6;0;0.0 +29365200;-21996.4;0;0.0 +29368800;-3084.7;0;0.0 +29372400;0;3714.0;0.0 +29376000;0;9941.5;0.0 +29379600;0;0;0.0 +29383200;0;0;0.0 +29386800;0;0;0.0 +29390400;0;0;0.0 +29394000;0;26507.1;0.0 +29397600;0;21742.9;0.0 +29401200;0;15520.4;0.0 +29404800;0;8414.0;0.0 +29408400;0;3818.2;0.0 +29412000;-1359.5;1123.9;0.0 +29415600;0;1298.3;0.0 +29419200;-12868.6;0;0.0 +29422800;-28807.5;0;0.0 +29426400;-19617.2;0;0.0 +29430000;-785.5;0;0.0 +29433600;0;252.8;0.0 +29437200;0;0;0.0 +29440800;-10849.8;0;0.0 +29444400;-26015.8;0;0.0 +29448000;-23405.1;0;0.0 +29451600;-22040.4;0;0.0 +29455200;-3089.1;0;0.0 +29458800;0;2709.7;0.0 +29462400;0;7788.3;0.0 +29466000;0;0;0.0 +29469600;0;0;0.0 +29473200;0;0;0.0 +29476800;0;0;0.0 +29480400;0;26274.1;0.0 +29484000;0;21581.7;0.0 +29487600;0;15193.3;0.0 +29491200;0;8054.8;0.0 +29494800;0;3823.9;0.0 +29498400;-1861.9;811.0;0.0 +29502000;0;953.9;0.0 +29505600;-13968.8;0;0.0 +29509200;-28515.6;0;0.0 +29512800;-21272.3;0;0.0 +29516400;-2423.9;0;0.0 +29520000;0;0;0.0 +29523600;0;0;0.0 +29527200;-10900.8;0;0.0 +29530800;-26126.5;0;0.0 +29534400;-23544.7;0;0.0 +29538000;-22182.5;0;0.0 +29541600;-3718.6;0;0.0 +29545200;0;782.7;0.0 +29548800;0;5438.0;0.0 +29552400;0;0;0.0 +29556000;0;0;0.0 +29559600;0;0;0.0 +29563200;0;0;0.0 +29566800;0;21457.2;0.0 +29570400;0;16481.5;0.0 +29574000;0;11792.9;0.0 +29577600;0;1276.0;0.0 +29581200;-3200.6;0;0.0 +29584800;-190.9;83.5;0.0 +29588400;0;217.0;0.0 +29592000;-7493.8;0;0.0 +29595600;-6407.0;0;0.0 +29599200;-5367.4;0;0.0 +29602800;0;0;0.0 +29606400;0;106.6;0.0 +29610000;0;189.2;0.0 +29613600;0;296.5;0.0 +29617200;-17472.1;0;0.0 +29620800;-26351.5;0;0.0 +29624400;-14491.8;0;0.0 +29628000;-10594.9;0;0.0 +29631600;0;191.8;0.0 +29635200;0;6983.3;0.0 +29638800;0;0;0.0 +29642400;0;0;0.0 +29646000;0;0;0.0 +29649600;0;0;0.0 +29653200;0;29036.6;0.0 +29656800;0;24485.2;0.0 +29660400;0;17757.3;0.0 +29664000;0;8179.3;0.0 +29667600;-407.7;3273.5;0.0 +29671200;0;5098.8;0.0 +29674800;-612.8;2909.2;0.0 +29678400;-1512.0;372.3;0.0 +29682000;-11683.1;0;0.0 +29685600;-9272.6;0;0.0 +29689200;0;132.1;0.0 +29692800;0;1433.9;0.0 +29696400;0;619.1;0.0 +29700000;-1754.4;64.2;0.0 +29703600;-10769.7;0;0.0 +29707200;-13951.2;0;0.0 +29710800;-14481.5;0;0.0 +29714400;0;1378.9;0.0 +29718000;0;7191.9;0.0 +29721600;0;11878.7;0.0 +29725200;0;0;0.0 +29728800;0;0;0.0 +29732400;0;0;0.0 +29736000;0;0;0.0 +29739600;0;33640.8;0.0 +29743200;0;28193.7;0.0 +29746800;0;20118.2;0.0 +29750400;0;11284.3;0.0 +29754000;0;6748.2;0.0 +29757600;-607.9;4869.3;0.0 +29761200;0;3539.1;0.0 +29764800;-16367.1;0;0.0 +29768400;-30838.7;0;0.0 +29772000;-23545.3;0;0.0 +29775600;-1893.4;0;0.0 +29779200;0;612.0;0.0 +29782800;0;534.9;0.0 +29786400;-11156.1;0;0.0 +29790000;-27452.0;0;0.0 +29793600;-23520.8;0;0.0 +29797200;-23813.3;0;0.0 +29800800;-3632.7;0;0.0 +29804400;0;5297.5;0.0 +29808000;0;11025.6;0.0 +29811600;0;0;0.0 +29815200;0;0;0.0 +29818800;0;0;0.0 +29822400;0;0;0.0 +29826000;0;30168.0;0.0 +29829600;0;24336.5;0.0 +29833200;0;16864.7;0.0 +29836800;0;8196.0;0.0 +29840400;0;5209.9;0.0 +29844000;-1327.0;2163.6;0.0 +29847600;0;3361.7;0.0 +29851200;-12169.5;0;0.0 +29854800;-26894.1;0;0.0 +29858400;-20514.5;0;0.0 +29862000;-1170.9;0;0.0 +29865600;0;0;0.0 +29869200;0;0;0.0 +29872800;-11310.9;0;0.0 +29876400;-26159.3;0;0.0 +29880000;-24062.0;0;0.0 +29883600;-22584.8;0;0.0 +29887200;-3827.5;0;0.0 +29890800;0;0;0.0 +29894400;0;4127.2;0.0 +29898000;0;0;0.0 +29901600;0;0;0.0 +29905200;0;0;0.0 +29908800;0;0;0.0 +29912400;0;16822.8;0.0 +29916000;0;13102.4;0.0 +29919600;0;8410.4;0.0 +29923200;-727.4;743.1;0.0 +29926800;0;0;0.0 +29930400;-4902.3;0;0.0 +29934000;0;0;0.0 +29937600;-15883.0;0;0.0 +29941200;-36906.4;0;0.0 +29944800;-24029.4;0;0.0 +29948400;-4963.5;0;0.0 +29952000;0;0;0.0 +29955600;0;0;0.0 +29959200;-13401.9;0;0.0 +29962800;-29496.0;0;0.0 +29966400;-29831.3;0;0.0 +29970000;-28169.0;0;0.0 +29973600;-10168.4;0;0.0 +29977200;0;0;0.0 +29980800;0;979.9;0.0 +29984400;0;0;0.0 +29988000;0;0;0.0 +29991600;0;0;0.0 +29995200;0;0;0.0 +29998800;0;10169.9;0.0 +30002400;0;0;0.0 +30006000;0;0;0.0 +30009600;-3343.4;0;0.0 +30013200;0;0;0.0 +30016800;-2126.7;0;0.0 +30020400;0;0;0.0 +30024000;-16780.4;0;0.0 +30027600;-37000.9;0;0.0 +30031200;-17397.4;0;0.0 +30034800;-15692.7;0;0.0 +30038400;0;0;0.0 +30042000;-1968.0;0;0.0 +30045600;-14978.3;0;0.0 +30049200;-32217.8;0;0.0 +30052800;-31797.9;0;0.0 +30056400;-27227.7;0;0.0 +30060000;-7215.1;0;0.0 +30063600;0;0;0.0 +30067200;0;1193.1;0.0 +30070800;0;0;0.0 +30074400;0;0;0.0 +30078000;0;0;0.0 +30081600;0;0;0.0 +30085200;0;12430.0;0.0 +30088800;0;0;0.0 +30092400;0;0;0.0 +30096000;-120.8;687.8;0.0 +30099600;0;4.6;0.0 +30103200;-5163.9;0;0.0 +30106800;0;0;0.0 +30110400;-16214.9;0;0.0 +30114000;-35686.9;0;0.0 +30117600;-25337.9;0;0.0 +30121200;-5107.6;0;0.0 +30124800;0;0;0.0 +30128400;-140.9;0;0.0 +30132000;-13698.8;0;0.0 +30135600;-29943.0;0;0.0 +30139200;-26537.6;0;0.0 +30142800;-24627.6;0;0.0 +30146400;-5884.1;0;0.0 +30150000;0;0;0.0 +30153600;0;1914.9;0.0 +30157200;0;0;0.0 +30160800;0;0;0.0 +30164400;0;0;0.0 +30168000;0;0;0.0 +30171600;0;13640.5;0.0 +30175200;0;12705.1;0.0 +30178800;0;9304.9;0.0 +30182400;-2664.1;0;0.0 +30186000;0;0;0.0 +30189600;-5732.7;0;0.0 +30193200;-1339.8;0;0.0 +30196800;-2583.4;0;0.0 +30200400;-8680.4;0;0.0 +30204000;-9428.7;0;0.0 +30207600;-3150.3;0;0.0 +30211200;-143.5;0;0.0 +30214800;-1569.9;0;0.0 +30218400;-1333.2;0;0.0 +30222000;-22432.7;0;0.0 +30225600;-34746.7;0;0.0 +30229200;-20431.7;0;0.0 +30232800;-14278.2;0;0.0 +30236400;0;0;0.0 +30240000;0;57.7;0.0 +30243600;0;0;0.0 +30247200;0;0;0.0 +30250800;0;0;0.0 +30254400;0;0;0.0 +30258000;0;16699.2;0.0 +30261600;0;12940.4;0.0 +30265200;0;10120.7;0.0 +30268800;-827.4;420.8;0.0 +30272400;0;0;0.0 +30276000;0;494.2;0.0 +30279600;-979.1;0;0.0 +30283200;-2237.1;0;0.0 +30286800;-4765.3;0;0.0 +30290400;-2150.9;0;0.0 +30294000;0;0;0.0 +30297600;0;0;0.0 +30301200;0;0;0.0 +30304800;-1486.7;0;0.0 +30308400;-10672.6;0;0.0 +30312000;-14794.2;0;0.0 +30315600;-15101.0;0;0.0 +30319200;0;0;0.0 +30322800;0;1606.1;0.0 +30326400;0;4255.4;0.0 +30330000;0;0;0.0 +30333600;0;0;0.0 +30337200;0;0;0.0 +30340800;0;0;0.0 +30344400;0;15169.9;0.0 +30348000;0;11361.7;0.0 +30351600;0;7717.7;0.0 +30355200;0;395.1;0.0 +30358800;0;0;0.0 +30362400;-3730.5;0;0.0 +30366000;0;0;0.0 +30369600;-15343.6;0;0.0 +30373200;-34960.7;0;0.0 +30376800;-24268.1;0;0.0 +30380400;-6395.7;0;0.0 +30384000;0;0;0.0 +30387600;0;0;0.0 +30391200;-12998.6;0;0.0 +30394800;-29955.4;0;0.0 +30398400;-28055.2;0;0.0 +30402000;-25074.0;0;0.0 +30405600;-5483.4;0;0.0 +30409200;0;0;0.0 +30412800;0;2117.7;0.0 +30416400;0;0;0.0 +30420000;0;0;0.0 +30423600;0;0;0.0 +30427200;0;0;0.0 +30430800;0;14743.0;0.0 +30434400;0;11312.3;0.0 +30438000;0;7500.1;0.0 +30441600;0;814.4;0.0 +30445200;0;0;0.0 +30448800;-5174.1;0;0.0 +30452400;0;0;0.0 +30456000;-14979.1;0;0.0 +30459600;-34750.9;0;0.0 +30463200;-24623.4;0;0.0 +30466800;-4559.3;0;0.0 +30470400;0;0;0.0 +30474000;0;0;0.0 +30477600;-12784.2;0;0.0 +30481200;-29074.4;0;0.0 +30484800;-26399.4;0;0.0 +30488400;-24636.7;0;0.0 +30492000;-5327.4;0;0.0 +30495600;0;0;0.0 +30499200;0;2368.3;0.0 +30502800;0;0;0.0 +30506400;0;0;0.0 +30510000;0;0;0.0 +30513600;0;0;0.0 +30517200;0;16557.0;0.0 +30520800;0;12844.4;0.0 +30524400;0;9030.4;0.0 +30528000;0;1890.2;0.0 +30531600;0;47.9;0.0 +30535200;-3362.3;0;0.0 +30538800;0;0;0.0 +30542400;-14072.5;0;0.0 +30546000;-34258.8;0;0.0 +30549600;-23574.5;0;0.0 +30553200;-3975.7;0;0.0 +30556800;0;0;0.0 +30560400;0;0;0.0 +30564000;-12753.5;0;0.0 +30567600;-28403.1;0;0.0 +30571200;-28680.9;0;0.0 +30574800;-25570.3;0;0.0 +30578400;-5851.8;0;0.0 +30582000;0;0;0.0 +30585600;0;1909.4;0.0 +30589200;0;0;0.0 +30592800;0;0;0.0 +30596400;0;0;0.0 +30600000;0;0;0.0 +30603600;0;14525.8;0.0 +30607200;0;10409.2;0.0 +30610800;0;6342.1;0.0 +30614400;0;0;0.0 +30618000;0;0;0.0 +30621600;-6476.6;0;0.0 +30625200;0;0;0.0 +30628800;-15797.4;0;0.0 +30632400;-35794.6;0;0.0 +30636000;-24934.3;0;0.0 +30639600;-3724.0;0;0.0 +30643200;0;0;0.0 +30646800;0;0;0.0 +30650400;-12541.6;0;0.0 +30654000;-28224.7;0;0.0 +30657600;-26145.7;0;0.0 +30661200;-23197.3;0;0.0 +30664800;-3528.2;0;0.0 +30668400;0;0;0.0 +30672000;0;5558.6;0.0 +30675600;0;0;0.0 +30679200;0;0;0.0 +30682800;0;0;0.0 +30686400;0;0;0.0 +30690000;0;23730.7;0.0 +30693600;0;18335.1;0.0 +30697200;0;12316.5;0.0 +30700800;0;5229.1;0.0 +30704400;0;588.8;0.0 +30708000;-2131.2;0;0.0 +30711600;0;0;0.0 +30715200;-13081.0;0;0.0 +30718800;-28934.3;0;0.0 +30722400;-22155.9;0;0.0 +30726000;-1988.1;0;0.0 +30729600;0;0;0.0 +30733200;0;0;0.0 +30736800;-9943.4;0;0.0 +30740400;-24891.8;0;0.0 +30744000;-23453.9;0;0.0 +30747600;-21910.4;0;0.0 +30751200;-3687.4;0;0.0 +30754800;0;867.7;0.0 +30758400;0;6583.7;0.0 +30762000;0;0;0.0 +30765600;0;0;0.0 +30769200;0;0;0.0 +30772800;0;0;0.0 +30776400;0;21827.3;0.0 +30780000;0;17098.0;0.0 +30783600;0;12502.0;0.0 +30787200;-216.4;1624.6;0.0 +30790800;0;0;0.0 +30794400;-2951.6;0;0.0 +30798000;0;0;0.0 +30801600;-10848.5;0;0.0 +30805200;-11589.1;0;0.0 +30808800;-616.7;0;0.0 +30812400;-2069.6;0;0.0 +30816000;0;0;0.0 +30819600;-569.9;0;0.0 +30823200;-341.5;0;0.0 +30826800;-21873.1;0;0.0 +30830400;-34638.2;0;0.0 +30834000;-23024.2;0;0.0 +30837600;-15824.9;0;0.0 +30841200;0;0;0.0 +30844800;0;0;0.0 +30848400;0;0;0.0 +30852000;0;0;0.0 +30855600;0;0;0.0 +30859200;0;0;0.0 +30862800;0;14877.0;0.0 +30866400;0;11158.5;0.0 +30870000;0;8540.2;0.0 +30873600;-1968.6;0;0.0 +30877200;0;0;0.0 +30880800;0;33.8;0.0 +30884400;0;0;0.0 +30888000;-3278.7;0;0.0 +30891600;-12873.1;0;0.0 +30895200;-10292.0;0;0.0 +30898800;0;0;0.0 +30902400;0;0;0.0 +30906000;0;0;0.0 +30909600;-3476.3;0;0.0 +30913200;-12329.1;0;0.0 +30916800;-16142.5;0;0.0 +30920400;-18465.7;0;0.0 +30924000;0;0;0.0 +30927600;0;0;0.0 +30931200;0;918.8;0.0 +30934800;0;0;0.0 +30938400;0;0;0.0 +30942000;0;0;0.0 +30945600;0;0;0.0 +30949200;0;15443.7;0.0 +30952800;0;11233.8;0.0 +30956400;0;7980.9;0.0 +30960000;0;859.5;0.0 +30963600;0;108.5;0.0 +30967200;-2606.8;0;0.0 +30970800;0;63.8;0.0 +30974400;-13655.2;0;0.0 +30978000;-29788.6;0;0.0 +30981600;-19649.7;0;0.0 +30985200;-2313.0;0;0.0 +30988800;0;1088.9;0.0 +30992400;0;510.1;0.0 +30996000;-405.8;0;0.0 +30999600;-25396.6;0;0.0 +31003200;-23196.5;0;0.0 +31006800;-20877.0;0;0.0 +31010400;-2762.2;0;0.0 +31014000;0;4426.6;0.0 +31017600;0;11277.7;0.0 +31021200;0;0;0.0 +31024800;0;0;0.0 +31028400;0;0;0.0 +31032000;0;0;0.0 +31035600;0;35847.7;0.0 +31039200;0;27775.1;0.0 +31042800;0;20323.3;0.0 +31046400;0;12367.5;0.0 +31050000;0;7927.4;0.0 +31053600;0;3630.2;0.0 +31057200;0;4059.1;0.0 +31060800;-11496.3;0;0.0 +31064400;-28297.8;0;0.0 +31068000;-18365.9;0;0.0 +31071600;0;140.5;0.0 +31075200;0;1769.7;0.0 +31078800;0;905.3;0.0 +31082400;-10019.4;0;0.0 +31086000;-24823.4;0;0.0 +31089600;-23505.5;0;0.0 +31093200;-20955.1;0;0.0 +31096800;-2276.5;0;0.0 +31100400;0;4782.1;0.0 +31104000;0;11515.7;0.0 +31107600;0;0;0.0 +31111200;0;0;0.0 +31114800;0;0;0.0 +31118400;0;0;0.0 +31122000;0;32144.1;0.0 +31125600;0;25910.5;0.0 +31129200;0;17919.4;0.0 +31132800;0;9173.8;0.0 +31136400;0;5161.9;0.0 +31140000;-1839.0;1794.1;0.0 +31143600;0;3617.1;0.0 +31147200;-13871.4;0;0.0 +31150800;-28719.8;0;0.0 +31154400;-20537.0;0;0.0 +31158000;-1036.2;0;0.0 +31161600;0;1139.9;0.0 +31165200;0;476.3;0.0 +31168800;-10432.6;0;0.0 +31172400;-25402.0;0;0.0 +31176000;-23185.4;0;0.0 +31179600;-21857.2;0;0.0 +31183200;-3455.3;0;0.0 +31186800;0;4163.8;0.0 +31190400;0;9465.6;0.0 +31194000;0;0;0.0 +31197600;0;0;0.0 +31201200;0;0;0.0 +31204800;0;0;0.0 +31208400;0;28705.2;0.0 +31212000;0;24028.9;0.0 +31215600;0;17247.4;0.0 +31219200;0;9392.3;0.0 +31222800;0;6377.8;0.0 +31226400;-930.9;4155.2;0.0 +31230000;0;4552.8;0.0 +31233600;-11446.7;0;0.0 +31237200;-25558.8;0;0.0 +31240800;-18204.2;0;0.0 +31244400;0;0;0.0 +31248000;0;1202.0;0.0 +31251600;0;706.3;0.0 +31255200;-9228.4;0;0.0 +31258800;-23804.7;0;0.0 +31262400;-22695.1;0;0.0 +31266000;-20063.0;0;0.0 +31269600;-1374.7;0;0.0 +31273200;0;4916.6;0.0 +31276800;0;10068.2;0.0 +31280400;0;0;0.0 +31284000;0;0;0.0 +31287600;0;0;0.0 +31291200;0;0;0.0 +31294800;0;27587.1;0.0 +31298400;0;22218.8;0.0 +31302000;0;15553.3;0.0 +31305600;0;7621.6;0.0 +31309200;0;4293.5;0.0 +31312800;-1707.3;998.1;0.0 +31316400;0;802.1;0.0 +31320000;-13905.5;0;0.0 +31323600;-27134.6;0;0.0 +31327200;-20694.6;0;0.0 +31330800;-1385.7;0;0.0 +31334400;0;33.7;0.0 +31338000;0;0;0.0 +31341600;-10770.1;0;0.0 +31345200;-26446.9;0;0.0 +31348800;-24650.2;0;0.0 +31352400;-23722.3;0;0.0 +31356000;-4209.8;0;0.0 +31359600;0;40.1;0.0 +31363200;0;5083.1;0.0 +31366800;0;0;0.0 +31370400;0;0;0.0 +31374000;0;0;0.0 +31377600;0;0;0.0 +31381200;0;19670.5;0.0 +31384800;0;16749.3;0.0 +31388400;0;11376.7;0.0 +31392000;0;1093.5;0.0 +31395600;-54.3;0;0.0 +31399200;-2413.7;0;0.0 +31402800;0;0;0.0 +31406400;-10316.0;0;0.0 +31410000;-10282.2;0;0.0 +31413600;-9431.9;0;0.0 +31417200;0;0;0.0 +31420800;0;0;0.0 +31424400;-441.2;0;0.0 +31428000;-18.1;0;0.0 +31431600;-21753.5;0;0.0 +31435200;-35937.3;0;0.0 +31438800;-19298.4;0;0.0 +31442400;-14825.7;0;0.0 +31446000;0;0;0.0 +31449600;0;55.0;0.0 +31453200;0;0;0.0 +31456800;0;0;0.0 +31460400;0;0;0.0 +31464000;0;0;0.0 +31467600;0;16791.1;0.0 +31471200;0;14381.6;0.0 +31474800;0;10633.6;0.0 +31478400;0;522.3;0.0 +31482000;0;0;0.0 +31485600;0;317.6;0.0 +31489200;0;0;0.0 +31492800;-2517.5;0;0.0 +31496400;-11331.3;0;0.0 +31500000;-9373.7;0;0.0 +31503600;0;0;0.0 +31507200;0;0;0.0 +31510800;0;0;0.0 +31514400;-1308.7;0;0.0 +31518000;-11232.3;0;0.0 +31521600;-15247.6;0;0.0 +31525200;-16075.6;0;0.0 +31528800;0;0;0.0 +31532400;0;4051.2;0.0 +31536000;0;7374.0;0.0 diff --git a/tests/data_shared/B6.mos b/tests/data_shared/B6.mos new file mode 100644 index 000000000..73910e989 --- /dev/null +++ b/tests/data_shared/B6.mos @@ -0,0 +1,8777 @@ +#1 +#Heating and Cooling Model loads from OpenStudio Prototype Buildings +# Building Type: {{BUILDINGTYPE}} +# Climate Zone: {{CLIMATEZONE}} +# Vintage: {{VINTAGE}} +# Simulation ID (for debugging): {{SIMID}} +# URL: https://github.com/urbanopt/openstudio-prototype-loads + +#First column: Seconds in the year (loads are hourly) +#Second column: cooling loads in Watts (as negative numbers). +#Third column: space heating loads in Watts +#Fourth column: water heating in Watts + +#Peak space cooling load = -16036.2 Watts +#Peak space heating load = 156644.0 Watts +#Peak water heating load = 5000 Watts +double tab1(8760,4) +3600;0;3937.7;0.0 +7200;0;6280.6;0.0 +10800;0;4093.2;0.0 +14400;0;5748.0;0.0 +18000;0;4678.3;0.0 +21600;0;5768.1;0.0 +25200;0;4575.2;0.0 +28800;0;6304.3;0.0 +32400;0;4311.3;0.0 +36000;0;4774.1;0.0 +39600;0;3392.0;0.0 +43200;0;2253.1;0.0 +46800;0;1876.4;0.0 +50400;0;2035.6;0.0 +54000;0;1446.3;0.0 +57600;0;2034.0;0.0 +61200;0;3117.2;0.0 +64800;0;4279.0;0.0 +68400;0;5457.6;0.0 +72000;0;4683.8;0.0 +75600;0;5090.3;0.0 +79200;0;4191.7;0.0 +82800;0;5557.6;0.0 +86400;0;5940.6;0.0 +90000;0;3675.8;0.0 +93600;0;6593.0;0.0 +97200;0;4221.0;0.0 +100800;0;6376.1;0.0 +104400;0;4404.8;0.0 +108000;0;6303.1;0.0 +111600;0;90760.3;0.0 +115200;0;58729.0;0.0 +118800;0;38558.2;0.0 +122400;0;31656.7;0.0 +126000;0;24891.1;0.0 +129600;0;19583.4;0.0 +133200;0;18165.1;0.0 +136800;0;14009.7;0.0 +140400;0;11759.0;0.0 +144000;0;11229.6;0.0 +147600;0;11128.5;0.0 +151200;0;16840.4;0.0 +154800;0;23464.9;0.0 +158400;0;0;0.0 +162000;0;0;0.0 +165600;0;0;0.0 +169200;0;0;0.0 +172800;0;0;0.0 +176400;0;0;0.0 +180000;0;0;0.0 +183600;0;0;0.0 +187200;0;276.2;0.0 +190800;0;1060.2;0.0 +194400;0;1923.4;0.0 +198000;0;54662.8;0.0 +201600;0;40531.8;0.0 +205200;0;22496.6;0.0 +208800;0;18578.1;0.0 +212400;0;15640.2;0.0 +216000;0;12486.4;0.0 +219600;0;13220.5;0.0 +223200;0;10251.9;0.0 +226800;0;8694.8;0.0 +230400;0;9608.7;0.0 +234000;0;10385.7;0.0 +237600;0;16514.8;0.0 +241200;0;19641.1;0.0 +244800;0;0;0.0 +248400;0;0;0.0 +252000;0;0;0.0 +255600;0;0;0.0 +259200;0;0;0.0 +262800;0;205.5;0.0 +266400;0;345.1;0.0 +270000;0;1905.5;0.0 +273600;0;3372.3;0.0 +277200;0;5537.8;0.0 +280800;0;4554.9;0.0 +284400;0;68200.6;0.0 +288000;0;47380.3;0.0 +291600;0;29251.3;0.0 +295200;0;19786.4;0.0 +298800;0;15692.4;0.0 +302400;0;14154.2;0.0 +306000;0;12420.7;0.0 +309600;0;8797.4;0.0 +313200;0;7845.5;0.0 +316800;0;8835.5;0.0 +320400;0;11106.2;0.0 +324000;0;18154.5;0.0 +327600;0;20681.9;0.0 +331200;0;0;0.0 +334800;0;0;0.0 +338400;0;0;0.0 +342000;0;216.2;0.0 +345600;0;352.5;0.0 +349200;0;592.1;0.0 +352800;0;1151.2;0.0 +356400;0;2102.3;0.0 +360000;0;3451.3;0.0 +363600;0;4135.6;0.0 +367200;0;4784.7;0.0 +370800;0;61646.1;0.0 +374400;0;43723.9;0.0 +378000;0;26578.1;0.0 +381600;0;19210.7;0.0 +385200;0;14386.0;0.0 +388800;0;13169.3;0.0 +392400;0;12197.2;0.0 +396000;0;7091.4;0.0 +399600;0;6395.1;0.0 +403200;0;6471.9;0.0 +406800;0;8456.4;0.0 +410400;0;15030.6;0.0 +414000;0;18306.5;0.0 +417600;0;0;0.0 +421200;0;0;0.0 +424800;0;0;0.0 +428400;0;85.0;0.0 +432000;0;370.5;0.0 +435600;0;364.7;0.0 +439200;0;1303.9;0.0 +442800;0;1772.2;0.0 +446400;0;3702.6;0.0 +450000;0;4457.2;0.0 +453600;0;4520.9;0.0 +457200;0;53972.2;0.0 +460800;0;38913.4;0.0 +464400;0;25747.8;0.0 +468000;0;17079.6;0.0 +471600;0;11842.8;0.0 +475200;0;10196.6;0.0 +478800;-312.0;8929.3;0.0 +482400;-722.1;5329.4;0.0 +486000;-396.5;4839.2;0.0 +489600;0;4693.1;0.0 +493200;0;6137.1;0.0 +496800;0;12148.7;0.0 +500400;0;16142.5;0.0 +504000;0;0;0.0 +507600;0;0;0.0 +511200;0;0;0.0 +514800;0;0;0.0 +518400;0;0;0.0 +522000;0;0;0.0 +525600;0;59.0;0.0 +529200;0;203.3;0.0 +532800;0;429.5;0.0 +536400;0;1107.0;0.0 +540000;0;1610.0;0.0 +543600;0;2079.2;0.0 +547200;0;2146.7;0.0 +550800;0;3334.1;0.0 +554400;0;2740.2;0.0 +558000;0;3632.8;0.0 +561600;0;2718.6;0.0 +565200;0;3036.9;0.0 +568800;0;2380.2;0.0 +572400;0;3248.1;0.0 +576000;0;4522.1;0.0 +579600;0;5329.3;0.0 +583200;0;6851.8;0.0 +586800;0;7309.2;0.0 +590400;0;5998.1;0.0 +594000;0;7533.4;0.0 +597600;0;8583.3;0.0 +601200;0;8241.2;0.0 +604800;0;7014.1;0.0 +608400;0;8129.6;0.0 +612000;0;7955.2;0.0 +615600;0;11079.8;0.0 +619200;0;9457.2;0.0 +622800;0;7487.1;0.0 +626400;0;10542.7;0.0 +630000;0;11453.9;0.0 +633600;0;8866.2;0.0 +637200;0;8141.4;0.0 +640800;0;6350.9;0.0 +644400;0;7954.2;0.0 +648000;0;6575.9;0.0 +651600;0;4801.5;0.0 +655200;0;3121.6;0.0 +658800;0;4489.3;0.0 +662400;0;5338.7;0.0 +666000;0;6789.8;0.0 +669600;0;7095.5;0.0 +673200;0;6720.0;0.0 +676800;0;6763.9;0.0 +680400;0;9770.5;0.0 +684000;0;8764.8;0.0 +687600;0;6944.8;0.0 +691200;0;10889.0;0.0 +694800;0;9244.2;0.0 +698400;0;8161.9;0.0 +702000;0;11480.9;0.0 +705600;0;7919.5;0.0 +709200;0;11123.6;0.0 +712800;0;9398.9;0.0 +716400;0;107047.7;0.0 +720000;0;60083.3;0.0 +723600;0;47368.8;0.0 +727200;0;39711.9;0.0 +730800;0;33084.4;0.0 +734400;0;27445.0;0.0 +738000;0;27101.5;0.0 +741600;0;22379.1;0.0 +745200;0;16689.0;0.0 +748800;0;17614.0;0.0 +752400;0;18326.6;0.0 +756000;0;25523.2;0.0 +759600;0;28959.8;0.0 +763200;0;0;0.0 +766800;0;0;0.0 +770400;0;322.9;0.0 +774000;0;562.0;0.0 +777600;0;1803.8;0.0 +781200;0;2946.5;0.0 +784800;0;4313.6;0.0 +788400;0;4763.8;0.0 +792000;0;6258.2;0.0 +795600;0;7358.9;0.0 +799200;0;9043.8;0.0 +802800;0;97450.7;0.0 +806400;0;54371.3;0.0 +810000;0;37830.0;0.0 +813600;0;22732.8;0.0 +817200;0;17121.8;0.0 +820800;0;12465.2;0.0 +824400;0;11532.2;0.0 +828000;0;6818.5;0.0 +831600;0;5620.3;0.0 +835200;0;5378.0;0.0 +838800;0;6874.8;0.0 +842400;0;14287.6;0.0 +846000;0;16916.8;0.0 +849600;0;0;0.0 +853200;0;0;0.0 +856800;0;0;0.0 +860400;0;0;0.0 +864000;0;0;0.0 +867600;0;0;0.0 +871200;0;0;0.0 +874800;0;0;0.0 +878400;0;0;0.0 +882000;0;43.8;0.0 +885600;0;70.0;0.0 +889200;0;36277.6;0.0 +892800;0;26200.6;0.0 +896400;0;16086.8;0.0 +900000;0;12503.6;0.0 +903600;0;9211.0;0.0 +907200;0;7985.5;0.0 +910800;0;8227.2;0.0 +914400;0;5908.2;0.0 +918000;0;5327.3;0.0 +921600;0;4041.8;0.0 +925200;0;4353.4;0.0 +928800;0;7311.2;0.0 +932400;0;16871.7;0.0 +936000;0;0;0.0 +939600;0;0;0.0 +943200;0;0;0.0 +946800;0;0;0.0 +950400;0;0;0.0 +954000;0;0;0.0 +957600;0;717.0;0.0 +961200;0;2011.2;0.0 +964800;0;3527.4;0.0 +968400;0;6166.3;0.0 +972000;0;5418.4;0.0 +975600;0;90601.0;0.0 +979200;0;51430.8;0.0 +982800;0;37363.2;0.0 +986400;0;26029.2;0.0 +990000;0;20379.7;0.0 +993600;0;18800.2;0.0 +997200;0;17320.7;0.0 +1000800;-179.8;10597.3;0.0 +1004400;0;8861.1;0.0 +1008000;0;8755.0;0.0 +1011600;0;10781.2;0.0 +1015200;0;18618.5;0.0 +1018800;0;21759.6;0.0 +1022400;0;0;0.0 +1026000;0;0;0.0 +1029600;0;259.9;0.0 +1033200;0;351.0;0.0 +1036800;0;563.6;0.0 +1040400;0;872.6;0.0 +1044000;0;1535.3;0.0 +1047600;0;1865.1;0.0 +1051200;0;2235.9;0.0 +1054800;0;3775.8;0.0 +1058400;0;3753.4;0.0 +1062000;0;63883.0;0.0 +1065600;0;43712.4;0.0 +1069200;0;27235.8;0.0 +1072800;0;19585.6;0.0 +1076400;0;13642.7;0.0 +1080000;0;12726.2;0.0 +1083600;0;10596.5;0.0 +1087200;0;6495.1;0.0 +1090800;0;4377.5;0.0 +1094400;0;4574.0;0.0 +1098000;0;6344.2;0.0 +1101600;0;12846.7;0.0 +1105200;0;18137.4;0.0 +1108800;0;0;0.0 +1112400;0;0;0.0 +1116000;0;0;0.0 +1119600;0;0;0.0 +1123200;0;0;0.0 +1126800;0;0;0.0 +1130400;0;0;0.0 +1134000;0;0;0.0 +1137600;0;0;0.0 +1141200;0;30.4;0.0 +1144800;0;109.4;0.0 +1148400;0;152.3;0.0 +1152000;0;245.7;0.0 +1155600;0;137.2;0.0 +1159200;0;153.6;0.0 +1162800;0;46.3;0.0 +1166400;0;0;0.0 +1170000;0;0;0.0 +1173600;0;0;0.0 +1177200;0;0;0.0 +1180800;0;0;0.0 +1184400;0;109.2;0.0 +1188000;0;378.8;0.0 +1191600;0;736.7;0.0 +1195200;0;1439.8;0.0 +1198800;0;1325.8;0.0 +1202400;0;1881.9;0.0 +1206000;0;2054.5;0.0 +1209600;0;2593.0;0.0 +1213200;0;2373.1;0.0 +1216800;0;2774.9;0.0 +1220400;0;2877.1;0.0 +1224000;0;3129.5;0.0 +1227600;0;3866.2;0.0 +1231200;0;3555.8;0.0 +1234800;0;4034.2;0.0 +1238400;0;4360.7;0.0 +1242000;0;3446.7;0.0 +1245600;0;1618.2;0.0 +1249200;0;1202.7;0.0 +1252800;0;506.1;0.0 +1256400;0;470.3;0.0 +1260000;0;419.6;0.0 +1263600;0;435.4;0.0 +1267200;0;551.7;0.0 +1270800;0;993.4;0.0 +1274400;0;1900.3;0.0 +1278000;0;2292.9;0.0 +1281600;0;2026.9;0.0 +1285200;0;2626.9;0.0 +1288800;0;2974.0;0.0 +1292400;0;3568.1;0.0 +1296000;0;2733.5;0.0 +1299600;0;3009.4;0.0 +1303200;0;4161.4;0.0 +1306800;0;2937.5;0.0 +1310400;0;4632.0;0.0 +1314000;0;3608.4;0.0 +1317600;0;6370.4;0.0 +1321200;0;81830.6;0.0 +1324800;0;53491.9;0.0 +1328400;0;33539.9;0.0 +1332000;0;25058.2;0.0 +1335600;0;18484.5;0.0 +1339200;0;14495.0;0.0 +1342800;0;12382.3;0.0 +1346400;0;7956.3;0.0 +1350000;0;4885.9;0.0 +1353600;0;6261.0;0.0 +1357200;0;6304.6;0.0 +1360800;0;12297.8;0.0 +1364400;0;20427.9;0.0 +1368000;0;0;0.0 +1371600;0;0;0.0 +1375200;0;0;0.0 +1378800;0;0;0.0 +1382400;0;0;0.0 +1386000;0;0;0.0 +1389600;0;0;0.0 +1393200;0;0;0.0 +1396800;0;0;0.0 +1400400;0;0;0.0 +1404000;0;0;0.0 +1407600;0;30631.2;0.0 +1411200;0;22836.0;0.0 +1414800;0;11968.9;0.0 +1418400;0;8277.7;0.0 +1422000;0;6324.4;0.0 +1425600;0;5129.0;0.0 +1429200;0;6531.6;0.0 +1432800;0;5018.2;0.0 +1436400;0;4554.9;0.0 +1440000;0;4488.4;0.0 +1443600;0;4721.2;0.0 +1447200;0;8375.6;0.0 +1450800;0;13828.0;0.0 +1454400;0;0;0.0 +1458000;0;0;0.0 +1461600;0;0;0.0 +1465200;0;0;0.0 +1468800;0;0;0.0 +1472400;0;0;0.0 +1476000;0;0;0.0 +1479600;0;0;0.0 +1483200;0;0;0.0 +1486800;0;0;0.0 +1490400;0;0;0.0 +1494000;0;31160.7;0.0 +1497600;0;27686.3;0.0 +1501200;0;14851.5;0.0 +1504800;0;10145.6;0.0 +1508400;0;8207.2;0.0 +1512000;0;7232.1;0.0 +1515600;0;7113.7;0.0 +1519200;0;6364.8;0.0 +1522800;0;6049.0;0.0 +1526400;0;6129.6;0.0 +1530000;0;6680.0;0.0 +1533600;0;9932.8;0.0 +1537200;0;16155.3;0.0 +1540800;0;0;0.0 +1544400;0;0;0.0 +1548000;0;0;0.0 +1551600;0;0;0.0 +1555200;0;0;0.0 +1558800;0;0;0.0 +1562400;0;0;0.0 +1566000;0;0;0.0 +1569600;0;0;0.0 +1573200;0;0;0.0 +1576800;0;0;0.0 +1580400;0;37879.7;0.0 +1584000;0;30796.0;0.0 +1587600;0;16483.0;0.0 +1591200;0;12432.3;0.0 +1594800;0;9786.3;0.0 +1598400;0;8090.2;0.0 +1602000;0;7875.2;0.0 +1605600;0;6248.9;0.0 +1609200;0;6045.7;0.0 +1612800;0;6404.7;0.0 +1616400;0;7304.9;0.0 +1620000;0;12054.0;0.0 +1623600;0;20200.6;0.0 +1627200;0;0;0.0 +1630800;0;0;0.0 +1634400;0;0;0.0 +1638000;0;0;0.0 +1641600;0;0;0.0 +1645200;0;0;0.0 +1648800;0;0;0.0 +1652400;0;0;0.0 +1656000;0;0;0.0 +1659600;0;9.3;0.0 +1663200;0;144.4;0.0 +1666800;0;44129.4;0.0 +1670400;0;34137.7;0.0 +1674000;0;18581.1;0.0 +1677600;0;14168.1;0.0 +1681200;0;11098.1;0.0 +1684800;0;9301.6;0.0 +1688400;0;9838.4;0.0 +1692000;0;7324.1;0.0 +1695600;0;5723.1;0.0 +1699200;0;7617.9;0.0 +1702800;0;7982.5;0.0 +1706400;0;12072.0;0.0 +1710000;0;18620.6;0.0 +1713600;0;0;0.0 +1717200;0;0;0.0 +1720800;0;0;0.0 +1724400;0;0;0.0 +1728000;0;0;0.0 +1731600;0;0;0.0 +1735200;0;30.8;0.0 +1738800;0;135.1;0.0 +1742400;0;941.6;0.0 +1746000;0;1722.3;0.0 +1749600;0;2517.2;0.0 +1753200;0;4000.5;0.0 +1756800;0;4164.1;0.0 +1760400;0;2367.6;0.0 +1764000;0;1615.8;0.0 +1767600;0;1114.7;0.0 +1771200;0;931.6;0.0 +1774800;0;230.0;0.0 +1778400;0;447.4;0.0 +1782000;0;1102.1;0.0 +1785600;0;1494.7;0.0 +1789200;0;1951.1;0.0 +1792800;0;2251.6;0.0 +1796400;0;3257.7;0.0 +1800000;0;3949.2;0.0 +1803600;0;4138.5;0.0 +1807200;0;4268.0;0.0 +1810800;0;4551.8;0.0 +1814400;0;6296.9;0.0 +1818000;0;5082.3;0.0 +1821600;0;5295.4;0.0 +1825200;0;6641.5;0.0 +1828800;0;5124.9;0.0 +1832400;0;5039.1;0.0 +1836000;0;7317.5;0.0 +1839600;0;5252.2;0.0 +1843200;0;5641.3;0.0 +1846800;0;5593.2;0.0 +1850400;0;3618.7;0.0 +1854000;0;4531.9;0.0 +1857600;0;2344.2;0.0 +1861200;0;2489.1;0.0 +1864800;0;2625.6;0.0 +1868400;0;2642.2;0.0 +1872000;0;1065.3;0.0 +1875600;0;2687.1;0.0 +1879200;0;3951.3;0.0 +1882800;0;4927.4;0.0 +1886400;0;4445.8;0.0 +1890000;0;5296.8;0.0 +1893600;0;6267.6;0.0 +1897200;0;4953.5;0.0 +1900800;0;7505.6;0.0 +1904400;0;5171.0;0.0 +1908000;0;5118.8;0.0 +1911600;0;6357.7;0.0 +1915200;0;4810.5;0.0 +1918800;0;8432.0;0.0 +1922400;0;6795.9;0.0 +1926000;0;93075.2;0.0 +1929600;0;54212.5;0.0 +1933200;0;42238.9;0.0 +1936800;0;32794.5;0.0 +1940400;0;27331.7;0.0 +1944000;0;24563.6;0.0 +1947600;0;22869.2;0.0 +1951200;0;21504.4;0.0 +1954800;0;19667.5;0.0 +1958400;0;16211.7;0.0 +1962000;0;17241.6;0.0 +1965600;0;23900.8;0.0 +1969200;0;28528.6;0.0 +1972800;0;0;0.0 +1976400;0;71.2;0.0 +1980000;0;433.9;0.0 +1983600;0;1076.4;0.0 +1987200;0;3193.7;0.0 +1990800;0;4963.2;0.0 +1994400;0;6238.1;0.0 +1998000;0;7382.5;0.0 +2001600;0;8729.1;0.0 +2005200;0;9576.3;0.0 +2008800;0;8043.2;0.0 +2012400;0;107642.6;0.0 +2016000;0;59146.8;0.0 +2019600;0;41692.9;0.0 +2023200;0;27386.1;0.0 +2026800;0;21106.5;0.0 +2030400;0;17899.6;0.0 +2034000;0;16224.4;0.0 +2037600;0;11550.7;0.0 +2041200;0;8380.3;0.0 +2044800;0;10387.6;0.0 +2048400;0;8759.9;0.0 +2052000;0;17470.1;0.0 +2055600;0;20761.6;0.0 +2059200;0;0;0.0 +2062800;0;0;0.0 +2066400;0;57.1;0.0 +2070000;0;296.8;0.0 +2073600;0;405.4;0.0 +2077200;0;692.2;0.0 +2080800;0;1405.7;0.0 +2084400;0;2353.6;0.0 +2088000;0;3179.3;0.0 +2091600;0;4439.9;0.0 +2095200;0;4575.2;0.0 +2098800;0;62549.1;0.0 +2102400;0;45541.4;0.0 +2106000;0;26967.4;0.0 +2109600;0;21478.6;0.0 +2113200;0;16645.7;0.0 +2116800;0;13006.6;0.0 +2120400;0;12989.9;0.0 +2124000;0;8112.7;0.0 +2127600;0;8154.4;0.0 +2131200;0;8147.0;0.0 +2134800;0;9585.2;0.0 +2138400;0;14572.7;0.0 +2142000;0;19187.1;0.0 +2145600;0;0;0.0 +2149200;0;0;0.0 +2152800;0;0;0.0 +2156400;0;25.7;0.0 +2160000;0;247.0;0.0 +2163600;0;310.4;0.0 +2167200;0;1229.7;0.0 +2170800;0;3094.4;0.0 +2174400;0;3677.0;0.0 +2178000;0;4404.4;0.0 +2181600;0;6606.6;0.0 +2185200;0;64893.9;0.0 +2188800;0;44828.0;0.0 +2192400;0;27386.7;0.0 +2196000;0;20914.7;0.0 +2199600;0;16261.0;0.0 +2203200;0;13608.4;0.0 +2206800;0;15425.7;0.0 +2210400;0;12723.7;0.0 +2214000;0;11192.1;0.0 +2217600;0;9854.9;0.0 +2221200;0;10460.1;0.0 +2224800;0;16508.7;0.0 +2228400;0;19884.2;0.0 +2232000;0;0;0.0 +2235600;0;0;0.0 +2239200;0;0;0.0 +2242800;0;0;0.0 +2246400;0;0;0.0 +2250000;0;62.0;0.0 +2253600;0;228.2;0.0 +2257200;0;468.9;0.0 +2260800;0;770.9;0.0 +2264400;0;1682.6;0.0 +2268000;0;2690.4;0.0 +2271600;0;48547.4;0.0 +2275200;0;38399.0;0.0 +2278800;0;21172.7;0.0 +2282400;0;14636.6;0.0 +2286000;0;10040.7;0.0 +2289600;0;8281.0;0.0 +2293200;0;7916.5;0.0 +2296800;0;7789.4;0.0 +2300400;0;6971.9;0.0 +2304000;0;7307.9;0.0 +2307600;0;8080.5;0.0 +2311200;0;13334.4;0.0 +2314800;0;19806.1;0.0 +2318400;0;0;0.0 +2322000;0;0;0.0 +2325600;0;0;0.0 +2329200;0;0;0.0 +2332800;0;0;0.0 +2336400;0;66.5;0.0 +2340000;0;352.7;0.0 +2343600;0;1906.1;0.0 +2347200;0;2939.4;0.0 +2350800;0;3752.0;0.0 +2354400;0;5290.9;0.0 +2358000;0;6450.2;0.0 +2361600;0;6839.4;0.0 +2365200;0;5226.4;0.0 +2368800;0;3038.6;0.0 +2372400;0;2754.9;0.0 +2376000;0;2860.6;0.0 +2379600;0;3008.8;0.0 +2383200;0;2848.2;0.0 +2386800;0;3985.9;0.0 +2390400;0;3482.9;0.0 +2394000;0;5500.9;0.0 +2397600;0;6402.8;0.0 +2401200;0;7402.0;0.0 +2404800;0;6735.4;0.0 +2408400;0;7701.9;0.0 +2412000;0;9827.4;0.0 +2415600;0;8707.9;0.0 +2419200;0;7390.6;0.0 +2422800;0;10242.9;0.0 +2426400;0;10778.3;0.0 +2430000;0;8207.8;0.0 +2433600;0;8145.2;0.0 +2437200;0;8438.9;0.0 +2440800;0;12065.7;0.0 +2444400;0;8731.9;0.0 +2448000;0;12009.6;0.0 +2451600;0;7385.0;0.0 +2455200;0;10307.9;0.0 +2458800;0;6405.0;0.0 +2462400;0;5494.4;0.0 +2466000;0;4203.2;0.0 +2469600;0;5573.7;0.0 +2473200;0;4046.9;0.0 +2476800;0;5150.5;0.0 +2480400;0;7404.9;0.0 +2484000;0;7510.4;0.0 +2487600;0;7783.2;0.0 +2491200;0;7169.9;0.0 +2494800;0;11734.2;0.0 +2498400;0;8948.4;0.0 +2502000;0;12501.0;0.0 +2505600;0;8303.0;0.0 +2509200;0;11591.9;0.0 +2512800;0;10016.9;0.0 +2516400;0;7510.7;0.0 +2520000;0;11867.8;0.0 +2523600;0;10461.1;0.0 +2527200;0;7839.7;0.0 +2530800;0;118661.2;0.0 +2534400;0;74330.5;0.0 +2538000;0;51421.4;0.0 +2541600;0;42118.6;0.0 +2545200;0;30843.8;0.0 +2548800;0;27038.7;0.0 +2552400;0;23334.0;0.0 +2556000;0;18307.2;0.0 +2559600;0;14266.9;0.0 +2563200;0;11716.2;0.0 +2566800;0;13943.3;0.0 +2570400;0;20632.4;0.0 +2574000;0;25892.1;0.0 +2577600;0;0;0.0 +2581200;0;0;0.0 +2584800;0;275.6;0.0 +2588400;0;511.3;0.0 +2592000;0;1287.0;0.0 +2595600;0;2115.2;0.0 +2599200;0;3283.3;0.0 +2602800;0;4642.0;0.0 +2606400;0;5457.2;0.0 +2610000;0;6023.0;0.0 +2613600;0;7545.6;0.0 +2617200;0;83926.9;0.0 +2620800;0;51544.4;0.0 +2624400;0;36743.9;0.0 +2628000;0;26763.5;0.0 +2631600;0;19881.5;0.0 +2635200;0;17882.4;0.0 +2638800;0;19555.2;0.0 +2642400;0;12262.4;0.0 +2646000;0;12164.7;0.0 +2649600;0;11786.6;0.0 +2653200;0;13736.9;0.0 +2656800;0;21282.0;0.0 +2660400;0;24111.3;0.0 +2664000;0;0;0.0 +2667600;0;61.6;0.0 +2671200;0;311.2;0.0 +2674800;0;394.5;0.0 +2678400;0;507.2;0.0 +2682000;0;425.6;0.0 +2685600;0;349.9;0.0 +2689200;0;296.9;0.0 +2692800;0;179.2;0.0 +2696400;0;160.0;0.0 +2700000;0;157.4;0.0 +2703600;0;35477.2;0.0 +2707200;0;32073.5;0.0 +2710800;0;16326.7;0.0 +2714400;0;12855.8;0.0 +2718000;0;10189.7;0.0 +2721600;0;8728.8;0.0 +2725200;0;9090.9;0.0 +2728800;0;6105.0;0.0 +2732400;0;4923.0;0.0 +2736000;0;6012.5;0.0 +2739600;0;6638.9;0.0 +2743200;0;11494.9;0.0 +2746800;0;18379.5;0.0 +2750400;0;0;0.0 +2754000;0;0;0.0 +2757600;0;0;0.0 +2761200;0;0;0.0 +2764800;0;0;0.0 +2768400;0;0;0.0 +2772000;0;0;0.0 +2775600;0;0;0.0 +2779200;0;0;0.0 +2782800;0;0;0.0 +2786400;0;28.3;0.0 +2790000;0;39143.0;0.0 +2793600;0;31839.3;0.0 +2797200;0;17802.2;0.0 +2800800;0;12988.0;0.0 +2804400;0;10005.8;0.0 +2808000;0;7731.8;0.0 +2811600;0;7980.1;0.0 +2815200;0;6189.2;0.0 +2818800;0;5807.8;0.0 +2822400;0;6541.3;0.0 +2826000;0;6810.3;0.0 +2829600;0;12225.8;0.0 +2833200;0;19396.4;0.0 +2836800;0;0;0.0 +2840400;0;0;0.0 +2844000;0;0;0.0 +2847600;0;0;0.0 +2851200;0;0;0.0 +2854800;0;0;0.0 +2858400;0;0;0.0 +2862000;0;121.7;0.0 +2865600;0;402.4;0.0 +2869200;0;1985.5;0.0 +2872800;0;2728.9;0.0 +2876400;0;56132.4;0.0 +2880000;0;39603.7;0.0 +2883600;0;23467.9;0.0 +2887200;0;16715.6;0.0 +2890800;0;12037.4;0.0 +2894400;0;10369.4;0.0 +2898000;0;8380.4;0.0 +2901600;0;7453.7;0.0 +2905200;0;6756.2;0.0 +2908800;0;7102.5;0.0 +2912400;0;7779.3;0.0 +2916000;0;12445.2;0.0 +2919600;0;19002.3;0.0 +2923200;0;0;0.0 +2926800;0;0;0.0 +2930400;0;0;0.0 +2934000;0;0;0.0 +2937600;0;0;0.0 +2941200;0;0;0.0 +2944800;0;170.2;0.0 +2948400;0;1032.3;0.0 +2952000;0;2193.4;0.0 +2955600;0;3727.8;0.0 +2959200;0;4407.4;0.0 +2962800;0;4301.4;0.0 +2966400;0;5682.7;0.0 +2970000;0;3732.7;0.0 +2973600;0;3383.7;0.0 +2977200;0;1961.1;0.0 +2980800;0;1450.0;0.0 +2984400;0;1608.2;0.0 +2988000;0;1263.4;0.0 +2991600;0;1733.6;0.0 +2995200;0;1978.0;0.0 +2998800;0;2772.8;0.0 +3002400;0;3484.0;0.0 +3006000;0;5431.7;0.0 +3009600;0;5690.2;0.0 +3013200;0;7222.8;0.0 +3016800;0;7525.7;0.0 +3020400;0;6976.7;0.0 +3024000;0;8410.2;0.0 +3027600;0;8355.8;0.0 +3031200;0;11120.4;0.0 +3034800;0;8472.3;0.0 +3038400;0;11245.5;0.0 +3042000;0;12014.8;0.0 +3045600;0;9874.2;0.0 +3049200;0;9634.4;0.0 +3052800;0;9620.4;0.0 +3056400;0;9166.3;0.0 +3060000;0;5149.8;0.0 +3063600;0;4181.9;0.0 +3067200;0;4000.7;0.0 +3070800;0;2243.3;0.0 +3074400;0;1434.3;0.0 +3078000;0;3172.2;0.0 +3081600;0;4463.5;0.0 +3085200;0;5481.9;0.0 +3088800;0;8279.1;0.0 +3092400;0;10939.5;0.0 +3096000;0;9020.0;0.0 +3099600;0;12939.6;0.0 +3103200;0;10233.8;0.0 +3106800;0;16126.2;0.0 +3110400;0;11988.7;0.0 +3114000;0;11678.8;0.0 +3117600;0;16554.7;0.0 +3121200;0;12662.7;0.0 +3124800;0;11754.0;0.0 +3128400;0;16159.2;0.0 +3132000;0;14595.8;0.0 +3135600;0;156644.0;0.0 +3139200;0;79114.0;0.0 +3142800;0;67600.3;0.0 +3146400;0;56390.3;0.0 +3150000;0;50116.5;0.0 +3153600;0;42434.5;0.0 +3157200;0;38764.5;0.0 +3160800;0;33736.2;0.0 +3164400;0;25620.9;0.0 +3168000;0;22911.7;0.0 +3171600;0;24576.4;0.0 +3175200;0;34192.1;0.0 +3178800;0;40104.7;0.0 +3182400;0;582.1;0.0 +3186000;0;1107.0;0.0 +3189600;0;2470.9;0.0 +3193200;0;5618.6;0.0 +3196800;0;5845.7;0.0 +3200400;0;6504.3;0.0 +3204000;0;7134.5;0.0 +3207600;0;9560.7;0.0 +3211200;0;10141.4;0.0 +3214800;0;13836.2;0.0 +3218400;0;10248.2;0.0 +3222000;0;122788.5;0.0 +3225600;0;70422.6;0.0 +3229200;0;55655.7;0.0 +3232800;0;41782.2;0.0 +3236400;0;35071.3;0.0 +3240000;0;28308.8;0.0 +3243600;0;23833.8;0.0 +3247200;0;15575.3;0.0 +3250800;0;12013.2;0.0 +3254400;0;13438.6;0.0 +3258000;0;15375.0;0.0 +3261600;0;22909.2;0.0 +3265200;0;26052.9;0.0 +3268800;0;0;0.0 +3272400;0;201.3;0.0 +3276000;0;407.8;0.0 +3279600;0;629.1;0.0 +3283200;0;1402.0;0.0 +3286800;0;2524.2;0.0 +3290400;0;3786.3;0.0 +3294000;0;4239.8;0.0 +3297600;0;5244.5;0.0 +3301200;0;5999.2;0.0 +3304800;0;7809.0;0.0 +3308400;0;88005.9;0.0 +3312000;0;51846.1;0.0 +3315600;0;29904.6;0.0 +3319200;0;19697.7;0.0 +3322800;-5.6;16911.3;0.0 +3326400;-730.4;12818.3;0.0 +3330000;-1274.8;9913.4;0.0 +3333600;-789.2;6118.7;0.0 +3337200;-105.2;5333.8;0.0 +3340800;0;5098.6;0.0 +3344400;0;6181.0;0.0 +3348000;0;13786.4;0.0 +3351600;0;18461.8;0.0 +3355200;0;0;0.0 +3358800;0;0;0.0 +3362400;0;0;0.0 +3366000;0;286.3;0.0 +3369600;0;555.9;0.0 +3373200;0;1517.5;0.0 +3376800;0;2823.1;0.0 +3380400;0;3976.1;0.0 +3384000;0;4366.9;0.0 +3387600;0;5063.4;0.0 +3391200;0;5616.2;0.0 +3394800;0;64369.7;0.0 +3398400;0;44502.1;0.0 +3402000;0;25107.7;0.0 +3405600;0;18661.6;0.0 +3409200;0;15304.4;0.0 +3412800;0;12284.1;0.0 +3416400;0;12052.4;0.0 +3420000;0;6817.3;0.0 +3423600;0;7303.5;0.0 +3427200;0;6518.0;0.0 +3430800;0;6917.3;0.0 +3434400;0;14701.8;0.0 +3438000;0;19527.9;0.0 +3441600;0;0;0.0 +3445200;0;0;0.0 +3448800;0;0;0.0 +3452400;0;0;0.0 +3456000;0;240.0;0.0 +3459600;0;249.0;0.0 +3463200;0;1080.0;0.0 +3466800;0;2595.5;0.0 +3470400;0;3647.1;0.0 +3474000;0;3909.3;0.0 +3477600;0;4573.3;0.0 +3481200;0;62870.9;0.0 +3484800;0;43977.9;0.0 +3488400;0;21544.5;0.0 +3492000;0;13026.6;0.0 +3495600;0;9697.4;0.0 +3499200;-5.1;7895.5;0.0 +3502800;0;4941.9;0.0 +3506400;0;4316.4;0.0 +3510000;0;3572.8;0.0 +3513600;0;4854.4;0.0 +3517200;0;7078.2;0.0 +3520800;0;12977.2;0.0 +3524400;0;17644.4;0.0 +3528000;0;0;0.0 +3531600;0;0;0.0 +3535200;0;0;0.0 +3538800;0;0;0.0 +3542400;0;117.9;0.0 +3546000;0;320.0;0.0 +3549600;0;1396.5;0.0 +3553200;0;2323.4;0.0 +3556800;0;3624.0;0.0 +3560400;0;3824.3;0.0 +3564000;0;5650.5;0.0 +3567600;0;6567.4;0.0 +3571200;0;7959.8;0.0 +3574800;0;4767.0;0.0 +3578400;0;4004.1;0.0 +3582000;0;1354.3;0.0 +3585600;0;746.5;0.0 +3589200;0;314.2;0.0 +3592800;0;412.1;0.0 +3596400;0;672.8;0.0 +3600000;0;536.3;0.0 +3603600;0;940.5;0.0 +3607200;0;1427.5;0.0 +3610800;0;2339.1;0.0 +3614400;0;2782.1;0.0 +3618000;0;3206.7;0.0 +3621600;0;3737.9;0.0 +3625200;0;4036.7;0.0 +3628800;0;4201.3;0.0 +3632400;0;4353.5;0.0 +3636000;0;6360.3;0.0 +3639600;0;4772.0;0.0 +3643200;0;4975.1;0.0 +3646800;0;5369.6;0.0 +3650400;0;3922.9;0.0 +3654000;0;5519.1;0.0 +3657600;0;3714.0;0.0 +3661200;0;4196.4;0.0 +3664800;0;3747.5;0.0 +3668400;0;4626.9;0.0 +3672000;0;4696.2;0.0 +3675600;0;3973.9;0.0 +3679200;0;4650.8;0.0 +3682800;0;4606.1;0.0 +3686400;0;4985.5;0.0 +3690000;0;6555.9;0.0 +3693600;0;9818.1;0.0 +3697200;0;8349.7;0.0 +3700800;0;11615.0;0.0 +3704400;0;8759.4;0.0 +3708000;0;11765.2;0.0 +3711600;0;8281.1;0.0 +3715200;0;12266.4;0.0 +3718800;0;8250.5;0.0 +3722400;0;12358.3;0.0 +3726000;0;9027.0;0.0 +3729600;0;14100.2;0.0 +3733200;0;9623.2;0.0 +3736800;0;16080.5;0.0 +3740400;0;153330.5;0.0 +3744000;0;76197.1;0.0 +3747600;0;62214.7;0.0 +3751200;0;50622.8;0.0 +3754800;0;42510.1;0.0 +3758400;0;33528.9;0.0 +3762000;0;30683.3;0.0 +3765600;0;24090.3;0.0 +3769200;0;18945.2;0.0 +3772800;0;19015.0;0.0 +3776400;0;20871.1;0.0 +3780000;0;26935.5;0.0 +3783600;0;30629.8;0.0 +3787200;0;0;0.0 +3790800;0;88.1;0.0 +3794400;0;399.6;0.0 +3798000;0;785.7;0.0 +3801600;0;1783.9;0.0 +3805200;0;2978.7;0.0 +3808800;0;4112.0;0.0 +3812400;0;5401.9;0.0 +3816000;0;6704.5;0.0 +3819600;0;7376.0;0.0 +3823200;0;6877.0;0.0 +3826800;0;96564.0;0.0 +3830400;0;55879.7;0.0 +3834000;0;38130.6;0.0 +3837600;0;23185.9;0.0 +3841200;0;16529.5;0.0 +3844800;0;13172.8;0.0 +3848400;0;10520.2;0.0 +3852000;-76.6;4789.7;0.0 +3855600;0;3477.6;0.0 +3859200;0;3030.3;0.0 +3862800;0;3754.0;0.0 +3866400;0;10385.2;0.0 +3870000;0;17050.9;0.0 +3873600;0;0;0.0 +3877200;0;0;0.0 +3880800;0;0;0.0 +3884400;0;0;0.0 +3888000;0;0;0.0 +3891600;0;0;0.0 +3895200;0;0;0.0 +3898800;0;0;0.0 +3902400;0;0;0.0 +3906000;0;0;0.0 +3909600;0;0;0.0 +3913200;0;35084.0;0.0 +3916800;0;27809.7;0.0 +3920400;0;13767.6;0.0 +3924000;0;9428.8;0.0 +3927600;0;7420.7;0.0 +3931200;0;8800.1;0.0 +3934800;0;8609.4;0.0 +3938400;0;6397.9;0.0 +3942000;0;6488.8;0.0 +3945600;0;6445.1;0.0 +3949200;0;6620.1;0.0 +3952800;0;12168.6;0.0 +3956400;0;19909.2;0.0 +3960000;0;0;0.0 +3963600;0;0;0.0 +3967200;0;0;0.0 +3970800;0;0;0.0 +3974400;0;0;0.0 +3978000;0;0;0.0 +3981600;0;0;0.0 +3985200;0;0;0.0 +3988800;0;50.3;0.0 +3992400;0;339.2;0.0 +3996000;0;1294.8;0.0 +3999600;0;54960.6;0.0 +4003200;0;37314.2;0.0 +4006800;0;20654.1;0.0 +4010400;0;12541.8;0.0 +4014000;0;9418.4;0.0 +4017600;0;8359.3;0.0 +4021200;0;7884.2;0.0 +4024800;0;6021.2;0.0 +4028400;0;6454.6;0.0 +4032000;0;7633.9;0.0 +4035600;0;8225.0;0.0 +4039200;0;14281.8;0.0 +4042800;0;19569.2;0.0 +4046400;0;0;0.0 +4050000;0;0;0.0 +4053600;0;0;0.0 +4057200;0;0;0.0 +4060800;0;0;0.0 +4064400;0;0;0.0 +4068000;0;0;0.0 +4071600;0;0;0.0 +4075200;0;0;0.0 +4078800;0;73.1;0.0 +4082400;0;150.7;0.0 +4086000;0;40273.5;0.0 +4089600;0;32030.8;0.0 +4093200;0;15705.0;0.0 +4096800;0;11080.1;0.0 +4100400;0;7282.0;0.0 +4104000;-145.8;6400.5;0.0 +4107600;0;6897.3;0.0 +4111200;0;5033.5;0.0 +4114800;0;3687.7;0.0 +4118400;0;4534.5;0.0 +4122000;0;4412.9;0.0 +4125600;0;9931.2;0.0 +4129200;0;16977.3;0.0 +4132800;0;0;0.0 +4136400;0;0;0.0 +4140000;0;0;0.0 +4143600;0;0;0.0 +4147200;0;0;0.0 +4150800;0;0;0.0 +4154400;0;0;0.0 +4158000;0;0;0.0 +4161600;0;0;0.0 +4165200;0;2.1;0.0 +4168800;0;149.0;0.0 +4172400;0;323.1;0.0 +4176000;0;772.6;0.0 +4179600;0;382.8;0.0 +4183200;0;191.0;0.0 +4186800;0;81.7;0.0 +4190400;0;0;0.0 +4194000;0;0;0.0 +4197600;0;0;0.0 +4201200;0;0;0.0 +4204800;0;0;0.0 +4208400;0;182.1;0.0 +4212000;0;989.1;0.0 +4215600;0;1370.3;0.0 +4219200;0;1661.4;0.0 +4222800;0;1959.9;0.0 +4226400;0;1769.0;0.0 +4230000;0;2104.4;0.0 +4233600;0;2150.5;0.0 +4237200;0;2454.3;0.0 +4240800;0;2803.2;0.0 +4244400;0;3063.3;0.0 +4248000;0;4895.1;0.0 +4251600;0;4109.3;0.0 +4255200;0;4481.6;0.0 +4258800;0;5726.1;0.0 +4262400;0;4046.0;0.0 +4266000;0;1577.6;0.0 +4269600;0;620.5;0.0 +4273200;0;228.0;0.0 +4276800;0;281.1;0.0 +4280400;0;391.2;0.0 +4284000;0;436.8;0.0 +4287600;0;257.4;0.0 +4291200;0;672.6;0.0 +4294800;0;1167.3;0.0 +4298400;0;1878.1;0.0 +4302000;0;2029.4;0.0 +4305600;0;2135.6;0.0 +4309200;0;2512.3;0.0 +4312800;0;2474.0;0.0 +4316400;0;2959.3;0.0 +4320000;0;2560.2;0.0 +4323600;0;2304.8;0.0 +4327200;0;3229.3;0.0 +4330800;0;4259.5;0.0 +4334400;0;4565.4;0.0 +4338000;0;5266.1;0.0 +4341600;0;4102.4;0.0 +4345200;0;73015.8;0.0 +4348800;0;53468.7;0.0 +4352400;0;33820.8;0.0 +4356000;0;25279.8;0.0 +4359600;0;19202.1;0.0 +4363200;0;15164.4;0.0 +4366800;0;14979.8;0.0 +4370400;0;9489.7;0.0 +4374000;0;6622.2;0.0 +4377600;0;6065.4;0.0 +4381200;0;7384.5;0.0 +4384800;0;15568.9;0.0 +4388400;0;25550.6;0.0 +4392000;0;0;0.0 +4395600;0;0;0.0 +4399200;0;0;0.0 +4402800;0;0;0.0 +4406400;0;338.2;0.0 +4410000;0;2029.0;0.0 +4413600;0;3715.7;0.0 +4417200;0;5101.6;0.0 +4420800;0;5833.6;0.0 +4424400;0;6028.4;0.0 +4428000;0;8747.7;0.0 +4431600;0;100675.7;0.0 +4435200;0;54987.1;0.0 +4438800;0;37385.0;0.0 +4442400;0;26401.5;0.0 +4446000;0;19777.1;0.0 +4449600;0;16741.9;0.0 +4453200;0;17689.9;0.0 +4456800;0;13829.8;0.0 +4460400;0;14159.4;0.0 +4464000;0;15422.6;0.0 +4467600;0;13322.7;0.0 +4471200;0;22253.9;0.0 +4474800;0;25504.3;0.0 +4478400;0;0;0.0 +4482000;0;0;0.0 +4485600;0;257.4;0.0 +4489200;0;758.3;0.0 +4492800;0;1442.4;0.0 +4496400;0;2434.7;0.0 +4500000;0;4623.2;0.0 +4503600;0;3348.0;0.0 +4507200;0;4495.9;0.0 +4510800;0;4762.4;0.0 +4514400;0;5518.8;0.0 +4518000;0;78378.8;0.0 +4521600;0;48307.4;0.0 +4525200;0;28491.6;0.0 +4528800;0;17591.2;0.0 +4532400;0;12955.6;0.0 +4536000;0;10766.5;0.0 +4539600;0;8582.0;0.0 +4543200;0;3554.6;0.0 +4546800;0;2985.1;0.0 +4550400;0;2621.6;0.0 +4554000;0;2414.9;0.0 +4557600;0;6055.9;0.0 +4561200;0;11445.8;0.0 +4564800;0;0;0.0 +4568400;0;0;0.0 +4572000;0;0;0.0 +4575600;0;0;0.0 +4579200;0;0;0.0 +4582800;0;0;0.0 +4586400;0;0;0.0 +4590000;0;0;0.0 +4593600;0;0;0.0 +4597200;0;0;0.0 +4600800;0;0;0.0 +4604400;0;32604.6;0.0 +4608000;0;28182.3;0.0 +4611600;0;14483.5;0.0 +4615200;0;11039.1;0.0 +4618800;0;8056.6;0.0 +4622400;0;6058.3;0.0 +4626000;0;5904.7;0.0 +4629600;0;4645.8;0.0 +4633200;0;4736.9;0.0 +4636800;0;4742.2;0.0 +4640400;0;5682.7;0.0 +4644000;0;11837.4;0.0 +4647600;0;18677.5;0.0 +4651200;0;0;0.0 +4654800;0;0;0.0 +4658400;0;0;0.0 +4662000;0;0;0.0 +4665600;0;0;0.0 +4669200;0;0;0.0 +4672800;0;69.3;0.0 +4676400;0;507.3;0.0 +4680000;0;1600.0;0.0 +4683600;0;2066.3;0.0 +4687200;0;2913.7;0.0 +4690800;0;52477.3;0.0 +4694400;0;39929.1;0.0 +4698000;0;21802.9;0.0 +4701600;0;14033.3;0.0 +4705200;0;12653.0;0.0 +4708800;0;11448.8;0.0 +4712400;0;10035.9;0.0 +4716000;0;9197.1;0.0 +4719600;0;4864.3;0.0 +4723200;0;4881.3;0.0 +4726800;0;5582.3;0.0 +4730400;0;12577.2;0.0 +4734000;0;19639.5;0.0 +4737600;0;0;0.0 +4741200;0;0;0.0 +4744800;0;0;0.0 +4748400;0;0;0.0 +4752000;0;0;0.0 +4755600;0;269.4;0.0 +4759200;0;758.0;0.0 +4762800;0;1693.0;0.0 +4766400;0;3426.3;0.0 +4770000;0;4070.5;0.0 +4773600;0;5145.6;0.0 +4777200;0;5157.0;0.0 +4780800;0;5243.3;0.0 +4784400;0;4159.5;0.0 +4788000;0;2271.4;0.0 +4791600;0;1908.9;0.0 +4795200;0;1984.6;0.0 +4798800;0;1807.4;0.0 +4802400;0;1972.9;0.0 +4806000;0;2436.0;0.0 +4809600;0;2492.8;0.0 +4813200;0;2342.2;0.0 +4816800;0;3992.6;0.0 +4820400;0;4881.5;0.0 +4824000;0;6395.3;0.0 +4827600;0;8338.0;0.0 +4831200;0;6701.2;0.0 +4834800;0;7951.6;0.0 +4838400;0;9369.1;0.0 +4842000;0;7949.4;0.0 +4845600;0;6846.0;0.0 +4849200;0;8276.3;0.0 +4852800;0;7469.5;0.0 +4856400;0;11102.9;0.0 +4860000;0;9690.2;0.0 +4863600;0;7132.9;0.0 +4867200;0;9933.9;0.0 +4870800;0;5941.4;0.0 +4874400;0;4314.6;0.0 +4878000;0;4504.8;0.0 +4881600;0;3529.7;0.0 +4885200;0;2473.3;0.0 +4888800;0;2262.4;0.0 +4892400;0;2257.1;0.0 +4896000;0;2016.7;0.0 +4899600;0;2797.7;0.0 +4903200;0;4467.0;0.0 +4906800;0;5211.2;0.0 +4910400;0;6542.2;0.0 +4914000;0;8354.1;0.0 +4917600;0;5791.0;0.0 +4921200;0;5796.6;0.0 +4924800;0;7775.7;0.0 +4928400;0;5173.2;0.0 +4932000;0;4319.2;0.0 +4935600;0;5799.2;0.0 +4939200;0;4692.0;0.0 +4942800;0;7651.8;0.0 +4946400;0;5632.4;0.0 +4950000;0;85423.7;0.0 +4953600;0;59342.4;0.0 +4957200;0;39494.1;0.0 +4960800;0;31823.5;0.0 +4964400;0;24477.0;0.0 +4968000;0;20041.0;0.0 +4971600;0;18728.8;0.0 +4975200;0;13989.7;0.0 +4978800;0;11292.8;0.0 +4982400;0;10465.8;0.0 +4986000;0;10662.3;0.0 +4989600;0;15992.7;0.0 +4993200;0;24332.9;0.0 +4996800;0;0;0.0 +5000400;0;0;0.0 +5004000;0;0;0.0 +5007600;0;0;0.0 +5011200;0;0;0.0 +5014800;0;0;0.0 +5018400;0;315.5;0.0 +5022000;0;522.1;0.0 +5025600;0;3071.8;0.0 +5029200;0;4138.8;0.0 +5032800;0;4420.4;0.0 +5036400;0;66547.4;0.0 +5040000;0;47180.8;0.0 +5043600;0;20744.6;0.0 +5047200;0;12788.6;0.0 +5050800;-51.2;10240.1;0.0 +5054400;-1012.3;8858.0;0.0 +5058000;-1355.6;7716.9;0.0 +5061600;-1362.1;3893.7;0.0 +5065200;-946.8;3558.8;0.0 +5068800;-1027.4;3474.0;0.0 +5072400;-2041.9;3766.7;0.0 +5076000;0;7479.2;0.0 +5079600;0;14997.0;0.0 +5083200;0;0;0.0 +5086800;0;0;0.0 +5090400;0;0;0.0 +5094000;0;0;0.0 +5097600;0;0;0.0 +5101200;0;0;0.0 +5104800;0;167.9;0.0 +5108400;0;310.0;0.0 +5112000;0;1017.2;0.0 +5115600;0;1640.7;0.0 +5119200;0;2119.3;0.0 +5122800;0;63784.5;0.0 +5126400;0;43258.6;0.0 +5130000;0;17947.9;0.0 +5133600;0;12391.0;0.0 +5137200;-360.0;10731.3;0.0 +5140800;-1100.3;9788.1;0.0 +5144400;-1334.3;9457.2;0.0 +5148000;-1451.2;4517.2;0.0 +5151600;-850.5;4633.0;0.0 +5155200;-515.6;4068.2;0.0 +5158800;-1062.9;3970.9;0.0 +5162400;0;8668.0;0.0 +5166000;0;14694.1;0.0 +5169600;0;0;0.0 +5173200;0;0;0.0 +5176800;0;0;0.0 +5180400;0;0;0.0 +5184000;0;0;0.0 +5187600;0;0;0.0 +5191200;0;0;0.0 +5194800;0;110.7;0.0 +5198400;0;225.7;0.0 +5202000;0;347.2;0.0 +5205600;0;627.4;0.0 +5209200;0;52743.4;0.0 +5212800;0;33570.0;0.0 +5216400;0;13798.5;0.0 +5220000;0;8582.3;0.0 +5223600;0;6428.2;0.0 +5227200;-302.4;6095.6;0.0 +5230800;-722.1;6023.6;0.0 +5234400;-800.5;3208.4;0.0 +5238000;-325.0;3154.4;0.0 +5241600;0;3021.5;0.0 +5245200;0;3109.8;0.0 +5248800;0;6282.3;0.0 +5252400;0;12217.5;0.0 +5256000;0;0;0.0 +5259600;0;0;0.0 +5263200;0;0;0.0 +5266800;0;0;0.0 +5270400;0;0;0.0 +5274000;0;0;0.0 +5277600;0;0;0.0 +5281200;0;0;0.0 +5284800;0;0;0.0 +5288400;0;50.2;0.0 +5292000;0;195.3;0.0 +5295600;0;40484.8;0.0 +5299200;0;30466.0;0.0 +5302800;0;13284.8;0.0 +5306400;0;7913.6;0.0 +5310000;0;6085.6;0.0 +5313600;-20.0;6552.8;0.0 +5317200;-208.6;6438.4;0.0 +5320800;-213.5;3886.1;0.0 +5324400;0;4080.8;0.0 +5328000;0;3992.3;0.0 +5331600;0;4238.1;0.0 +5335200;0;11470.6;0.0 +5338800;0;19110.8;0.0 +5342400;0;0;0.0 +5346000;0;0;0.0 +5349600;0;0;0.0 +5353200;0;0;0.0 +5356800;0;41.9;0.0 +5360400;0;305.8;0.0 +5364000;0;623.7;0.0 +5367600;0;1322.0;0.0 +5371200;0;2358.0;0.0 +5374800;0;3599.8;0.0 +5378400;0;3836.2;0.0 +5382000;0;5193.0;0.0 +5385600;0;5342.8;0.0 +5389200;0;2183.0;0.0 +5392800;0;2043.7;0.0 +5396400;0;1619.1;0.0 +5400000;0;909.8;0.0 +5403600;0;611.0;0.0 +5407200;0;755.2;0.0 +5410800;0;1008.8;0.0 +5414400;0;1390.7;0.0 +5418000;0;1841.6;0.0 +5421600;0;2232.4;0.0 +5425200;0;2635.5;0.0 +5428800;0;4192.3;0.0 +5432400;0;5409.6;0.0 +5436000;0;4417.5;0.0 +5439600;0;5565.3;0.0 +5443200;0;7229.1;0.0 +5446800;0;6997.9;0.0 +5450400;0;7329.5;0.0 +5454000;0;6898.1;0.0 +5457600;0;10058.2;0.0 +5461200;0;7870.0;0.0 +5464800;0;7058.7;0.0 +5468400;0;8152.1;0.0 +5472000;0;8027.3;0.0 +5475600;0;4799.3;0.0 +5479200;0;3495.9;0.0 +5482800;0;2828.9;0.0 +5486400;0;2250.6;0.0 +5490000;0;990.3;0.0 +5493600;0;1096.6;0.0 +5497200;0;1142.7;0.0 +5500800;0;1558.1;0.0 +5504400;0;2007.5;0.0 +5508000;0;2792.4;0.0 +5511600;0;3408.7;0.0 +5515200;0;4576.1;0.0 +5518800;0;4798.1;0.0 +5522400;0;5491.3;0.0 +5526000;0;5875.4;0.0 +5529600;0;8244.7;0.0 +5533200;0;6198.3;0.0 +5536800;0;6941.5;0.0 +5540400;0;7456.6;0.0 +5544000;0;10428.2;0.0 +5547600;0;8013.9;0.0 +5551200;0;10572.1;0.0 +5554800;0;99715.6;0.0 +5558400;0;65053.1;0.0 +5562000;0;42356.4;0.0 +5565600;0;29416.5;0.0 +5569200;0;25810.5;0.0 +5572800;0;22337.2;0.0 +5576400;-158.2;18813.4;0.0 +5580000;-330.1;11303.5;0.0 +5583600;0;10404.5;0.0 +5587200;0;9862.1;0.0 +5590800;-417.5;9160.6;0.0 +5594400;0;14919.1;0.0 +5598000;0;20043.6;0.0 +5601600;0;0;0.0 +5605200;0;0;0.0 +5608800;0;157.5;0.0 +5612400;0;438.6;0.0 +5616000;0;811.8;0.0 +5619600;0;1282.2;0.0 +5623200;0;1787.0;0.0 +5626800;0;2473.1;0.0 +5630400;0;3316.9;0.0 +5634000;0;4591.7;0.0 +5637600;0;5590.3;0.0 +5641200;0;77188.7;0.0 +5644800;0;52481.7;0.0 +5648400;0;22524.6;0.0 +5652000;0;15371.1;0.0 +5655600;0;12494.8;0.0 +5659200;-681.3;9471.1;0.0 +5662800;-990.6;8393.8;0.0 +5666400;-944.9;4633.6;0.0 +5670000;-613.5;3903.4;0.0 +5673600;-1014.1;3980.0;0.0 +5677200;-2675.4;4070.0;0.0 +5680800;-92.3;8246.5;0.0 +5684400;0;13138.6;0.0 +5688000;0;0;0.0 +5691600;0;0;0.0 +5695200;0;0;0.0 +5698800;0;0;0.0 +5702400;0;258.5;0.0 +5706000;0;317.3;0.0 +5709600;0;574.6;0.0 +5713200;0;1031.0;0.0 +5716800;0;2064.7;0.0 +5720400;0;1973.0;0.0 +5724000;0;2187.4;0.0 +5727600;0;62003.4;0.0 +5731200;0;42698.1;0.0 +5734800;0;14344.0;0.0 +5738400;0;8672.3;0.0 +5742000;-63.5;5963.9;0.0 +5745600;-1066.5;4752.5;0.0 +5749200;-1139.0;3224.1;0.0 +5752800;-1251.0;1999.9;0.0 +5756400;-794.9;1696.6;0.0 +5760000;-1778.0;1949.0;0.0 +5763600;-2955.2;2188.2;0.0 +5767200;-157.7;3926.2;0.0 +5770800;0;9106.9;0.0 +5774400;0;0;0.0 +5778000;0;0;0.0 +5781600;0;0;0.0 +5785200;0;0;0.0 +5788800;0;0;0.0 +5792400;0;0;0.0 +5796000;0;0;0.0 +5799600;0;0;0.0 +5803200;0;0;0.0 +5806800;0;0;0.0 +5810400;0;0;0.0 +5814000;0;28450.2;0.0 +5817600;0;20562.2;0.0 +5821200;0;10177.5;0.0 +5824800;0;7627.2;0.0 +5828400;0;4523.4;0.0 +5832000;0;2496.6;0.0 +5835600;0;3168.9;0.0 +5839200;0;2253.8;0.0 +5842800;0;1856.5;0.0 +5846400;0;1904.5;0.0 +5850000;0;1423.9;0.0 +5853600;0;4521.8;0.0 +5857200;0;9359.7;0.0 +5860800;0;0;0.0 +5864400;0;0;0.0 +5868000;0;0;0.0 +5871600;0;0;0.0 +5875200;0;0;0.0 +5878800;0;0;0.0 +5882400;0;0;0.0 +5886000;0;0;0.0 +5889600;0;0;0.0 +5893200;0;0;0.0 +5896800;0;0;0.0 +5900400;0;27198.5;0.0 +5904000;0;21153.2;0.0 +5907600;0;11432.2;0.0 +5911200;0;8665.0;0.0 +5914800;0;5011.5;0.0 +5918400;0;3384.7;0.0 +5922000;0;2622.6;0.0 +5925600;0;976.3;0.0 +5929200;0;759.9;0.0 +5932800;0;808.6;0.0 +5936400;0;1275.8;0.0 +5940000;0;4303.4;0.0 +5943600;0;9189.5;0.0 +5947200;0;0;0.0 +5950800;0;0;0.0 +5954400;0;0;0.0 +5958000;0;0;0.0 +5961600;0;0;0.0 +5965200;0;0;0.0 +5968800;0;0;0.0 +5972400;0;0;0.0 +5976000;0;0;0.0 +5979600;0;0;0.0 +5983200;0;0;0.0 +5986800;0;0;0.0 +5990400;0;0;0.0 +5994000;0;0;0.0 +5997600;0;0;0.0 +6001200;0;0;0.0 +6004800;0;0;0.0 +6008400;0;0;0.0 +6012000;0;0;0.0 +6015600;0;0;0.0 +6019200;0;0;0.0 +6022800;0;0;0.0 +6026400;0;0;0.0 +6030000;0;0;0.0 +6033600;0;0;0.0 +6037200;0;0;0.0 +6040800;0;0;0.0 +6044400;0;0;0.0 +6048000;0;0;0.0 +6051600;0;0;0.0 +6055200;0;0;0.0 +6058800;0;0;0.0 +6062400;0;0;0.0 +6066000;0;0;0.0 +6069600;0;0;0.0 +6073200;0;0;0.0 +6076800;0;0;0.0 +6080400;0;0;0.0 +6084000;0;0;0.0 +6087600;0;0;0.0 +6091200;0;0;0.0 +6094800;0;0;0.0 +6098400;0;0;0.0 +6102000;0;0;0.0 +6105600;0;0;0.0 +6109200;0;0;0.0 +6112800;0;0;0.0 +6116400;0;0;0.0 +6120000;0;0;0.0 +6123600;0;0;0.0 +6127200;0;0;0.0 +6130800;0;0;0.0 +6134400;0;0;0.0 +6138000;0;0;0.0 +6141600;0;0;0.0 +6145200;0;0;0.0 +6148800;0;0;0.0 +6152400;0;0;0.0 +6156000;0;34360.8;0.0 +6159600;0;24374.4;0.0 +6163200;0;14063.6;0.0 +6166800;0;9548.5;0.0 +6170400;0;6513.9;0.0 +6174000;0;3730.3;0.0 +6177600;0;4145.3;0.0 +6181200;0;976.4;0.0 +6184800;0;323.4;0.0 +6188400;0;131.1;0.0 +6192000;0;109.3;0.0 +6195600;0;2236.4;0.0 +6199200;0;7241.0;0.0 +6202800;0;0;0.0 +6206400;0;0;0.0 +6210000;0;0;0.0 +6213600;0;0;0.0 +6217200;0;0;0.0 +6220800;0;0;0.0 +6224400;0;0;0.0 +6228000;0;0;0.0 +6231600;0;0;0.0 +6235200;0;0;0.0 +6238800;0;0;0.0 +6242400;0;15542.9;0.0 +6246000;0;14058.8;0.0 +6249600;0;3741.4;0.0 +6253200;0;544.0;0.0 +6256800;0;0;0.0 +6260400;-1153.3;0;0.0 +6264000;-1840.3;0;0.0 +6267600;-2305.6;0;0.0 +6271200;-2347.7;0;0.0 +6274800;-1937.5;0;0.0 +6278400;-781.9;0;0.0 +6282000;-76.2;0;0.0 +6285600;0;0;0.0 +6289200;0;0;0.0 +6292800;0;0;0.0 +6296400;0;0;0.0 +6300000;0;0;0.0 +6303600;0;0;0.0 +6307200;0;0;0.0 +6310800;0;0;0.0 +6314400;0;0;0.0 +6318000;0;0;0.0 +6321600;0;0;0.0 +6325200;0;0;0.0 +6328800;0;5278.0;0.0 +6332400;0;4113.9;0.0 +6336000;0;395.5;0.0 +6339600;0;0;0.0 +6343200;-576.1;0;0.0 +6346800;-534.9;0;0.0 +6350400;-1002.1;0;0.0 +6354000;-1916.2;0;0.0 +6357600;-4304.4;0;0.0 +6361200;-4192.4;0;0.0 +6364800;-2508.8;0;0.0 +6368400;-1484.7;0;0.0 +6372000;0;0;0.0 +6375600;0;0;0.0 +6379200;0;0;0.0 +6382800;0;0;0.0 +6386400;0;0;0.0 +6390000;0;0;0.0 +6393600;0;0;0.0 +6397200;0;0;0.0 +6400800;0;0;0.0 +6404400;0;0;0.0 +6408000;0;0;0.0 +6411600;0;0;0.0 +6415200;0;1713.1;0.0 +6418800;0;1639.4;0.0 +6422400;0;0;0.0 +6426000;0;0;0.0 +6429600;0;0;0.0 +6433200;0;0;0.0 +6436800;0;0;0.0 +6440400;0;0;0.0 +6444000;0;0;0.0 +6447600;0;0;0.0 +6451200;0;0;0.0 +6454800;0;0;0.0 +6458400;0;305.4;0.0 +6462000;0;0;0.0 +6465600;0;0;0.0 +6469200;0;0;0.0 +6472800;0;0;0.0 +6476400;0;0;0.0 +6480000;0;0;0.0 +6483600;0;0;0.0 +6487200;0;0;0.0 +6490800;0;0;0.0 +6494400;0;0;0.0 +6498000;0;0;0.0 +6501600;0;9490.5;0.0 +6505200;0;7374.1;0.0 +6508800;0;2951.8;0.0 +6512400;0;1800.5;0.0 +6516000;0;973.5;0.0 +6519600;0;0;0.0 +6523200;0;0;0.0 +6526800;0;0;0.0 +6530400;0;0;0.0 +6534000;0;47.3;0.0 +6537600;0;146.3;0.0 +6541200;0;1632.0;0.0 +6544800;0;4078.3;0.0 +6548400;0;0;0.0 +6552000;0;0;0.0 +6555600;0;0;0.0 +6559200;0;0;0.0 +6562800;0;0;0.0 +6566400;0;0;0.0 +6570000;0;0;0.0 +6573600;0;0;0.0 +6577200;0;0;0.0 +6580800;0;0;0.0 +6584400;0;0;0.0 +6588000;0;0;0.0 +6591600;0;0;0.0 +6595200;0;0;0.0 +6598800;0;0;0.0 +6602400;0;0;0.0 +6606000;0;0;0.0 +6609600;0;0;0.0 +6613200;0;0;0.0 +6616800;0;0;0.0 +6620400;0;0;0.0 +6624000;0;0;0.0 +6627600;0;0;0.0 +6631200;0;0;0.0 +6634800;0;0;0.0 +6638400;0;28.6;0.0 +6642000;0;105.4;0.0 +6645600;0;258.7;0.0 +6649200;0;658.1;0.0 +6652800;0;629.4;0.0 +6656400;0;1039.2;0.0 +6660000;0;601.8;0.0 +6663600;0;950.6;0.0 +6667200;0;1482.1;0.0 +6670800;0;1481.5;0.0 +6674400;0;1696.0;0.0 +6678000;0;1666.2;0.0 +6681600;0;1673.8;0.0 +6685200;0;940.3;0.0 +6688800;0;650.3;0.0 +6692400;0;529.4;0.0 +6696000;0;153.2;0.0 +6699600;0;25.0;0.0 +6703200;0;0;0.0 +6706800;0;0;0.0 +6710400;0;0;0.0 +6714000;0;700.2;0.0 +6717600;0;944.2;0.0 +6721200;0;2180.7;0.0 +6724800;0;3011.0;0.0 +6728400;0;3460.1;0.0 +6732000;0;4143.9;0.0 +6735600;0;3943.3;0.0 +6739200;0;4835.3;0.0 +6742800;0;5128.9;0.0 +6746400;0;4220.0;0.0 +6750000;0;5018.6;0.0 +6753600;0;7076.4;0.0 +6757200;0;5525.5;0.0 +6760800;0;79897.7;0.0 +6764400;0;54713.8;0.0 +6768000;0;35038.1;0.0 +6771600;0;26600.7;0.0 +6775200;0;19353.9;0.0 +6778800;0;14475.2;0.0 +6782400;0;13429.1;0.0 +6786000;0;9481.6;0.0 +6789600;0;7429.3;0.0 +6793200;0;6303.7;0.0 +6796800;0;4964.9;0.0 +6800400;0;10904.1;0.0 +6804000;0;18123.4;0.0 +6807600;0;0;0.0 +6811200;0;0;0.0 +6814800;0;0;0.0 +6818400;0;0;0.0 +6822000;0;0;0.0 +6825600;0;0;0.0 +6829200;0;0;0.0 +6832800;0;0;0.0 +6836400;0;82.9;0.0 +6840000;0;239.3;0.0 +6843600;0;683.0;0.0 +6847200;0;49289.2;0.0 +6850800;0;36166.5;0.0 +6854400;0;17733.4;0.0 +6858000;0;7356.3;0.0 +6861600;0;4741.5;0.0 +6865200;-602.6;3712.1;0.0 +6868800;-1205.6;5031.7;0.0 +6872400;-1497.5;2488.5;0.0 +6876000;-1450.2;1589.6;0.0 +6879600;-896.4;1551.9;0.0 +6883200;-2494.7;1617.8;0.0 +6886800;-3079.2;3673.3;0.0 +6890400;0;7713.5;0.0 +6894000;0;0;0.0 +6897600;0;0;0.0 +6901200;0;0;0.0 +6904800;0;0;0.0 +6908400;0;0;0.0 +6912000;0;0;0.0 +6915600;0;0;0.0 +6919200;0;0;0.0 +6922800;0;0;0.0 +6926400;0;0;0.0 +6930000;0;0;0.0 +6933600;0;21859.1;0.0 +6937200;0;16522.5;0.0 +6940800;0;3647.9;0.0 +6944400;0;1823.3;0.0 +6948000;0;928.4;0.0 +6951600;-96.2;446.0;0.0 +6955200;-608.6;252.6;0.0 +6958800;-450.8;0;0.0 +6962400;-104.6;0;0.0 +6966000;0;0;0.0 +6969600;0;0;0.0 +6973200;0;682.9;0.0 +6976800;0;3474.9;0.0 +6980400;0;0;0.0 +6984000;0;0;0.0 +6987600;0;0;0.0 +6991200;0;0;0.0 +6994800;0;0;0.0 +6998400;0;0;0.0 +7002000;0;0;0.0 +7005600;0;0;0.0 +7009200;0;0;0.0 +7012800;0;0;0.0 +7016400;0;0;0.0 +7020000;0;21240.8;0.0 +7023600;0;18127.3;0.0 +7027200;0;10750.8;0.0 +7030800;0;7687.7;0.0 +7034400;0;6029.5;0.0 +7038000;0;4202.9;0.0 +7041600;0;4677.5;0.0 +7045200;0;3012.0;0.0 +7048800;0;2784.9;0.0 +7052400;0;1960.0;0.0 +7056000;0;1991.1;0.0 +7059600;0;5409.2;0.0 +7063200;0;11165.1;0.0 +7066800;0;0;0.0 +7070400;0;0;0.0 +7074000;0;0;0.0 +7077600;0;0;0.0 +7081200;0;0;0.0 +7084800;0;0;0.0 +7088400;0;0;0.0 +7092000;0;0;0.0 +7095600;0;0;0.0 +7099200;0;40.8;0.0 +7102800;0;130.6;0.0 +7106400;0;39358.8;0.0 +7110000;0;31805.3;0.0 +7113600;0;14828.7;0.0 +7117200;0;10523.4;0.0 +7120800;0;8073.7;0.0 +7124400;0;5193.7;0.0 +7128000;0;4546.1;0.0 +7131600;0;2758.0;0.0 +7135200;0;2949.3;0.0 +7138800;0;2147.8;0.0 +7142400;0;2278.4;0.0 +7146000;0;4943.2;0.0 +7149600;0;10221.4;0.0 +7153200;0;0;0.0 +7156800;0;0;0.0 +7160400;0;0;0.0 +7164000;0;0;0.0 +7167600;0;0;0.0 +7171200;0;0;0.0 +7174800;0;0;0.0 +7178400;0;0;0.0 +7182000;0;145.1;0.0 +7185600;0;410.6;0.0 +7189200;0;1046.6;0.0 +7192800;0;1639.8;0.0 +7196400;0;1665.5;0.0 +7200000;0;500.9;0.0 +7203600;0;388.7;0.0 +7207200;0;275.2;0.0 +7210800;0;285.9;0.0 +7214400;0;138.9;0.0 +7218000;0;81.5;0.0 +7221600;0;6.9;0.0 +7225200;0;109.8;0.0 +7228800;0;116.4;0.0 +7232400;0;247.2;0.0 +7236000;0;74.8;0.0 +7239600;0;493.5;0.0 +7243200;0;572.8;0.0 +7246800;0;878.3;0.0 +7250400;0;1154.1;0.0 +7254000;0;1291.8;0.0 +7257600;0;1606.2;0.0 +7261200;0;1590.1;0.0 +7264800;0;1820.2;0.0 +7268400;0;1941.9;0.0 +7272000;0;1760.4;0.0 +7275600;0;2417.9;0.0 +7279200;0;2243.1;0.0 +7282800;0;1832.0;0.0 +7286400;0;1827.2;0.0 +7290000;0;557.1;0.0 +7293600;0;584.7;0.0 +7297200;0;349.1;0.0 +7300800;0;344.7;0.0 +7304400;0;309.7;0.0 +7308000;0;187.7;0.0 +7311600;0;196.3;0.0 +7315200;0;254.3;0.0 +7318800;0;793.6;0.0 +7322400;0;1326.8;0.0 +7326000;0;1834.9;0.0 +7329600;0;2415.7;0.0 +7333200;0;2412.8;0.0 +7336800;0;3128.1;0.0 +7340400;0;2973.3;0.0 +7344000;0;3010.6;0.0 +7347600;0;3553.2;0.0 +7351200;0;2908.9;0.0 +7354800;0;3282.7;0.0 +7358400;0;4647.7;0.0 +7362000;0;3569.6;0.0 +7365600;0;84576.4;0.0 +7369200;0;54197.5;0.0 +7372800;0;32118.0;0.0 +7376400;0;21787.2;0.0 +7380000;0;18457.0;0.0 +7383600;0;12041.5;0.0 +7387200;0;11945.1;0.0 +7390800;0;7755.0;0.0 +7394400;0;8434.7;0.0 +7398000;0;7664.9;0.0 +7401600;0;5025.9;0.0 +7405200;0;9837.2;0.0 +7408800;0;15400.6;0.0 +7412400;0;0;0.0 +7416000;0;0;0.0 +7419600;0;0;0.0 +7423200;0;0;0.0 +7426800;0;0;0.0 +7430400;0;0;0.0 +7434000;0;0;0.0 +7437600;0;63.5;0.0 +7441200;0;198.1;0.0 +7444800;0;380.0;0.0 +7448400;0;760.0;0.0 +7452000;0;45131.7;0.0 +7455600;0;35239.6;0.0 +7459200;0;14538.8;0.0 +7462800;0;7717.4;0.0 +7466400;0;3748.1;0.0 +7470000;0;2218.0;0.0 +7473600;-3.4;2775.3;0.0 +7477200;-593.3;1156.7;0.0 +7480800;-654.9;930.9;0.0 +7484400;-74.0;885.7;0.0 +7488000;-1276.4;937.6;0.0 +7491600;-2326.1;2270.5;0.0 +7495200;0;6405.0;0.0 +7498800;0;0;0.0 +7502400;0;0;0.0 +7506000;0;0;0.0 +7509600;0;0;0.0 +7513200;0;0;0.0 +7516800;0;0;0.0 +7520400;0;0;0.0 +7524000;0;0;0.0 +7527600;0;0;0.0 +7531200;0;0;0.0 +7534800;0;0;0.0 +7538400;0;33230.3;0.0 +7542000;0;26359.5;0.0 +7545600;0;8475.0;0.0 +7549200;0;3489.0;0.0 +7552800;0;1919.5;0.0 +7556400;-205.4;906.0;0.0 +7560000;-669.5;656.8;0.0 +7563600;-967.9;246.1;0.0 +7567200;-198.9;205.7;0.0 +7570800;-12.0;143.6;0.0 +7574400;0;274.8;0.0 +7578000;0;1840.9;0.0 +7581600;0;6603.6;0.0 +7585200;0;0;0.0 +7588800;0;0;0.0 +7592400;0;0;0.0 +7596000;0;0;0.0 +7599600;0;0;0.0 +7603200;0;0;0.0 +7606800;0;0;0.0 +7610400;0;0;0.0 +7614000;0;0;0.0 +7617600;0;0;0.0 +7621200;0;0;0.0 +7624800;0;21429.5;0.0 +7628400;0;17567.7;0.0 +7632000;0;8955.8;0.0 +7635600;0;6367.2;0.0 +7639200;0;4708.8;0.0 +7642800;0;3623.2;0.0 +7646400;0;3248.3;0.0 +7650000;0;1660.5;0.0 +7653600;0;1099.9;0.0 +7657200;0;73.7;0.0 +7660800;0;233.1;0.0 +7664400;0;2586.9;0.0 +7668000;0;5903.1;0.0 +7671600;0;0;0.0 +7675200;0;0;0.0 +7678800;0;0;0.0 +7682400;0;0;0.0 +7686000;0;0;0.0 +7689600;0;0;0.0 +7693200;0;0;0.0 +7696800;0;0;0.0 +7700400;0;0;0.0 +7704000;0;0;0.0 +7707600;0;0;0.0 +7711200;0;20698.0;0.0 +7714800;0;17769.9;0.0 +7718400;0;8006.9;0.0 +7722000;0;4198.2;0.0 +7725600;0;2003.3;0.0 +7729200;0;1781.8;0.0 +7732800;0;1162.4;0.0 +7736400;0;0;0.0 +7740000;0;0;0.0 +7743600;0;0;0.0 +7747200;0;0;0.0 +7750800;0;944.3;0.0 +7754400;0;4089.6;0.0 +7758000;0;0;0.0 +7761600;0;0;0.0 +7765200;0;0;0.0 +7768800;0;0;0.0 +7772400;0;0;0.0 +7776000;0;0;0.0 +7779600;0;0;0.0 +7783200;0;0;0.0 +7786800;0;0;0.0 +7790400;0;0;0.0 +7794000;0;0;0.0 +7797600;0;0;0.0 +7801200;0;0;0.0 +7804800;0;0;0.0 +7808400;0;0;0.0 +7812000;0;0;0.0 +7815600;0;0;0.0 +7819200;0;0;0.0 +7822800;0;0;0.0 +7826400;0;0;0.0 +7830000;0;0;0.0 +7833600;0;0;0.0 +7837200;0;0;0.0 +7840800;0;0;0.0 +7844400;0;0;0.0 +7848000;0;0;0.0 +7851600;0;0;0.0 +7855200;0;0;0.0 +7858800;0;0;0.0 +7862400;0;0;0.0 +7866000;0;0;0.0 +7869600;0;0;0.0 +7873200;0;0;0.0 +7876800;0;0;0.0 +7880400;0;0;0.0 +7884000;0;0;0.0 +7887600;0;0;0.0 +7891200;0;0;0.0 +7894800;0;0;0.0 +7898400;0;0;0.0 +7902000;0;0;0.0 +7905600;0;0;0.0 +7909200;0;0;0.0 +7912800;0;0;0.0 +7916400;0;0;0.0 +7920000;0;0;0.0 +7923600;0;0;0.0 +7927200;0;0;0.0 +7930800;0;0;0.0 +7934400;0;0;0.0 +7938000;0;0;0.0 +7941600;0;0;0.0 +7945200;0;0;0.0 +7948800;0;0;0.0 +7952400;0;0;0.0 +7956000;0;0;0.0 +7959600;0;97.5;0.0 +7963200;0;176.5;0.0 +7966800;0;456.0;0.0 +7970400;0;54499.5;0.0 +7974000;0;36200.7;0.0 +7977600;0;13025.7;0.0 +7981200;0;7775.8;0.0 +7984800;0;3325.1;0.0 +7988400;-306.4;1161.1;0.0 +7992000;0;1383.9;0.0 +7995600;-33.6;211.9;0.0 +7999200;-580.9;151.0;0.0 +8002800;-1059.8;112.5;0.0 +8006400;-894.4;113.5;0.0 +8010000;0;1664.3;0.0 +8013600;0;7068.0;0.0 +8017200;0;0;0.0 +8020800;0;0;0.0 +8024400;0;0;0.0 +8028000;0;0;0.0 +8031600;0;0;0.0 +8035200;0;0;0.0 +8038800;0;0;0.0 +8042400;0;0;0.0 +8046000;0;0;0.0 +8049600;0;0;0.0 +8053200;0;0;0.0 +8056800;0;20783.8;0.0 +8060400;0;18155.1;0.0 +8064000;0;5428.6;0.0 +8067600;0;3744.9;0.0 +8071200;0;3451.9;0.0 +8074800;0;1452.6;0.0 +8078400;0;2771.7;0.0 +8082000;0;2141.6;0.0 +8085600;0;2782.5;0.0 +8089200;0;3107.3;0.0 +8092800;0;2743.6;0.0 +8096400;0;8010.9;0.0 +8100000;0;12640.2;0.0 +8103600;0;0;0.0 +8107200;0;0;0.0 +8110800;0;0;0.0 +8114400;0;0;0.0 +8118000;0;0;0.0 +8121600;0;0;0.0 +8125200;0;0;0.0 +8128800;0;0;0.0 +8132400;0;0;0.0 +8136000;0;0;0.0 +8139600;0;0;0.0 +8143200;0;32752.0;0.0 +8146800;0;27526.9;0.0 +8150400;0;7861.9;0.0 +8154000;0;4350.0;0.0 +8157600;0;2828.4;0.0 +8161200;-617.7;1877.7;0.0 +8164800;-999.9;1986.9;0.0 +8168400;-1199.3;475.8;0.0 +8172000;-1042.4;356.9;0.0 +8175600;-458.7;337.9;0.0 +8179200;-2257.2;522.0;0.0 +8182800;0;1796.4;0.0 +8186400;0;4837.8;0.0 +8190000;0;0;0.0 +8193600;0;0;0.0 +8197200;0;0;0.0 +8200800;0;0;0.0 +8204400;0;0;0.0 +8208000;0;0;0.0 +8211600;0;0;0.0 +8215200;0;0;0.0 +8218800;0;0;0.0 +8222400;0;0;0.0 +8226000;0;0;0.0 +8229600;0;26431.2;0.0 +8233200;0;22229.7;0.0 +8236800;0;3952.2;0.0 +8240400;0;2364.2;0.0 +8244000;-306.2;774.9;0.0 +8247600;-1130.9;278.3;0.0 +8251200;-1615.4;99.4;0.0 +8254800;-1760.1;0;0.0 +8258400;-1418.6;0;0.0 +8262000;-2312.8;0;0.0 +8265600;-3745.0;0;0.0 +8269200;-1721.6;0;0.0 +8272800;0;711.2;0.0 +8276400;0;0;0.0 +8280000;0;0;0.0 +8283600;0;0;0.0 +8287200;0;0;0.0 +8290800;0;0;0.0 +8294400;0;0;0.0 +8298000;0;0;0.0 +8301600;0;0;0.0 +8305200;0;0;0.0 +8308800;0;0;0.0 +8312400;0;0;0.0 +8316000;0;13758.4;0.0 +8319600;0;11585.9;0.0 +8323200;0;1130.4;0.0 +8326800;0;352.5;0.0 +8330400;0;65.7;0.0 +8334000;-323.5;0;0.0 +8337600;-804.9;0;0.0 +8341200;-1140.4;0;0.0 +8344800;-1105.6;0;0.0 +8348400;-1691.1;0;0.0 +8352000;-482.7;0;0.0 +8355600;0;0;0.0 +8359200;0;32.0;0.0 +8362800;0;0;0.0 +8366400;0;0;0.0 +8370000;0;0;0.0 +8373600;0;0;0.0 +8377200;0;0;0.0 +8380800;0;0;0.0 +8384400;0;0;0.0 +8388000;0;0;0.0 +8391600;0;0;0.0 +8395200;0;0;0.0 +8398800;0;0;0.0 +8402400;0;0;0.0 +8406000;0;0;0.0 +8409600;0;0;0.0 +8413200;0;0;0.0 +8416800;0;0;0.0 +8420400;0;0;0.0 +8424000;0;0;0.0 +8427600;0;0;0.0 +8431200;0;0;0.0 +8434800;0;0;0.0 +8438400;0;0;0.0 +8442000;0;0;0.0 +8445600;0;0;0.0 +8449200;0;0;0.0 +8452800;0;0;0.0 +8456400;0;0;0.0 +8460000;0;0;0.0 +8463600;0;0;0.0 +8467200;0;0;0.0 +8470800;0;0;0.0 +8474400;0;0;0.0 +8478000;0;0;0.0 +8481600;0;0;0.0 +8485200;0;0;0.0 +8488800;0;0;0.0 +8492400;0;0;0.0 +8496000;0;0;0.0 +8499600;0;0;0.0 +8503200;0;0;0.0 +8506800;0;0;0.0 +8510400;0;0;0.0 +8514000;0;0;0.0 +8517600;0;0;0.0 +8521200;0;0;0.0 +8524800;0;0;0.0 +8528400;0;0;0.0 +8532000;0;0;0.0 +8535600;0;0;0.0 +8539200;0;0;0.0 +8542800;0;0;0.0 +8546400;0;0;0.0 +8550000;0;0;0.0 +8553600;0;0;0.0 +8557200;0;0;0.0 +8560800;0;0;0.0 +8564400;0;0;0.0 +8568000;0;0;0.0 +8571600;0;0;0.0 +8575200;0;22184.9;0.0 +8578800;0;18190.8;0.0 +8582400;0;5871.1;0.0 +8586000;0;2088.7;0.0 +8589600;0;746.6;0.0 +8593200;0;669.4;0.0 +8596800;0;1542.2;0.0 +8600400;0;423.8;0.0 +8604000;0;510.0;0.0 +8607600;0;800.9;0.0 +8611200;0;1134.9;0.0 +8614800;0;5536.2;0.0 +8618400;0;12339.2;0.0 +8622000;0;0;0.0 +8625600;0;0;0.0 +8629200;0;0;0.0 +8632800;0;0;0.0 +8636400;0;0;0.0 +8640000;0;0;0.0 +8643600;0;0;0.0 +8647200;0;0;0.0 +8650800;0;0;0.0 +8654400;0;0;0.0 +8658000;0;0;0.0 +8661600;0;27398.6;0.0 +8665200;0;23822.6;0.0 +8668800;0;10431.1;0.0 +8672400;0;5873.9;0.0 +8676000;0;3886.1;0.0 +8679600;0;2040.4;0.0 +8683200;0;2272.0;0.0 +8686800;0;777.1;0.0 +8690400;0;378.0;0.0 +8694000;-586.7;92.3;0.0 +8697600;-3300.6;183.9;0.0 +8701200;-3955.7;1365.3;0.0 +8704800;0;3146.4;0.0 +8708400;0;0;0.0 +8712000;0;0;0.0 +8715600;0;0;0.0 +8719200;0;0;0.0 +8722800;0;0;0.0 +8726400;0;0;0.0 +8730000;0;0;0.0 +8733600;0;0;0.0 +8737200;0;0;0.0 +8740800;0;0;0.0 +8744400;0;0;0.0 +8748000;0;20753.6;0.0 +8751600;0;15766.5;0.0 +8755200;0;5862.1;0.0 +8758800;0;3495.1;0.0 +8762400;0;1500.8;0.0 +8766000;0;790.3;0.0 +8769600;0;1224.1;0.0 +8773200;0;447.6;0.0 +8776800;0;318.2;0.0 +8780400;0;167.7;0.0 +8784000;0;443.4;0.0 +8787600;0;2526.7;0.0 +8791200;0;6008.1;0.0 +8794800;0;0;0.0 +8798400;0;0;0.0 +8802000;0;0;0.0 +8805600;0;0;0.0 +8809200;0;0;0.0 +8812800;0;0;0.0 +8816400;0;0;0.0 +8820000;0;0;0.0 +8823600;0;0;0.0 +8827200;0;0;0.0 +8830800;0;0;0.0 +8834400;0;25929.6;0.0 +8838000;0;22814.0;0.0 +8841600;0;5570.1;0.0 +8845200;0;3713.7;0.0 +8848800;0;2518.5;0.0 +8852400;0;1422.3;0.0 +8856000;-1.0;1380.7;0.0 +8859600;-56.3;223.4;0.0 +8863200;0;114.8;0.0 +8866800;0;141.4;0.0 +8870400;0;138.6;0.0 +8874000;0;847.4;0.0 +8877600;0;2724.3;0.0 +8881200;0;0;0.0 +8884800;0;0;0.0 +8888400;0;0;0.0 +8892000;0;0;0.0 +8895600;0;0;0.0 +8899200;0;0;0.0 +8902800;0;0;0.0 +8906400;0;0;0.0 +8910000;0;0;0.0 +8913600;0;0;0.0 +8917200;0;0;0.0 +8920800;0;23235.1;0.0 +8924400;0;18705.0;0.0 +8928000;0;10465.0;0.0 +8931600;0;7688.5;0.0 +8935200;0;4408.8;0.0 +8938800;0;4498.9;0.0 +8942400;0;3276.4;0.0 +8946000;0;2732.6;0.0 +8949600;0;878.1;0.0 +8953200;0;849.0;0.0 +8956800;0;732.8;0.0 +8960400;0;2066.9;0.0 +8964000;0;5034.9;0.0 +8967600;0;0;0.0 +8971200;0;0;0.0 +8974800;0;0;0.0 +8978400;0;0;0.0 +8982000;0;0;0.0 +8985600;0;0;0.0 +8989200;0;0;0.0 +8992800;0;0;0.0 +8996400;0;0;0.0 +9000000;0;0;0.0 +9003600;0;0;0.0 +9007200;0;0;0.0 +9010800;0;0;0.0 +9014400;0;0;0.0 +9018000;0;0;0.0 +9021600;0;0;0.0 +9025200;0;0;0.0 +9028800;0;0;0.0 +9032400;0;0;0.0 +9036000;0;0;0.0 +9039600;0;0;0.0 +9043200;0;0;0.0 +9046800;0;0;0.0 +9050400;0;0;0.0 +9054000;0;0;0.0 +9057600;0;0;0.0 +9061200;0;0;0.0 +9064800;0;0;0.0 +9068400;0;60.0;0.0 +9072000;0;85.2;0.0 +9075600;0;553.6;0.0 +9079200;0;1605.8;0.0 +9082800;0;2659.8;0.0 +9086400;0;3944.6;0.0 +9090000;0;3785.2;0.0 +9093600;0;4513.3;0.0 +9097200;0;5172.1;0.0 +9100800;0;3780.3;0.0 +9104400;0;3195.7;0.0 +9108000;0;1029.7;0.0 +9111600;0;476.5;0.0 +9115200;0;118.6;0.0 +9118800;0;2.5;0.0 +9122400;0;0;0.0 +9126000;0;0;0.0 +9129600;0;0;0.0 +9133200;0;0;0.0 +9136800;0;0;0.0 +9140400;0;709.7;0.0 +9144000;0;1286.1;0.0 +9147600;0;1743.3;0.0 +9151200;0;1712.9;0.0 +9154800;0;2451.1;0.0 +9158400;0;2089.5;0.0 +9162000;0;2363.8;0.0 +9165600;0;3042.1;0.0 +9169200;0;3012.6;0.0 +9172800;0;2383.9;0.0 +9176400;0;3052.0;0.0 +9180000;0;87248.3;0.0 +9183600;0;50623.8;0.0 +9187200;0;26112.5;0.0 +9190800;0;16339.6;0.0 +9194400;0;9912.2;0.0 +9198000;0;6220.6;0.0 +9201600;0;7353.8;0.0 +9205200;-1.7;2652.8;0.0 +9208800;-37.7;1271.0;0.0 +9212400;0;1119.4;0.0 +9216000;0;1088.7;0.0 +9219600;0;4487.8;0.0 +9223200;0;10118.1;0.0 +9226800;0;0;0.0 +9230400;0;0;0.0 +9234000;0;0;0.0 +9237600;0;0;0.0 +9241200;0;0;0.0 +9244800;0;0;0.0 +9248400;0;0;0.0 +9252000;0;0;0.0 +9255600;0;0;0.0 +9259200;0;0;0.0 +9262800;0;0;0.0 +9266400;0;28297.9;0.0 +9270000;0;23510.6;0.0 +9273600;0;8730.2;0.0 +9277200;0;2778.9;0.0 +9280800;0;2310.5;0.0 +9284400;0;1595.3;0.0 +9288000;0;897.4;0.0 +9291600;0;392.8;0.0 +9295200;0;27.1;0.0 +9298800;-631.7;0;0.0 +9302400;-3704.3;0;0.0 +9306000;-3885.5;297.7;0.0 +9309600;0;2725.0;0.0 +9313200;0;0;0.0 +9316800;0;0;0.0 +9320400;0;0;0.0 +9324000;0;0;0.0 +9327600;0;0;0.0 +9331200;0;0;0.0 +9334800;0;0;0.0 +9338400;0;0;0.0 +9342000;0;0;0.0 +9345600;0;0;0.0 +9349200;0;0;0.0 +9352800;0;21677.2;0.0 +9356400;0;17041.5;0.0 +9360000;0;2398.4;0.0 +9363600;0;977.1;0.0 +9367200;0;445.0;0.0 +9370800;-699.9;153.6;0.0 +9374400;-1175.5;66.0;0.0 +9378000;-1377.7;0;0.0 +9381600;-1371.8;0;0.0 +9385200;-4082.2;0;0.0 +9388800;-5608.9;0;0.0 +9392400;-6088.6;0;0.0 +9396000;0;0;0.0 +9399600;0;0;0.0 +9403200;0;0;0.0 +9406800;0;0;0.0 +9410400;0;0;0.0 +9414000;0;0;0.0 +9417600;0;0;0.0 +9421200;0;0;0.0 +9424800;0;0;0.0 +9428400;0;0;0.0 +9432000;0;0;0.0 +9435600;0;0;0.0 +9439200;0;9134.0;0.0 +9442800;0;6959.1;0.0 +9446400;0;520.3;0.0 +9450000;0;103.0;0.0 +9453600;0;0;0.0 +9457200;0;0;0.0 +9460800;-197.2;0;0.0 +9464400;-293.8;0;0.0 +9468000;-966.6;0;0.0 +9471600;-3029.2;0;0.0 +9475200;-5812.0;0;0.0 +9478800;-2630.8;0;0.0 +9482400;0;0;0.0 +9486000;0;0;0.0 +9489600;0;0;0.0 +9493200;0;0;0.0 +9496800;0;0;0.0 +9500400;0;0;0.0 +9504000;0;0;0.0 +9507600;0;0;0.0 +9511200;0;0;0.0 +9514800;0;0;0.0 +9518400;0;0;0.0 +9522000;0;0;0.0 +9525600;0;16614.0;0.0 +9529200;0;12587.0;0.0 +9532800;0;995.4;0.0 +9536400;-113.8;437.7;0.0 +9540000;-1530.8;61.6;0.0 +9543600;-1472.4;0;0.0 +9547200;-1445.4;0;0.0 +9550800;-1696.8;0;0.0 +9554400;-1583.7;0;0.0 +9558000;-3891.6;0;0.0 +9561600;-5436.8;0;0.0 +9565200;-3888.8;0;0.0 +9568800;0;33.4;0.0 +9572400;0;0;0.0 +9576000;0;0;0.0 +9579600;0;0;0.0 +9583200;0;0;0.0 +9586800;0;0;0.0 +9590400;0;0;0.0 +9594000;0;0;0.0 +9597600;0;0;0.0 +9601200;0;0;0.0 +9604800;0;0;0.0 +9608400;0;0;0.0 +9612000;0;0;0.0 +9615600;0;0;0.0 +9619200;0;0;0.0 +9622800;0;0;0.0 +9626400;0;0;0.0 +9630000;0;0;0.0 +9633600;0;0;0.0 +9637200;0;0;0.0 +9640800;0;0;0.0 +9644400;0;0;0.0 +9648000;0;0;0.0 +9651600;0;0;0.0 +9655200;0;0;0.0 +9658800;0;0;0.0 +9662400;0;0;0.0 +9666000;0;0;0.0 +9669600;0;0;0.0 +9673200;0;0;0.0 +9676800;0;0;0.0 +9680400;0;0;0.0 +9684000;0;0;0.0 +9687600;0;0;0.0 +9691200;0;0;0.0 +9694800;0;0;0.0 +9698400;0;0;0.0 +9702000;0;0;0.0 +9705600;0;0;0.0 +9709200;0;0;0.0 +9712800;0;0;0.0 +9716400;0;0;0.0 +9720000;0;0;0.0 +9723600;0;0;0.0 +9727200;0;0;0.0 +9730800;0;0;0.0 +9734400;0;0;0.0 +9738000;0;0;0.0 +9741600;0;0;0.0 +9745200;0;0;0.0 +9748800;0;0;0.0 +9752400;0;0;0.0 +9756000;0;0;0.0 +9759600;0;0;0.0 +9763200;0;0;0.0 +9766800;0;0;0.0 +9770400;0;0;0.0 +9774000;0;0;0.0 +9777600;0;0;0.0 +9781200;0;0;0.0 +9784800;0;30824.5;0.0 +9788400;0;22099.3;0.0 +9792000;0;5418.2;0.0 +9795600;-1155.0;2102.7;0.0 +9799200;-2133.8;668.0;0.0 +9802800;-1464.4;351.4;0.0 +9806400;-1819.4;267.9;0.0 +9810000;-1927.3;28.1;0.0 +9813600;-1539.4;0;0.0 +9817200;-2926.1;0;0.0 +9820800;-5162.8;0;0.0 +9824400;-5785.1;111.0;0.0 +9828000;0;990.4;0.0 +9831600;0;0;0.0 +9835200;0;0;0.0 +9838800;0;0;0.0 +9842400;0;0;0.0 +9846000;0;0;0.0 +9849600;0;0;0.0 +9853200;0;0;0.0 +9856800;0;0;0.0 +9860400;0;0;0.0 +9864000;0;0;0.0 +9867600;0;0;0.0 +9871200;0;14336.1;0.0 +9874800;0;11511.1;0.0 +9878400;0;2550.3;0.0 +9882000;0;1554.1;0.0 +9885600;0;1172.8;0.0 +9889200;0;181.6;0.0 +9892800;0;547.9;0.0 +9896400;0;0;0.0 +9900000;0;0;0.0 +9903600;0;45.4;0.0 +9907200;0;36.7;0.0 +9910800;-2264.4;738.0;0.0 +9914400;0;3165.9;0.0 +9918000;0;0;0.0 +9921600;0;0;0.0 +9925200;0;0;0.0 +9928800;0;0;0.0 +9932400;0;0;0.0 +9936000;0;0;0.0 +9939600;0;0;0.0 +9943200;0;0;0.0 +9946800;0;0;0.0 +9950400;0;0;0.0 +9954000;0;0;0.0 +9957600;0;20448.8;0.0 +9961200;0;15668.5;0.0 +9964800;0;1909.5;0.0 +9968400;0;622.7;0.0 +9972000;0;251.5;0.0 +9975600;-603.0;16.5;0.0 +9979200;-1131.6;0;0.0 +9982800;-1373.8;0;0.0 +9986400;-1453.1;0;0.0 +9990000;-4190.4;0;0.0 +9993600;-2216.3;0;0.0 +9997200;0;11.7;0.0 +10000800;0;270.2;0.0 +10004400;0;0;0.0 +10008000;0;0;0.0 +10011600;0;0;0.0 +10015200;0;0;0.0 +10018800;0;0;0.0 +10022400;0;0;0.0 +10026000;0;0;0.0 +10029600;0;0;0.0 +10033200;0;0;0.0 +10036800;0;0;0.0 +10040400;0;0;0.0 +10044000;0;15262.4;0.0 +10047600;0;11798.9;0.0 +10051200;0;1109.7;0.0 +10054800;0;397.8;0.0 +10058400;0;47.8;0.0 +10062000;0;39.7;0.0 +10065600;0;0;0.0 +10069200;0;0;0.0 +10072800;0;0;0.0 +10076400;0;0;0.0 +10080000;0;0;0.0 +10083600;0;192.3;0.0 +10087200;0;2149.5;0.0 +10090800;0;0;0.0 +10094400;0;0;0.0 +10098000;0;0;0.0 +10101600;0;0;0.0 +10105200;0;0;0.0 +10108800;0;0;0.0 +10112400;0;0;0.0 +10116000;0;0;0.0 +10119600;0;0;0.0 +10123200;0;0;0.0 +10126800;0;0;0.0 +10130400;0;12953.0;0.0 +10134000;0;11242.9;0.0 +10137600;0;2844.8;0.0 +10141200;0;1798.6;0.0 +10144800;0;753.6;0.0 +10148400;0;234.3;0.0 +10152000;0;252.7;0.0 +10155600;0;0;0.0 +10159200;0;0;0.0 +10162800;0;0;0.0 +10166400;0;0;0.0 +10170000;0;1914.4;0.0 +10173600;0;4482.9;0.0 +10177200;0;0;0.0 +10180800;0;0;0.0 +10184400;0;0;0.0 +10188000;0;0;0.0 +10191600;0;0;0.0 +10195200;0;0;0.0 +10198800;0;0;0.0 +10202400;0;0;0.0 +10206000;0;0;0.0 +10209600;0;0;0.0 +10213200;0;0;0.0 +10216800;0;0;0.0 +10220400;0;0;0.0 +10224000;0;0;0.0 +10227600;0;0;0.0 +10231200;0;0;0.0 +10234800;0;0;0.0 +10238400;0;0;0.0 +10242000;0;0;0.0 +10245600;0;0;0.0 +10249200;0;0;0.0 +10252800;0;0;0.0 +10256400;0;0;0.0 +10260000;0;0;0.0 +10263600;0;0;0.0 +10267200;0;0;0.0 +10270800;0;0;0.0 +10274400;0;0;0.0 +10278000;0;0;0.0 +10281600;0;0;0.0 +10285200;0;0;0.0 +10288800;0;0;0.0 +10292400;0;0;0.0 +10296000;0;0;0.0 +10299600;0;0;0.0 +10303200;0;0;0.0 +10306800;0;0;0.0 +10310400;0;0;0.0 +10314000;0;0;0.0 +10317600;0;0;0.0 +10321200;0;0;0.0 +10324800;0;0;0.0 +10328400;0;0;0.0 +10332000;0;0;0.0 +10335600;0;0;0.0 +10339200;0;0;0.0 +10342800;0;0;0.0 +10346400;0;0;0.0 +10350000;0;0;0.0 +10353600;0;0;0.0 +10357200;0;0;0.0 +10360800;0;0;0.0 +10364400;0;0;0.0 +10368000;0;0;0.0 +10371600;0;0;0.0 +10375200;0;0;0.0 +10378800;0;0;0.0 +10382400;0;0;0.0 +10386000;0;0;0.0 +10389600;0;31127.9;0.0 +10393200;0;15961.5;0.0 +10396800;0;4098.8;0.0 +10400400;-562.6;400.1;0.0 +10404000;0;210.6;0.0 +10407600;0;48.8;0.0 +10411200;0;0;0.0 +10414800;-103.2;0;0.0 +10418400;0;0;0.0 +10422000;0;0;0.0 +10425600;-2380.2;0;0.0 +10429200;-3107.9;0;0.0 +10432800;0;804.0;0.0 +10436400;0;0;0.0 +10440000;0;0;0.0 +10443600;0;0;0.0 +10447200;0;0;0.0 +10450800;0;0;0.0 +10454400;0;0;0.0 +10458000;0;0;0.0 +10461600;0;0;0.0 +10465200;0;0;0.0 +10468800;0;0;0.0 +10472400;0;0;0.0 +10476000;0;14892.5;0.0 +10479600;0;10672.9;0.0 +10483200;0;1068.3;0.0 +10486800;0;150.2;0.0 +10490400;0;0;0.0 +10494000;-281.9;0;0.0 +10497600;0;0;0.0 +10501200;-306.5;0;0.0 +10504800;-57.2;0;0.0 +10508400;0;0;0.0 +10512000;0;0;0.0 +10515600;0;0;0.0 +10519200;0;95.1;0.0 +10522800;0;0;0.0 +10526400;0;0;0.0 +10530000;0;0;0.0 +10533600;0;0;0.0 +10537200;0;0;0.0 +10540800;0;0;0.0 +10544400;0;0;0.0 +10548000;0;0;0.0 +10551600;0;0;0.0 +10555200;0;0;0.0 +10558800;0;0;0.0 +10562400;0;15293.4;0.0 +10566000;0;9412.3;0.0 +10569600;0;1634.6;0.0 +10573200;0;651.7;0.0 +10576800;0;101.7;0.0 +10580400;0;0;0.0 +10584000;0;0;0.0 +10587600;-524.8;0;0.0 +10591200;-371.3;0;0.0 +10594800;-101.7;0;0.0 +10598400;0;0;0.0 +10602000;0;0;0.0 +10605600;0;53.2;0.0 +10609200;0;0;0.0 +10612800;0;0;0.0 +10616400;0;0;0.0 +10620000;0;0;0.0 +10623600;0;0;0.0 +10627200;0;0;0.0 +10630800;0;0;0.0 +10634400;0;0;0.0 +10638000;0;0;0.0 +10641600;0;0;0.0 +10645200;0;0;0.0 +10648800;0;15377.3;0.0 +10652400;0;6599.6;0.0 +10656000;0;678.9;0.0 +10659600;0;163.3;0.0 +10663200;-501.6;0;0.0 +10666800;-579.4;0;0.0 +10670400;-777.0;0;0.0 +10674000;-1050.2;0;0.0 +10677600;-1085.7;0;0.0 +10681200;-2858.1;0;0.0 +10684800;-3832.5;0;0.0 +10688400;-3418.2;0;0.0 +10692000;0;0;0.0 +10695600;0;0;0.0 +10699200;0;0;0.0 +10702800;0;0;0.0 +10706400;0;0;0.0 +10710000;0;0;0.0 +10713600;0;0;0.0 +10717200;0;0;0.0 +10720800;0;0;0.0 +10724400;0;0;0.0 +10728000;0;0;0.0 +10731600;0;0;0.0 +10735200;0;6703.1;0.0 +10738800;0;4064.6;0.0 +10742400;0;207.9;0.0 +10746000;-114.0;0;0.0 +10749600;-1155.4;0;0.0 +10753200;-1532.5;0;0.0 +10756800;-1141.5;0;0.0 +10760400;-1242.7;0;0.0 +10764000;-1135.8;0;0.0 +10767600;-2569.4;0;0.0 +10771200;-4643.5;0;0.0 +10774800;-5048.8;0;0.0 +10778400;0;0;0.0 +10782000;0;0;0.0 +10785600;0;0;0.0 +10789200;0;0;0.0 +10792800;0;0;0.0 +10796400;0;0;0.0 +10800000;0;0;0.0 +10803600;0;0;0.0 +10807200;0;0;0.0 +10810800;0;0;0.0 +10814400;0;0;0.0 +10818000;0;0;0.0 +10821600;0;0;0.0 +10825200;0;0;0.0 +10828800;0;0;0.0 +10832400;0;0;0.0 +10836000;0;0;0.0 +10839600;0;0;0.0 +10843200;0;0;0.0 +10846800;0;0;0.0 +10850400;0;0;0.0 +10854000;0;0;0.0 +10857600;0;0;0.0 +10861200;0;0;0.0 +10864800;0;0;0.0 +10868400;0;0;0.0 +10872000;0;0;0.0 +10875600;0;0;0.0 +10879200;0;0;0.0 +10882800;0;0;0.0 +10886400;0;0;0.0 +10890000;0;0;0.0 +10893600;0;0;0.0 +10897200;0;0;0.0 +10900800;0;0;0.0 +10904400;0;0;0.0 +10908000;0;0;0.0 +10911600;0;0;0.0 +10915200;0;0;0.0 +10918800;0;0;0.0 +10922400;0;0;0.0 +10926000;0;0;0.0 +10929600;0;0;0.0 +10933200;0;0;0.0 +10936800;0;0;0.0 +10940400;0;0;0.0 +10944000;0;0;0.0 +10947600;0;0;0.0 +10951200;0;0;0.0 +10954800;0;0;0.0 +10958400;0;0;0.0 +10962000;0;0;0.0 +10965600;0;0;0.0 +10969200;0;0;0.0 +10972800;0;0;0.0 +10976400;0;0;0.0 +10980000;0;0;0.0 +10983600;0;0;0.0 +10987200;0;0;0.0 +10990800;0;0;0.0 +10994400;0;22197.8;0.0 +10998000;0;12627.9;0.0 +11001600;-525.3;2992.6;0.0 +11005200;-2305.2;593.5;0.0 +11008800;-1536.7;205.0;0.0 +11012400;-1212.3;0;0.0 +11016000;-935.5;0;0.0 +11019600;-1112.9;0;0.0 +11023200;-2041.6;0;0.0 +11026800;-4070.3;0;0.0 +11030400;-6183.3;0;0.0 +11034000;-3174.1;0;0.0 +11037600;0;240.1;0.0 +11041200;0;0;0.0 +11044800;0;0;0.0 +11048400;0;0;0.0 +11052000;0;0;0.0 +11055600;0;0;0.0 +11059200;0;0;0.0 +11062800;0;0;0.0 +11066400;0;0;0.0 +11070000;0;0;0.0 +11073600;0;0;0.0 +11077200;0;0;0.0 +11080800;0;9356.4;0.0 +11084400;0;7041.3;0.0 +11088000;0;543.1;0.0 +11091600;0;223.1;0.0 +11095200;0;0;0.0 +11098800;0;0;0.0 +11102400;0;0;0.0 +11106000;0;0;0.0 +11109600;0;0;0.0 +11113200;0;0;0.0 +11116800;0;0;0.0 +11120400;0;0;0.0 +11124000;0;0;0.0 +11127600;0;0;0.0 +11131200;0;0;0.0 +11134800;0;0;0.0 +11138400;0;0;0.0 +11142000;0;0;0.0 +11145600;0;0;0.0 +11149200;0;0;0.0 +11152800;0;0;0.0 +11156400;0;0;0.0 +11160000;0;0;0.0 +11163600;0;0;0.0 +11167200;0;7105.5;0.0 +11170800;0;5119.1;0.0 +11174400;0;353.5;0.0 +11178000;0;0;0.0 +11181600;-723.8;0;0.0 +11185200;-1731.0;0;0.0 +11188800;-1240.5;0;0.0 +11192400;-1602.7;0;0.0 +11196000;-2677.0;0;0.0 +11199600;-4407.2;0;0.0 +11203200;-4005.8;0;0.0 +11206800;-261.0;0;0.0 +11210400;0;0;0.0 +11214000;0;0;0.0 +11217600;0;0;0.0 +11221200;0;0;0.0 +11224800;0;0;0.0 +11228400;0;0;0.0 +11232000;0;0;0.0 +11235600;0;0;0.0 +11239200;0;0;0.0 +11242800;0;0;0.0 +11246400;0;0;0.0 +11250000;0;0;0.0 +11253600;0;1442.9;0.0 +11257200;0;666.3;0.0 +11260800;0;126.9;0.0 +11264400;0;33.5;0.0 +11268000;0;0;0.0 +11271600;0;0;0.0 +11275200;0;0;0.0 +11278800;0;0;0.0 +11282400;0;0;0.0 +11286000;0;0;0.0 +11289600;0;0;0.0 +11293200;0;1249.7;0.0 +11296800;0;3636.5;0.0 +11300400;0;0;0.0 +11304000;0;0;0.0 +11307600;0;0;0.0 +11311200;0;0;0.0 +11314800;0;0;0.0 +11318400;0;0;0.0 +11322000;0;0;0.0 +11325600;0;0;0.0 +11329200;0;0;0.0 +11332800;0;0;0.0 +11336400;0;0;0.0 +11340000;0;12958.7;0.0 +11343600;0;11333.1;0.0 +11347200;0;4133.4;0.0 +11350800;0;1716.7;0.0 +11354400;0;216.9;0.0 +11358000;0;0;0.0 +11361600;0;282.3;0.0 +11365200;0;0;0.0 +11368800;0;0;0.0 +11372400;0;0;0.0 +11376000;-2926.6;0;0.0 +11379600;-2848.1;0;0.0 +11383200;0;826.3;0.0 +11386800;0;0;0.0 +11390400;0;0;0.0 +11394000;0;0;0.0 +11397600;0;0;0.0 +11401200;0;0;0.0 +11404800;0;0;0.0 +11408400;0;0;0.0 +11412000;0;0;0.0 +11415600;0;0;0.0 +11419200;0;0;0.0 +11422800;0;0;0.0 +11426400;0;0;0.0 +11430000;0;0;0.0 +11433600;0;0;0.0 +11437200;0;0;0.0 +11440800;0;0;0.0 +11444400;0;0;0.0 +11448000;0;0;0.0 +11451600;0;0;0.0 +11455200;0;0;0.0 +11458800;0;0;0.0 +11462400;0;0;0.0 +11466000;0;0;0.0 +11469600;0;0;0.0 +11473200;0;0;0.0 +11476800;0;0;0.0 +11480400;0;0;0.0 +11484000;0;0;0.0 +11487600;0;0;0.0 +11491200;0;0;0.0 +11494800;0;0;0.0 +11498400;0;0;0.0 +11502000;0;0;0.0 +11505600;0;0;0.0 +11509200;0;0;0.0 +11512800;0;0;0.0 +11516400;0;0;0.0 +11520000;0;0;0.0 +11523600;0;0;0.0 +11527200;0;0;0.0 +11530800;0;0;0.0 +11534400;0;0;0.0 +11538000;0;0;0.0 +11541600;0;0;0.0 +11545200;0;0;0.0 +11548800;0;0;0.0 +11552400;0;0;0.0 +11556000;0;0;0.0 +11559600;0;0;0.0 +11563200;0;0;0.0 +11566800;0;0;0.0 +11570400;0;0;0.0 +11574000;0;0;0.0 +11577600;0;0;0.0 +11581200;0;0;0.0 +11584800;0;0;0.0 +11588400;0;0;0.0 +11592000;0;0;0.0 +11595600;0;0;0.0 +11599200;0;9449.5;0.0 +11602800;0;6348.8;0.0 +11606400;-403.7;74.5;0.0 +11610000;-1070.0;0;0.0 +11613600;-3111.6;0;0.0 +11617200;-2824.4;0;0.0 +11620800;-1691.8;0;0.0 +11624400;-1656.2;0;0.0 +11628000;-2449.4;0;0.0 +11631600;-5247.6;0;0.0 +11635200;-7762.3;0;0.0 +11638800;-7451.9;0;0.0 +11642400;0;0;0.0 +11646000;0;0;0.0 +11649600;0;0;0.0 +11653200;0;0;0.0 +11656800;0;0;0.0 +11660400;0;0;0.0 +11664000;0;0;0.0 +11667600;0;0;0.0 +11671200;0;0;0.0 +11674800;0;0;0.0 +11678400;0;0;0.0 +11682000;0;0;0.0 +11685600;0;6203.3;0.0 +11689200;0;2602.7;0.0 +11692800;0;46.1;0.0 +11696400;-2397.5;0;0.0 +11700000;-3431.5;0;0.0 +11703600;-3288.8;0;0.0 +11707200;-2337.6;0;0.0 +11710800;-2364.9;0;0.0 +11714400;-4068.5;0;0.0 +11718000;-6237.9;0;0.0 +11721600;-5467.7;0;0.0 +11725200;-2692.5;0;0.0 +11728800;0;0;0.0 +11732400;0;0;0.0 +11736000;0;0;0.0 +11739600;0;0;0.0 +11743200;0;0;0.0 +11746800;0;0;0.0 +11750400;0;0;0.0 +11754000;0;0;0.0 +11757600;0;0;0.0 +11761200;0;0;0.0 +11764800;0;0;0.0 +11768400;0;0;0.0 +11772000;0;464.2;0.0 +11775600;0;0;0.0 +11779200;0;0;0.0 +11782800;0;0;0.0 +11786400;0;0;0.0 +11790000;0;0;0.0 +11793600;0;0;0.0 +11797200;0;0;0.0 +11800800;0;0;0.0 +11804400;0;0;0.0 +11808000;0;0;0.0 +11811600;0;0;0.0 +11815200;0;0;0.0 +11818800;0;0;0.0 +11822400;0;0;0.0 +11826000;0;0;0.0 +11829600;0;0;0.0 +11833200;0;0;0.0 +11836800;0;0;0.0 +11840400;0;0;0.0 +11844000;0;0;0.0 +11847600;0;0;0.0 +11851200;0;0;0.0 +11854800;0;0;0.0 +11858400;0;9883.8;0.0 +11862000;0;5762.1;0.0 +11865600;0;783.0;0.0 +11869200;0;0;0.0 +11872800;0;0;0.0 +11876400;0;0;0.0 +11880000;0;0;0.0 +11883600;-4.0;0;0.0 +11887200;-7.5;0;0.0 +11890800;0;0;0.0 +11894400;0;0;0.0 +11898000;0;0;0.0 +11901600;0;215.2;0.0 +11905200;0;0;0.0 +11908800;0;0;0.0 +11912400;0;0;0.0 +11916000;0;0;0.0 +11919600;0;0;0.0 +11923200;0;0;0.0 +11926800;0;0;0.0 +11930400;0;0;0.0 +11934000;0;0;0.0 +11937600;0;0;0.0 +11941200;0;0;0.0 +11944800;0;10596.7;0.0 +11948400;0;7010.1;0.0 +11952000;0;904.0;0.0 +11955600;-942.2;0;0.0 +11959200;-1703.7;0;0.0 +11962800;-818.5;0;0.0 +11966400;-667.3;0;0.0 +11970000;-658.8;0;0.0 +11973600;-609.9;0;0.0 +11977200;-2401.3;0;0.0 +11980800;-4353.9;0;0.0 +11984400;-4685.0;0;0.0 +11988000;0;0;0.0 +11991600;0;0;0.0 +11995200;0;0;0.0 +11998800;0;0;0.0 +12002400;0;0;0.0 +12006000;0;0;0.0 +12009600;0;0;0.0 +12013200;0;0;0.0 +12016800;0;0;0.0 +12020400;0;0;0.0 +12024000;0;0;0.0 +12027600;0;0;0.0 +12031200;0;0;0.0 +12034800;0;0;0.0 +12038400;0;0;0.0 +12042000;0;0;0.0 +12045600;0;0;0.0 +12049200;0;0;0.0 +12052800;0;0;0.0 +12056400;0;0;0.0 +12060000;0;0;0.0 +12063600;0;0;0.0 +12067200;0;0;0.0 +12070800;0;0;0.0 +12074400;0;0;0.0 +12078000;0;0;0.0 +12081600;0;0;0.0 +12085200;0;0;0.0 +12088800;0;0;0.0 +12092400;0;0;0.0 +12096000;0;0;0.0 +12099600;0;0;0.0 +12103200;0;0;0.0 +12106800;0;0;0.0 +12110400;0;0;0.0 +12114000;0;0;0.0 +12117600;0;0;0.0 +12121200;0;0;0.0 +12124800;0;0;0.0 +12128400;0;0;0.0 +12132000;0;0;0.0 +12135600;0;0;0.0 +12139200;0;0;0.0 +12142800;0;0;0.0 +12146400;0;0;0.0 +12150000;0;0;0.0 +12153600;0;0;0.0 +12157200;0;0;0.0 +12160800;0;0;0.0 +12164400;0;0;0.0 +12168000;0;0;0.0 +12171600;0;0;0.0 +12175200;0;0;0.0 +12178800;0;0;0.0 +12182400;0;0;0.0 +12186000;0;0;0.0 +12189600;0;0;0.0 +12193200;0;0;0.0 +12196800;0;0;0.0 +12200400;0;0;0.0 +12204000;0;12099.7;0.0 +12207600;0;8239.6;0.0 +12211200;-2536.6;261.3;0.0 +12214800;-3483.4;0;0.0 +12218400;-4237.7;0;0.0 +12222000;-3720.7;0;0.0 +12225600;-2388.0;0;0.0 +12229200;-2196.5;0;0.0 +12232800;-2336.7;0;0.0 +12236400;-5149.9;0;0.0 +12240000;-7615.3;0;0.0 +12243600;-6941.4;0;0.0 +12247200;0;0;0.0 +12250800;0;0;0.0 +12254400;0;0;0.0 +12258000;0;0;0.0 +12261600;0;0;0.0 +12265200;0;0;0.0 +12268800;0;0;0.0 +12272400;0;0;0.0 +12276000;0;0;0.0 +12279600;0;0;0.0 +12283200;0;0;0.0 +12286800;0;0;0.0 +12290400;0;6867.8;0.0 +12294000;0;3650.8;0.0 +12297600;-1480.8;0;0.0 +12301200;-2564.5;0;0.0 +12304800;-3702.2;0;0.0 +12308400;-2719.3;0;0.0 +12312000;-2367.7;0;0.0 +12315600;-3019.3;0;0.0 +12319200;-4451.5;0;0.0 +12322800;-7042.9;0;0.0 +12326400;-6143.3;0;0.0 +12330000;-4317.1;0;0.0 +12333600;0;0;0.0 +12337200;0;0;0.0 +12340800;0;0;0.0 +12344400;0;0;0.0 +12348000;0;0;0.0 +12351600;0;0;0.0 +12355200;0;0;0.0 +12358800;0;0;0.0 +12362400;0;0;0.0 +12366000;0;0;0.0 +12369600;0;0;0.0 +12373200;0;0;0.0 +12376800;0;51.1;0.0 +12380400;0;0;0.0 +12384000;0;0;0.0 +12387600;0;0;0.0 +12391200;0;0;0.0 +12394800;0;0;0.0 +12398400;0;0;0.0 +12402000;0;0;0.0 +12405600;0;0;0.0 +12409200;0;0;0.0 +12412800;0;0;0.0 +12416400;0;0;0.0 +12420000;0;0;0.0 +12423600;0;0;0.0 +12427200;0;0;0.0 +12430800;0;0;0.0 +12434400;0;0;0.0 +12438000;0;0;0.0 +12441600;0;0;0.0 +12445200;0;0;0.0 +12448800;0;0;0.0 +12452400;0;0;0.0 +12456000;0;0;0.0 +12459600;0;0;0.0 +12463200;0;6261.8;0.0 +12466800;0;4581.2;0.0 +12470400;0;0;0.0 +12474000;0;0;0.0 +12477600;0;0;0.0 +12481200;-238.7;0;0.0 +12484800;-123.2;0;0.0 +12488400;-60.2;0;0.0 +12492000;-42.0;0;0.0 +12495600;0;0;0.0 +12499200;0;0;0.0 +12502800;0;0;0.0 +12506400;0;0;0.0 +12510000;0;0;0.0 +12513600;0;0;0.0 +12517200;0;0;0.0 +12520800;0;0;0.0 +12524400;0;0;0.0 +12528000;0;0;0.0 +12531600;0;0;0.0 +12535200;0;0;0.0 +12538800;0;0;0.0 +12542400;0;0;0.0 +12546000;0;0;0.0 +12549600;0;5143.1;0.0 +12553200;0;2147.0;0.0 +12556800;0;0;0.0 +12560400;-2119.3;0;0.0 +12564000;-3070.9;0;0.0 +12567600;-3148.5;0;0.0 +12571200;-2147.1;0;0.0 +12574800;-1892.6;0;0.0 +12578400;-2480.9;0;0.0 +12582000;-4777.6;0;0.0 +12585600;-7376.2;0;0.0 +12589200;-6809.3;0;0.0 +12592800;0;0;0.0 +12596400;0;0;0.0 +12600000;0;0;0.0 +12603600;0;0;0.0 +12607200;0;0;0.0 +12610800;0;0;0.0 +12614400;0;0;0.0 +12618000;0;0;0.0 +12621600;0;0;0.0 +12625200;0;0;0.0 +12628800;0;0;0.0 +12632400;0;0;0.0 +12636000;0;0;0.0 +12639600;0;0;0.0 +12643200;0;0;0.0 +12646800;0;0;0.0 +12650400;0;0;0.0 +12654000;0;0;0.0 +12657600;0;0;0.0 +12661200;0;0;0.0 +12664800;0;0;0.0 +12668400;0;0;0.0 +12672000;0;0;0.0 +12675600;0;0;0.0 +12679200;0;0;0.0 +12682800;0;0;0.0 +12686400;0;0;0.0 +12690000;0;0;0.0 +12693600;0;0;0.0 +12697200;0;0;0.0 +12700800;0;0;0.0 +12704400;0;0;0.0 +12708000;0;0;0.0 +12711600;0;0;0.0 +12715200;0;0;0.0 +12718800;0;0;0.0 +12722400;0;0;0.0 +12726000;0;0;0.0 +12729600;0;0;0.0 +12733200;0;0;0.0 +12736800;0;0;0.0 +12740400;0;0;0.0 +12744000;0;0;0.0 +12747600;0;0;0.0 +12751200;0;0;0.0 +12754800;0;0;0.0 +12758400;0;0;0.0 +12762000;0;0;0.0 +12765600;0;0;0.0 +12769200;0;0;0.0 +12772800;0;0;0.0 +12776400;0;0;0.0 +12780000;0;0;0.0 +12783600;0;0;0.0 +12787200;0;0;0.0 +12790800;0;0;0.0 +12794400;0;0;0.0 +12798000;0;0;0.0 +12801600;0;0;0.0 +12805200;0;0;0.0 +12808800;0;7447.4;0.0 +12812400;0;5161.6;0.0 +12816000;0;0;0.0 +12819600;0;0;0.0 +12823200;-504.3;0;0.0 +12826800;-650.3;0;0.0 +12830400;0;0;0.0 +12834000;0;0;0.0 +12837600;0;0;0.0 +12841200;0;0;0.0 +12844800;-2055.5;0;0.0 +12848400;0;0;0.0 +12852000;0;697.9;0.0 +12855600;0;0;0.0 +12859200;0;0;0.0 +12862800;0;0;0.0 +12866400;0;0;0.0 +12870000;0;0;0.0 +12873600;0;0;0.0 +12877200;0;0;0.0 +12880800;0;0;0.0 +12884400;0;0;0.0 +12888000;0;0;0.0 +12891600;0;0;0.0 +12895200;0;6863.2;0.0 +12898800;0;4484.9;0.0 +12902400;0;113.7;0.0 +12906000;0;0;0.0 +12909600;0;0;0.0 +12913200;-139.2;0;0.0 +12916800;-385.3;0;0.0 +12920400;-712.1;0;0.0 +12924000;-938.5;0;0.0 +12927600;-2930.7;0;0.0 +12931200;-4996.0;0;0.0 +12934800;-4717.5;0;0.0 +12938400;0;0;0.0 +12942000;0;0;0.0 +12945600;0;0;0.0 +12949200;0;0;0.0 +12952800;0;0;0.0 +12956400;0;0;0.0 +12960000;0;0;0.0 +12963600;0;0;0.0 +12967200;0;0;0.0 +12970800;0;0;0.0 +12974400;0;0;0.0 +12978000;0;0;0.0 +12981600;0;4181.0;0.0 +12985200;0;1255.7;0.0 +12988800;-3444.1;0;0.0 +12992400;-4609.7;0;0.0 +12996000;-4707.1;0;0.0 +12999600;-3760.0;0;0.0 +13003200;-2463.2;0;0.0 +13006800;-2484.9;0;0.0 +13010400;-3592.4;0;0.0 +13014000;-6014.5;0;0.0 +13017600;-9137.3;0;0.0 +13021200;-8019.0;0;0.0 +13024800;0;0;0.0 +13028400;0;0;0.0 +13032000;0;0;0.0 +13035600;0;0;0.0 +13039200;0;0;0.0 +13042800;0;0;0.0 +13046400;0;0;0.0 +13050000;0;0;0.0 +13053600;0;0;0.0 +13057200;0;0;0.0 +13060800;0;0;0.0 +13064400;0;0;0.0 +13068000;0;58.7;0.0 +13071600;0;0;0.0 +13075200;0;0;0.0 +13078800;0;0;0.0 +13082400;0;0;0.0 +13086000;-51.2;0;0.0 +13089600;-700.5;0;0.0 +13093200;-2385.5;0;0.0 +13096800;-4879.5;0;0.0 +13100400;-7926.3;0;0.0 +13104000;-10619.7;0;0.0 +13107600;-9943.4;0;0.0 +13111200;0;0;0.0 +13114800;0;0;0.0 +13118400;0;0;0.0 +13122000;0;0;0.0 +13125600;0;0;0.0 +13129200;0;0;0.0 +13132800;0;0;0.0 +13136400;0;0;0.0 +13140000;0;0;0.0 +13143600;0;0;0.0 +13147200;0;0;0.0 +13150800;0;0;0.0 +13154400;0;0;0.0 +13158000;-4.5;0;0.0 +13161600;-3471.2;0;0.0 +13165200;-6310.3;0;0.0 +13168800;-7773.3;0;0.0 +13172400;-7776.2;0;0.0 +13176000;-7326.5;0;0.0 +13179600;-8313.9;0;0.0 +13183200;-7386.2;0;0.0 +13186800;-7584.0;0;0.0 +13190400;-6602.3;0;0.0 +13194000;-3377.9;0;0.0 +13197600;0;0;0.0 +13201200;0;0;0.0 +13204800;0;0;0.0 +13208400;0;0;0.0 +13212000;0;0;0.0 +13215600;0;0;0.0 +13219200;0;0;0.0 +13222800;0;0;0.0 +13226400;0;0;0.0 +13230000;0;0;0.0 +13233600;0;0;0.0 +13237200;0;0;0.0 +13240800;0;0;0.0 +13244400;0;0;0.0 +13248000;0;0;0.0 +13251600;0;0;0.0 +13255200;0;0;0.0 +13258800;0;0;0.0 +13262400;0;0;0.0 +13266000;0;0;0.0 +13269600;0;0;0.0 +13273200;0;0;0.0 +13276800;0;0;0.0 +13280400;0;0;0.0 +13284000;0;0;0.0 +13287600;0;0;0.0 +13291200;0;0;0.0 +13294800;0;0;0.0 +13298400;0;0;0.0 +13302000;0;0;0.0 +13305600;0;0;0.0 +13309200;0;0;0.0 +13312800;0;0;0.0 +13316400;0;0;0.0 +13320000;0;0;0.0 +13323600;0;0;0.0 +13327200;0;0;0.0 +13330800;0;0;0.0 +13334400;0;0;0.0 +13338000;0;0;0.0 +13341600;0;0;0.0 +13345200;0;0;0.0 +13348800;0;0;0.0 +13352400;0;0;0.0 +13356000;0;0;0.0 +13359600;0;0;0.0 +13363200;0;0;0.0 +13366800;0;0;0.0 +13370400;0;0;0.0 +13374000;0;0;0.0 +13377600;0;0;0.0 +13381200;0;0;0.0 +13384800;0;0;0.0 +13388400;0;0;0.0 +13392000;0;0;0.0 +13395600;0;0;0.0 +13399200;0;0;0.0 +13402800;0;0;0.0 +13406400;0;0;0.0 +13410000;0;0;0.0 +13413600;0;5465.1;0.0 +13417200;0;3343.0;0.0 +13420800;0;0;0.0 +13424400;0;0;0.0 +13428000;0;0;0.0 +13431600;0;0;0.0 +13435200;-152.0;0;0.0 +13438800;-698.5;0;0.0 +13442400;-3019.2;0;0.0 +13446000;-4990.1;0;0.0 +13449600;-6822.9;0;0.0 +13453200;-7370.7;0;0.0 +13456800;0;0;0.0 +13460400;0;0;0.0 +13464000;0;0;0.0 +13467600;0;0;0.0 +13471200;0;0;0.0 +13474800;0;0;0.0 +13478400;0;0;0.0 +13482000;0;0;0.0 +13485600;0;0;0.0 +13489200;0;0;0.0 +13492800;0;0;0.0 +13496400;0;0;0.0 +13500000;0;7365.4;0.0 +13503600;0;3343.3;0.0 +13507200;-2453.5;0;0.0 +13510800;-3790.0;0;0.0 +13514400;-4600.3;0;0.0 +13518000;-4058.2;0;0.0 +13521600;-2532.4;0;0.0 +13525200;-2355.2;0;0.0 +13528800;-4342.6;0;0.0 +13532400;-7457.6;0;0.0 +13536000;-8384.5;0;0.0 +13539600;-8151.8;0;0.0 +13543200;0;0;0.0 +13546800;0;0;0.0 +13550400;0;0;0.0 +13554000;0;0;0.0 +13557600;0;0;0.0 +13561200;0;0;0.0 +13564800;0;0;0.0 +13568400;0;0;0.0 +13572000;0;0;0.0 +13575600;0;0;0.0 +13579200;0;0;0.0 +13582800;0;0;0.0 +13586400;0;797.5;0.0 +13590000;0;42.8;0.0 +13593600;0;0;0.0 +13597200;0;0;0.0 +13600800;0;0;0.0 +13604400;0;0;0.0 +13608000;0;0;0.0 +13611600;0;0;0.0 +13615200;0;0;0.0 +13618800;0;0;0.0 +13622400;0;0;0.0 +13626000;0;0;0.0 +13629600;0;0;0.0 +13633200;0;0;0.0 +13636800;0;0;0.0 +13640400;0;0;0.0 +13644000;0;0;0.0 +13647600;0;0;0.0 +13651200;0;0;0.0 +13654800;0;0;0.0 +13658400;0;0;0.0 +13662000;0;0;0.0 +13665600;0;0;0.0 +13669200;0;0;0.0 +13672800;0;76.1;0.0 +13676400;0;0;0.0 +13680000;0;0;0.0 +13683600;0;0;0.0 +13687200;0;0;0.0 +13690800;-23.8;0;0.0 +13694400;-197.0;0;0.0 +13698000;-596.8;0;0.0 +13701600;-1437.5;0;0.0 +13705200;-282.1;0;0.0 +13708800;-1356.2;0;0.0 +13712400;0;0;0.0 +13716000;0;0;0.0 +13719600;0;0;0.0 +13723200;0;0;0.0 +13726800;0;0;0.0 +13730400;0;0;0.0 +13734000;0;0;0.0 +13737600;0;0;0.0 +13741200;0;0;0.0 +13744800;0;0;0.0 +13748400;0;0;0.0 +13752000;0;0;0.0 +13755600;0;0;0.0 +13759200;0;1773.2;0.0 +13762800;0;295.1;0.0 +13766400;0;0;0.0 +13770000;-1984.5;0;0.0 +13773600;-2974.5;0;0.0 +13777200;-2660.1;0;0.0 +13780800;-1366.0;0;0.0 +13784400;-1263.4;0;0.0 +13788000;-969.7;0;0.0 +13791600;-2992.7;0;0.0 +13795200;-2959.8;0;0.0 +13798800;-4319.5;0;0.0 +13802400;0;0;0.0 +13806000;0;0;0.0 +13809600;0;0;0.0 +13813200;0;0;0.0 +13816800;0;0;0.0 +13820400;0;0;0.0 +13824000;0;0;0.0 +13827600;0;0;0.0 +13831200;0;0;0.0 +13834800;0;0;0.0 +13838400;0;0;0.0 +13842000;0;0;0.0 +13845600;0;0;0.0 +13849200;0;0;0.0 +13852800;0;0;0.0 +13856400;0;0;0.0 +13860000;0;0;0.0 +13863600;0;0;0.0 +13867200;0;0;0.0 +13870800;0;0;0.0 +13874400;0;0;0.0 +13878000;0;0;0.0 +13881600;0;0;0.0 +13885200;0;0;0.0 +13888800;0;0;0.0 +13892400;0;0;0.0 +13896000;0;0;0.0 +13899600;0;0;0.0 +13903200;0;0;0.0 +13906800;0;0;0.0 +13910400;0;0;0.0 +13914000;0;0;0.0 +13917600;0;0;0.0 +13921200;0;0;0.0 +13924800;0;0;0.0 +13928400;0;0;0.0 +13932000;0;0;0.0 +13935600;0;0;0.0 +13939200;0;0;0.0 +13942800;0;0;0.0 +13946400;0;0;0.0 +13950000;0;0;0.0 +13953600;0;0;0.0 +13957200;0;0;0.0 +13960800;0;0;0.0 +13964400;0;0;0.0 +13968000;-127.8;0;0.0 +13971600;-1446.4;0;0.0 +13975200;-1506.9;0;0.0 +13978800;-570.3;0;0.0 +13982400;0;0;0.0 +13986000;0;0;0.0 +13989600;0;0;0.0 +13993200;0;0;0.0 +13996800;0;0;0.0 +14000400;0;0;0.0 +14004000;0;0;0.0 +14007600;0;0;0.0 +14011200;0;0;0.0 +14014800;0;0;0.0 +14018400;-1248.0;3408.8;0.0 +14022000;-3499.3;1931.9;0.0 +14025600;-8534.7;0;0.0 +14029200;-11907.8;0;0.0 +14032800;-12946.2;0;0.0 +14036400;-12428.6;0;0.0 +14040000;-11151.3;0;0.0 +14043600;-12090.5;0;0.0 +14047200;-13379.6;0;0.0 +14050800;-14380.3;0;0.0 +14054400;-15294.1;0;0.0 +14058000;-12206.9;0;0.0 +14061600;0;0;0.0 +14065200;0;0;0.0 +14068800;0;0;0.0 +14072400;0;0;0.0 +14076000;0;0;0.0 +14079600;0;0;0.0 +14083200;0;0;0.0 +14086800;0;0;0.0 +14090400;0;0;0.0 +14094000;0;0;0.0 +14097600;0;0;0.0 +14101200;0;0;0.0 +14104800;0;1243.0;0.0 +14108400;0;689.2;0.0 +14112000;0;0;0.0 +14115600;0;0;0.0 +14119200;0;0;0.0 +14122800;0;0;0.0 +14126400;0;0;0.0 +14130000;0;0;0.0 +14133600;0;0;0.0 +14137200;0;0;0.0 +14140800;-189.1;0;0.0 +14144400;-1472.1;0;0.0 +14148000;0;0;0.0 +14151600;0;0;0.0 +14155200;0;0;0.0 +14158800;0;0;0.0 +14162400;0;0;0.0 +14166000;0;0;0.0 +14169600;0;0;0.0 +14173200;0;0;0.0 +14176800;0;0;0.0 +14180400;0;0;0.0 +14184000;0;0;0.0 +14187600;0;0;0.0 +14191200;0;10260.0;0.0 +14194800;0;4051.5;0.0 +14198400;-2694.1;58.5;0.0 +14202000;-3480.5;0;0.0 +14205600;-3485.6;0;0.0 +14209200;-2137.3;0;0.0 +14212800;-456.8;0;0.0 +14216400;-455.6;0;0.0 +14220000;-154.3;0;0.0 +14223600;-2043.7;0;0.0 +14227200;-4568.5;0;0.0 +14230800;-5465.2;0;0.0 +14234400;0;0;0.0 +14238000;0;0;0.0 +14241600;0;0;0.0 +14245200;0;0;0.0 +14248800;0;0;0.0 +14252400;0;0;0.0 +14256000;0;0;0.0 +14259600;0;0;0.0 +14263200;0;0;0.0 +14266800;0;0;0.0 +14270400;0;0;0.0 +14274000;0;0;0.0 +14277600;0;5301.8;0.0 +14281200;0;2266.1;0.0 +14284800;-1898.0;0;0.0 +14288400;-3174.8;0;0.0 +14292000;-3987.9;0;0.0 +14295600;-3048.2;0;0.0 +14299200;-2351.9;0;0.0 +14302800;-2128.9;0;0.0 +14306400;-2614.4;0;0.0 +14310000;-3527.4;0;0.0 +14313600;-6469.3;0;0.0 +14317200;-3138.2;0;0.0 +14320800;0;0;0.0 +14324400;0;0;0.0 +14328000;0;0;0.0 +14331600;0;0;0.0 +14335200;0;0;0.0 +14338800;0;0;0.0 +14342400;0;0;0.0 +14346000;0;0;0.0 +14349600;0;0;0.0 +14353200;0;0;0.0 +14356800;0;0;0.0 +14360400;0;0;0.0 +14364000;0;1510.7;0.0 +14367600;0;256.9;0.0 +14371200;-1557.0;0;0.0 +14374800;-2308.2;0;0.0 +14378400;-661.5;0;0.0 +14382000;-2363.5;0;0.0 +14385600;-2269.0;0;0.0 +14389200;-1989.0;0;0.0 +14392800;-4761.8;0;0.0 +14396400;-4335.7;0;0.0 +14400000;-4458.1;0;0.0 +14403600;-973.1;0;0.0 +14407200;0;0;0.0 +14410800;0;0;0.0 +14414400;0;0;0.0 +14418000;0;0;0.0 +14421600;0;0;0.0 +14425200;0;0;0.0 +14428800;0;0;0.0 +14432400;0;0;0.0 +14436000;0;0;0.0 +14439600;0;0;0.0 +14443200;0;0;0.0 +14446800;0;0;0.0 +14450400;0;0;0.0 +14454000;0;0;0.0 +14457600;0;0;0.0 +14461200;0;0;0.0 +14464800;0;0;0.0 +14468400;0;0;0.0 +14472000;0;0;0.0 +14475600;0;0;0.0 +14479200;0;0;0.0 +14482800;0;0;0.0 +14486400;0;0;0.0 +14490000;0;0;0.0 +14493600;0;0;0.0 +14497200;0;0;0.0 +14500800;0;0;0.0 +14504400;0;0;0.0 +14508000;0;0;0.0 +14511600;0;0;0.0 +14515200;0;0;0.0 +14518800;0;0;0.0 +14522400;0;0;0.0 +14526000;0;0;0.0 +14529600;0;0;0.0 +14533200;0;0;0.0 +14536800;0;0;0.0 +14540400;0;0;0.0 +14544000;0;0;0.0 +14547600;0;0;0.0 +14551200;0;0;0.0 +14554800;0;0;0.0 +14558400;0;0;0.0 +14562000;0;0;0.0 +14565600;0;0;0.0 +14569200;0;0;0.0 +14572800;0;0;0.0 +14576400;-218.9;0;0.0 +14580000;-178.8;0;0.0 +14583600;0;0;0.0 +14587200;0;0;0.0 +14590800;0;0;0.0 +14594400;0;0;0.0 +14598000;0;0;0.0 +14601600;0;0;0.0 +14605200;0;0;0.0 +14608800;0;0;0.0 +14612400;0;0;0.0 +14616000;0;0;0.0 +14619600;0;0;0.0 +14623200;-24.8;3404.7;0.0 +14626800;0;2464.9;0.0 +14630400;0;0;0.0 +14634000;-215.5;0;0.0 +14637600;-764.6;0;0.0 +14641200;-3267.2;0;0.0 +14644800;-4764.5;0;0.0 +14648400;-6088.9;0;0.0 +14652000;-7921.8;0;0.0 +14655600;-9914.4;0;0.0 +14659200;-12254.9;0;0.0 +14662800;-11157.7;0;0.0 +14666400;0;0;0.0 +14670000;0;0;0.0 +14673600;0;0;0.0 +14677200;0;0;0.0 +14680800;0;0;0.0 +14684400;0;0;0.0 +14688000;0;0;0.0 +14691600;0;0;0.0 +14695200;0;0;0.0 +14698800;0;0;0.0 +14702400;0;0;0.0 +14706000;0;0;0.0 +14709600;0;819.0;0.0 +14713200;-953.4;53.5;0.0 +14716800;-5130.4;0;0.0 +14720400;-7420.4;0;0.0 +14724000;-8576.6;0;0.0 +14727600;-7973.4;0;0.0 +14731200;-7019.0;0;0.0 +14734800;-8745.4;0;0.0 +14738400;-10302.2;0;0.0 +14742000;-12186.0;0;0.0 +14745600;-14003.6;0;0.0 +14749200;-12173.1;0;0.0 +14752800;0;0;0.0 +14756400;0;0;0.0 +14760000;0;0;0.0 +14763600;0;0;0.0 +14767200;0;0;0.0 +14770800;0;0;0.0 +14774400;0;0;0.0 +14778000;0;0;0.0 +14781600;0;0;0.0 +14785200;0;0;0.0 +14788800;0;0;0.0 +14792400;0;0;0.0 +14796000;0;0;0.0 +14799600;-1803.3;0;0.0 +14803200;-1914.7;0;0.0 +14806800;-797.8;0;0.0 +14810400;-946.9;0;0.0 +14814000;-1200.7;0;0.0 +14817600;-1279.0;0;0.0 +14821200;-2504.2;0;0.0 +14824800;-4979.7;0;0.0 +14828400;-7006.8;0;0.0 +14832000;-9663.2;0;0.0 +14835600;-9189.9;0;0.0 +14839200;0;0;0.0 +14842800;0;0;0.0 +14846400;0;0;0.0 +14850000;0;0;0.0 +14853600;0;0;0.0 +14857200;0;0;0.0 +14860800;0;0;0.0 +14864400;0;0;0.0 +14868000;0;0;0.0 +14871600;0;0;0.0 +14875200;0;0;0.0 +14878800;0;0;0.0 +14882400;0;0;0.0 +14886000;0;0;0.0 +14889600;-2076.0;0;0.0 +14893200;-4244.6;0;0.0 +14896800;-5571.1;0;0.0 +14900400;-4380.5;0;0.0 +14904000;-3036.1;0;0.0 +14907600;-3676.9;0;0.0 +14911200;-5377.8;0;0.0 +14914800;-7509.3;0;0.0 +14918400;-8990.0;0;0.0 +14922000;-8371.8;0;0.0 +14925600;0;0;0.0 +14929200;0;0;0.0 +14932800;0;0;0.0 +14936400;0;0;0.0 +14940000;0;0;0.0 +14943600;0;0;0.0 +14947200;0;0;0.0 +14950800;0;0;0.0 +14954400;0;0;0.0 +14958000;0;0;0.0 +14961600;0;0;0.0 +14965200;0;0;0.0 +14968800;0;0;0.0 +14972400;-1126.3;0;0.0 +14976000;-5263.3;0;0.0 +14979600;-6823.5;0;0.0 +14983200;-6483.2;0;0.0 +14986800;-4764.6;0;0.0 +14990400;-3367.6;0;0.0 +14994000;-3426.0;0;0.0 +14997600;-5038.6;0;0.0 +15001200;-7866.0;0;0.0 +15004800;-10102.3;0;0.0 +15008400;-8211.6;0;0.0 +15012000;0;0;0.0 +15015600;0;0;0.0 +15019200;0;0;0.0 +15022800;0;0;0.0 +15026400;0;0;0.0 +15030000;0;0;0.0 +15033600;0;0;0.0 +15037200;0;0;0.0 +15040800;0;0;0.0 +15044400;0;0;0.0 +15048000;0;0;0.0 +15051600;0;0;0.0 +15055200;0;0;0.0 +15058800;0;0;0.0 +15062400;0;0;0.0 +15066000;0;0;0.0 +15069600;0;0;0.0 +15073200;0;0;0.0 +15076800;0;0;0.0 +15080400;0;0;0.0 +15084000;0;0;0.0 +15087600;0;0;0.0 +15091200;0;0;0.0 +15094800;-437.5;0;0.0 +15098400;-607.2;0;0.0 +15102000;0;0;0.0 +15105600;0;0;0.0 +15109200;0;0;0.0 +15112800;0;0;0.0 +15116400;0;0;0.0 +15120000;0;0;0.0 +15123600;0;0;0.0 +15127200;0;0;0.0 +15130800;0;0;0.0 +15134400;0;0;0.0 +15138000;0;0;0.0 +15141600;0;0;0.0 +15145200;0;0;0.0 +15148800;0;0;0.0 +15152400;0;0;0.0 +15156000;0;0;0.0 +15159600;0;0;0.0 +15163200;0;0;0.0 +15166800;0;0;0.0 +15170400;0;0;0.0 +15174000;0;0;0.0 +15177600;0;0;0.0 +15181200;-859.2;0;0.0 +15184800;-1703.1;0;0.0 +15188400;-14.3;0;0.0 +15192000;0;0;0.0 +15195600;0;0;0.0 +15199200;0;0;0.0 +15202800;0;0;0.0 +15206400;0;0;0.0 +15210000;0;0;0.0 +15213600;0;0;0.0 +15217200;0;0;0.0 +15220800;0;0;0.0 +15224400;0;0;0.0 +15228000;-1000.3;2849.2;0.0 +15231600;-821.1;1781.6;0.0 +15235200;-2984.8;0;0.0 +15238800;-3714.9;0;0.0 +15242400;-4758.9;0;0.0 +15246000;-5653.7;0;0.0 +15249600;-6469.3;0;0.0 +15253200;-8719.6;0;0.0 +15256800;-10934.5;0;0.0 +15260400;-10459.2;0;0.0 +15264000;-12847.0;0;0.0 +15267600;-11258.1;0;0.0 +15271200;0;0;0.0 +15274800;0;0;0.0 +15278400;0;0;0.0 +15282000;0;0;0.0 +15285600;0;0;0.0 +15289200;0;0;0.0 +15292800;0;0;0.0 +15296400;0;0;0.0 +15300000;0;0;0.0 +15303600;0;0;0.0 +15307200;0;0;0.0 +15310800;0;0;0.0 +15314400;0;0;0.0 +15318000;0;0;0.0 +15321600;-3355.8;0;0.0 +15325200;-6507.9;0;0.0 +15328800;-8487.2;0;0.0 +15332400;-9443.5;0;0.0 +15336000;-8731.9;0;0.0 +15339600;-10489.2;0;0.0 +15343200;-11271.9;0;0.0 +15346800;-12330.1;0;0.0 +15350400;-13464.4;0;0.0 +15354000;-12824.9;0;0.0 +15357600;0;0;0.0 +15361200;0;0;0.0 +15364800;0;0;0.0 +15368400;0;0;0.0 +15372000;0;0;0.0 +15375600;0;0;0.0 +15379200;0;0;0.0 +15382800;0;0;0.0 +15386400;0;0;0.0 +15390000;0;0;0.0 +15393600;0;0;0.0 +15397200;0;0;0.0 +15400800;0;0;0.0 +15404400;-467.8;0;0.0 +15408000;-1621.8;0;0.0 +15411600;-2813.2;0;0.0 +15415200;-6304.3;0;0.0 +15418800;-7589.7;0;0.0 +15422400;-6037.6;0;0.0 +15426000;-7664.8;0;0.0 +15429600;-9261.6;0;0.0 +15433200;-11279.4;0;0.0 +15436800;-12753.1;0;0.0 +15440400;-11633.8;0;0.0 +15444000;0;0;0.0 +15447600;0;0;0.0 +15451200;0;0;0.0 +15454800;0;0;0.0 +15458400;0;0;0.0 +15462000;0;0;0.0 +15465600;0;0;0.0 +15469200;0;0;0.0 +15472800;0;0;0.0 +15476400;0;0;0.0 +15480000;0;0;0.0 +15483600;0;0;0.0 +15487200;0;0;0.0 +15490800;0;0;0.0 +15494400;-3059.0;0;0.0 +15498000;-6043.8;0;0.0 +15501600;-8167.6;0;0.0 +15505200;-9156.6;0;0.0 +15508800;-7295.3;0;0.0 +15512400;-8530.9;0;0.0 +15516000;-10434.9;0;0.0 +15519600;-11908.6;0;0.0 +15523200;-13562.1;0;0.0 +15526800;-9009.8;0;0.0 +15530400;0;0;0.0 +15534000;0;0;0.0 +15537600;0;0;0.0 +15541200;0;0;0.0 +15544800;0;0;0.0 +15548400;0;0;0.0 +15552000;0;0;0.0 +15555600;0;0;0.0 +15559200;0;0;0.0 +15562800;0;0;0.0 +15566400;0;0;0.0 +15570000;0;0;0.0 +15573600;0;0;0.0 +15577200;-1500.6;0;0.0 +15580800;-6162.7;0;0.0 +15584400;-8356.6;0;0.0 +15588000;-8454.5;0;0.0 +15591600;-7909.2;0;0.0 +15595200;-6048.3;0;0.0 +15598800;-6899.4;0;0.0 +15602400;-8419.2;0;0.0 +15606000;-10684.5;0;0.0 +15609600;-12638.1;0;0.0 +15613200;-11298.3;0;0.0 +15616800;0;0;0.0 +15620400;0;0;0.0 +15624000;0;0;0.0 +15627600;0;0;0.0 +15631200;0;0;0.0 +15634800;0;0;0.0 +15638400;0;0;0.0 +15642000;0;0;0.0 +15645600;0;0;0.0 +15649200;0;0;0.0 +15652800;0;0;0.0 +15656400;0;0;0.0 +15660000;0;0;0.0 +15663600;0;0;0.0 +15667200;0;0;0.0 +15670800;0;0;0.0 +15674400;0;0;0.0 +15678000;0;0;0.0 +15681600;0;0;0.0 +15685200;0;0;0.0 +15688800;0;0;0.0 +15692400;0;0;0.0 +15696000;0;0;0.0 +15699600;0;0;0.0 +15703200;0;0;0.0 +15706800;0;0;0.0 +15710400;0;0;0.0 +15714000;0;0;0.0 +15717600;0;0;0.0 +15721200;0;0;0.0 +15724800;0;0;0.0 +15728400;0;0;0.0 +15732000;0;0;0.0 +15735600;0;0;0.0 +15739200;0;0;0.0 +15742800;0;0;0.0 +15746400;0;0;0.0 +15750000;0;0;0.0 +15753600;0;0;0.0 +15757200;0;0;0.0 +15760800;0;0;0.0 +15764400;0;0;0.0 +15768000;0;0;0.0 +15771600;0;0;0.0 +15775200;0;0;0.0 +15778800;0;0;0.0 +15782400;-749.7;0;0.0 +15786000;-2783.8;0;0.0 +15789600;-2818.9;0;0.0 +15793200;-1188.3;0;0.0 +15796800;0;0;0.0 +15800400;0;0;0.0 +15804000;0;0;0.0 +15807600;0;0;0.0 +15811200;0;0;0.0 +15814800;0;0;0.0 +15818400;0;0;0.0 +15822000;0;0;0.0 +15825600;0;0;0.0 +15829200;0;0;0.0 +15832800;-19.6;4866.2;0.0 +15836400;-525.3;3588.8;0.0 +15840000;-5364.5;0;0.0 +15843600;-8256.6;0;0.0 +15847200;-9431.9;0;0.0 +15850800;-9095.1;0;0.0 +15854400;-7556.0;0;0.0 +15858000;-8583.3;0;0.0 +15861600;-10390.5;0;0.0 +15865200;-12708.2;0;0.0 +15868800;-14462.0;0;0.0 +15872400;-12890.1;0;0.0 +15876000;0;0;0.0 +15879600;0;0;0.0 +15883200;0;0;0.0 +15886800;0;0;0.0 +15890400;0;0;0.0 +15894000;0;0;0.0 +15897600;0;0;0.0 +15901200;0;0;0.0 +15904800;0;0;0.0 +15908400;0;0;0.0 +15912000;0;0;0.0 +15915600;0;0;0.0 +15919200;0;253.5;0.0 +15922800;-1515.2;0;0.0 +15926400;-5811.0;0;0.0 +15930000;-8226.8;0;0.0 +15933600;-9209.5;0;0.0 +15937200;-8057.5;0;0.0 +15940800;-6600.4;0;0.0 +15944400;-7967.5;0;0.0 +15948000;-10418.6;0;0.0 +15951600;-11070.2;0;0.0 +15955200;-13065.4;0;0.0 +15958800;-8653.8;0;0.0 +15962400;0;0;0.0 +15966000;0;0;0.0 +15969600;0;0;0.0 +15973200;0;0;0.0 +15976800;0;0;0.0 +15980400;0;0;0.0 +15984000;0;0;0.0 +15987600;0;0;0.0 +15991200;0;0;0.0 +15994800;0;0;0.0 +15998400;0;0;0.0 +16002000;0;0;0.0 +16005600;0;0;0.0 +16009200;0;0;0.0 +16012800;0;0;0.0 +16016400;-849.9;0;0.0 +16020000;-2568.4;0;0.0 +16023600;-3488.4;0;0.0 +16027200;-3622.0;0;0.0 +16030800;-3240.3;0;0.0 +16034400;-3243.6;0;0.0 +16038000;-6430.8;0;0.0 +16041600;-9098.7;0;0.0 +16045200;-7936.2;0;0.0 +16048800;0;0;0.0 +16052400;0;0;0.0 +16056000;0;0;0.0 +16059600;0;0;0.0 +16063200;0;0;0.0 +16066800;0;0;0.0 +16070400;0;0;0.0 +16074000;0;0;0.0 +16077600;0;0;0.0 +16081200;0;0;0.0 +16084800;0;0;0.0 +16088400;0;0;0.0 +16092000;0;0;0.0 +16095600;0;0;0.0 +16099200;-4165.6;0;0.0 +16102800;-6209.3;0;0.0 +16106400;-6587.1;0;0.0 +16110000;-5643.7;0;0.0 +16113600;-4072.9;0;0.0 +16117200;-4277.9;0;0.0 +16120800;-6648.3;0;0.0 +16124400;-8838.0;0;0.0 +16128000;-11247.6;0;0.0 +16131600;-10094.3;0;0.0 +16135200;0;0;0.0 +16138800;0;0;0.0 +16142400;0;0;0.0 +16146000;0;0;0.0 +16149600;0;0;0.0 +16153200;0;0;0.0 +16156800;0;0;0.0 +16160400;0;0;0.0 +16164000;0;0;0.0 +16167600;0;0;0.0 +16171200;0;0;0.0 +16174800;0;0;0.0 +16178400;0;0;0.0 +16182000;0;0;0.0 +16185600;-3636.7;0;0.0 +16189200;-3156.9;0;0.0 +16192800;-4828.6;0;0.0 +16196400;-4437.7;0;0.0 +16200000;-4324.1;0;0.0 +16203600;-5503.4;0;0.0 +16207200;-6507.2;0;0.0 +16210800;-8885.2;0;0.0 +16214400;-9497.6;0;0.0 +16218000;-3452.1;0;0.0 +16221600;0;0;0.0 +16225200;0;0;0.0 +16228800;0;0;0.0 +16232400;0;0;0.0 +16236000;0;0;0.0 +16239600;0;0;0.0 +16243200;0;0;0.0 +16246800;0;0;0.0 +16250400;0;0;0.0 +16254000;0;0;0.0 +16257600;0;0;0.0 +16261200;0;0;0.0 +16264800;0;0;0.0 +16268400;0;0;0.0 +16272000;0;0;0.0 +16275600;0;0;0.0 +16279200;0;0;0.0 +16282800;0;0;0.0 +16286400;0;0;0.0 +16290000;0;0;0.0 +16293600;0;0;0.0 +16297200;0;0;0.0 +16300800;0;0;0.0 +16304400;-1141.6;0;0.0 +16308000;-2233.5;0;0.0 +16311600;-1376.9;0;0.0 +16315200;0;0;0.0 +16318800;0;0;0.0 +16322400;0;0;0.0 +16326000;0;0;0.0 +16329600;0;0;0.0 +16333200;0;0;0.0 +16336800;0;0;0.0 +16340400;0;0;0.0 +16344000;0;0;0.0 +16347600;0;0;0.0 +16351200;0;0;0.0 +16354800;0;0;0.0 +16358400;0;0;0.0 +16362000;0;0;0.0 +16365600;0;0;0.0 +16369200;0;0;0.0 +16372800;0;0;0.0 +16376400;0;0;0.0 +16380000;0;0;0.0 +16383600;0;0;0.0 +16387200;0;0;0.0 +16390800;0;0;0.0 +16394400;0;0;0.0 +16398000;0;0;0.0 +16401600;0;0;0.0 +16405200;0;0;0.0 +16408800;0;0;0.0 +16412400;0;0;0.0 +16416000;0;0;0.0 +16419600;0;0;0.0 +16423200;0;0;0.0 +16426800;0;0;0.0 +16430400;0;0;0.0 +16434000;0;0;0.0 +16437600;0;5020.7;0.0 +16441200;-2087.4;3299.4;0.0 +16444800;-6633.4;0;0.0 +16448400;-7820.2;0;0.0 +16452000;-7999.7;0;0.0 +16455600;-8323.6;0;0.0 +16459200;-7105.7;0;0.0 +16462800;-8230.4;0;0.0 +16466400;-9929.9;0;0.0 +16470000;-11784.4;0;0.0 +16473600;-12956.9;0;0.0 +16477200;-12720.2;0;0.0 +16480800;0;0;0.0 +16484400;0;0;0.0 +16488000;0;0;0.0 +16491600;0;0;0.0 +16495200;0;0;0.0 +16498800;0;0;0.0 +16502400;0;0;0.0 +16506000;0;0;0.0 +16509600;0;0;0.0 +16513200;0;0;0.0 +16516800;0;0;0.0 +16520400;0;0;0.0 +16524000;-120.6;0;0.0 +16527600;-77.1;0;0.0 +16531200;0;0;0.0 +16534800;-798.0;0;0.0 +16538400;-5077.5;0;0.0 +16542000;-7635.8;0;0.0 +16545600;-6750.8;0;0.0 +16549200;-8356.1;0;0.0 +16552800;-10012.5;0;0.0 +16556400;-10164.2;0;0.0 +16560000;-11544.4;0;0.0 +16563600;-11007.6;0;0.0 +16567200;0;0;0.0 +16570800;0;0;0.0 +16574400;0;0;0.0 +16578000;0;0;0.0 +16581600;0;0;0.0 +16585200;0;0;0.0 +16588800;0;0;0.0 +16592400;0;0;0.0 +16596000;0;0;0.0 +16599600;0;0;0.0 +16603200;0;0;0.0 +16606800;0;0;0.0 +16610400;0;0;0.0 +16614000;-1098.4;0;0.0 +16617600;-4871.3;0;0.0 +16621200;-7194.0;0;0.0 +16624800;-7726.8;0;0.0 +16628400;-7477.3;0;0.0 +16632000;-6717.9;0;0.0 +16635600;-7395.6;0;0.0 +16639200;-8353.7;0;0.0 +16642800;-10143.3;0;0.0 +16646400;-10492.6;0;0.0 +16650000;-6612.5;0;0.0 +16653600;0;0;0.0 +16657200;0;0;0.0 +16660800;0;0;0.0 +16664400;0;0;0.0 +16668000;0;0;0.0 +16671600;0;0;0.0 +16675200;0;0;0.0 +16678800;0;0;0.0 +16682400;0;0;0.0 +16686000;0;0;0.0 +16689600;0;0;0.0 +16693200;0;0;0.0 +16696800;0;0;0.0 +16700400;-1922.1;0;0.0 +16704000;-6195.4;0;0.0 +16707600;-8412.5;0;0.0 +16711200;-8180.5;0;0.0 +16714800;-5798.6;0;0.0 +16718400;-5078.4;0;0.0 +16722000;-6307.4;0;0.0 +16725600;-8169.6;0;0.0 +16729200;-10439.2;0;0.0 +16732800;-13166.1;0;0.0 +16736400;-12168.8;0;0.0 +16740000;0;0;0.0 +16743600;0;0;0.0 +16747200;0;0;0.0 +16750800;0;0;0.0 +16754400;0;0;0.0 +16758000;0;0;0.0 +16761600;0;0;0.0 +16765200;0;0;0.0 +16768800;0;0;0.0 +16772400;0;0;0.0 +16776000;0;0;0.0 +16779600;0;0;0.0 +16783200;0;0;0.0 +16786800;-494.8;0;0.0 +16790400;-5380.0;0;0.0 +16794000;-7873.7;0;0.0 +16797600;-8486.6;0;0.0 +16801200;-8560.9;0;0.0 +16804800;-7189.3;0;0.0 +16808400;-8481.3;0;0.0 +16812000;-10469.1;0;0.0 +16815600;-12690.4;0;0.0 +16819200;-12584.4;0;0.0 +16822800;-10827.3;0;0.0 +16826400;0;0;0.0 +16830000;0;0;0.0 +16833600;0;0;0.0 +16837200;0;0;0.0 +16840800;0;0;0.0 +16844400;0;0;0.0 +16848000;0;0;0.0 +16851600;0;0;0.0 +16855200;0;0;0.0 +16858800;0;0;0.0 +16862400;0;0;0.0 +16866000;0;0;0.0 +16869600;0;0;0.0 +16873200;0;0;0.0 +16876800;0;0;0.0 +16880400;0;0;0.0 +16884000;0;0;0.0 +16887600;0;0;0.0 +16891200;0;0;0.0 +16894800;0;0;0.0 +16898400;0;0;0.0 +16902000;0;0;0.0 +16905600;0;0;0.0 +16909200;0;0;0.0 +16912800;0;0;0.0 +16916400;0;0;0.0 +16920000;0;0;0.0 +16923600;0;0;0.0 +16927200;0;0;0.0 +16930800;0;0;0.0 +16934400;0;0;0.0 +16938000;0;0;0.0 +16941600;0;0;0.0 +16945200;0;0;0.0 +16948800;0;0;0.0 +16952400;0;0;0.0 +16956000;0;0;0.0 +16959600;0;0;0.0 +16963200;0;0;0.0 +16966800;0;0;0.0 +16970400;0;0;0.0 +16974000;0;0;0.0 +16977600;0;0;0.0 +16981200;0;0;0.0 +16984800;0;0;0.0 +16988400;0;0;0.0 +16992000;-305.0;0;0.0 +16995600;-1842.4;0;0.0 +16999200;-1583.8;0;0.0 +17002800;0;0;0.0 +17006400;0;0;0.0 +17010000;0;0;0.0 +17013600;0;0;0.0 +17017200;0;0;0.0 +17020800;0;0;0.0 +17024400;0;0;0.0 +17028000;0;0;0.0 +17031600;0;0;0.0 +17035200;0;0;0.0 +17038800;0;0;0.0 +17042400;-2190.2;1310.6;0.0 +17046000;-6350.7;290.5;0.0 +17049600;-12181.0;0;0.0 +17053200;-13516.4;0;0.0 +17056800;-12130.6;0;0.0 +17060400;-12413.2;0;0.0 +17064000;-11062.6;0;0.0 +17067600;-11941.8;0;0.0 +17071200;-12822.4;0;0.0 +17074800;-11966.5;0;0.0 +17078400;-8028.6;0;0.0 +17082000;-7536.1;0;0.0 +17085600;0;0;0.0 +17089200;0;0;0.0 +17092800;0;0;0.0 +17096400;0;0;0.0 +17100000;0;0;0.0 +17103600;0;0;0.0 +17107200;0;0;0.0 +17110800;0;0;0.0 +17114400;0;0;0.0 +17118000;0;0;0.0 +17121600;0;0;0.0 +17125200;0;0;0.0 +17128800;0;0;0.0 +17132400;-2776.1;0;0.0 +17136000;-5031.4;0;0.0 +17139600;-8165.1;0;0.0 +17143200;-10094.5;0;0.0 +17146800;-10113.4;0;0.0 +17150400;-8247.8;0;0.0 +17154000;-9767.5;0;0.0 +17157600;-11387.2;0;0.0 +17161200;-12786.9;0;0.0 +17164800;-15504.8;0;0.0 +17168400;-14289.7;0;0.0 +17172000;0;0;0.0 +17175600;0;0;0.0 +17179200;0;0;0.0 +17182800;0;0;0.0 +17186400;0;0;0.0 +17190000;0;0;0.0 +17193600;0;0;0.0 +17197200;0;0;0.0 +17200800;0;0;0.0 +17204400;0;0;0.0 +17208000;0;0;0.0 +17211600;0;0;0.0 +17215200;-513.2;0;0.0 +17218800;-214.8;0;0.0 +17222400;-436.5;0;0.0 +17226000;-1877.6;0;0.0 +17229600;-7020.3;0;0.0 +17233200;-9274.0;0;0.0 +17236800;-8443.4;0;0.0 +17240400;-10002.5;0;0.0 +17244000;-11966.5;0;0.0 +17247600;-13931.4;0;0.0 +17251200;-14360.8;0;0.0 +17254800;-10041.1;0;0.0 +17258400;0;0;0.0 +17262000;0;0;0.0 +17265600;0;0;0.0 +17269200;0;0;0.0 +17272800;0;0;0.0 +17276400;0;0;0.0 +17280000;0;0;0.0 +17283600;0;0;0.0 +17287200;0;0;0.0 +17290800;0;0;0.0 +17294400;0;0;0.0 +17298000;0;0;0.0 +17301600;-491.6;0;0.0 +17305200;-724.8;0;0.0 +17308800;-3318.7;0;0.0 +17312400;-7152.7;0;0.0 +17316000;-10376.7;0;0.0 +17319600;-11945.8;0;0.0 +17323200;-10050.5;0;0.0 +17326800;-11651.5;0;0.0 +17330400;-12792.1;0;0.0 +17334000;-10279.4;0;0.0 +17337600;-10689.6;0;0.0 +17341200;-8462.7;0;0.0 +17344800;0;0;0.0 +17348400;0;0;0.0 +17352000;0;0;0.0 +17355600;0;0;0.0 +17359200;0;0;0.0 +17362800;0;0;0.0 +17366400;0;0;0.0 +17370000;0;0;0.0 +17373600;0;0;0.0 +17377200;0;0;0.0 +17380800;0;0;0.0 +17384400;0;0;0.0 +17388000;-995.9;0;0.0 +17391600;-392.4;0;0.0 +17395200;-3107.4;0;0.0 +17398800;-8439.9;0;0.0 +17402400;-12427.9;0;0.0 +17406000;-12675.1;0;0.0 +17409600;-11084.5;0;0.0 +17413200;-12428.2;0;0.0 +17416800;-14837.0;0;0.0 +17420400;-13044.4;0;0.0 +17424000;-12041.9;0;0.0 +17427600;-10906.6;0;0.0 +17431200;0;0;0.0 +17434800;0;0;0.0 +17438400;0;0;0.0 +17442000;0;0;0.0 +17445600;0;0;0.0 +17449200;0;0;0.0 +17452800;0;0;0.0 +17456400;0;0;0.0 +17460000;0;0;0.0 +17463600;0;0;0.0 +17467200;0;0;0.0 +17470800;0;0;0.0 +17474400;0;0;0.0 +17478000;0;0;0.0 +17481600;0;0;0.0 +17485200;0;0;0.0 +17488800;0;0;0.0 +17492400;0;0;0.0 +17496000;0;0;0.0 +17499600;0;0;0.0 +17503200;0;0;0.0 +17506800;0;0;0.0 +17510400;0;0;0.0 +17514000;0;0;0.0 +17517600;0;0;0.0 +17521200;0;0;0.0 +17524800;0;0;0.0 +17528400;0;0;0.0 +17532000;0;0;0.0 +17535600;0;0;0.0 +17539200;0;0;0.0 +17542800;0;0;0.0 +17546400;0;0;0.0 +17550000;0;0;0.0 +17553600;0;0;0.0 +17557200;0;0;0.0 +17560800;0;0;0.0 +17564400;0;0;0.0 +17568000;0;0;0.0 +17571600;0;0;0.0 +17575200;0;0;0.0 +17578800;0;0;0.0 +17582400;0;0;0.0 +17586000;0;0;0.0 +17589600;0;0;0.0 +17593200;0;0;0.0 +17596800;0;0;0.0 +17600400;0;0;0.0 +17604000;0;0;0.0 +17607600;0;0;0.0 +17611200;0;0;0.0 +17614800;0;0;0.0 +17618400;0;0;0.0 +17622000;0;0;0.0 +17625600;0;0;0.0 +17629200;0;0;0.0 +17632800;0;0;0.0 +17636400;0;0;0.0 +17640000;0;0;0.0 +17643600;0;0;0.0 +17647200;0;4034.7;0.0 +17650800;0;2939.3;0.0 +17654400;-2768.5;0;0.0 +17658000;-5479.1;0;0.0 +17661600;-7529.9;0;0.0 +17665200;-8644.8;0;0.0 +17668800;-7652.9;0;0.0 +17672400;-9017.1;0;0.0 +17676000;-10734.5;0;0.0 +17679600;-9876.9;0;0.0 +17683200;-12101.1;0;0.0 +17686800;-9422.1;0;0.0 +17690400;0;0;0.0 +17694000;0;0;0.0 +17697600;0;0;0.0 +17701200;0;0;0.0 +17704800;0;0;0.0 +17708400;0;0;0.0 +17712000;0;0;0.0 +17715600;0;0;0.0 +17719200;0;0;0.0 +17722800;0;0;0.0 +17726400;0;0;0.0 +17730000;0;0;0.0 +17733600;0;404.1;0.0 +17737200;0;0;0.0 +17740800;-112.7;0;0.0 +17744400;-533.9;0;0.0 +17748000;-4734.3;0;0.0 +17751600;-6152.8;0;0.0 +17755200;-5854.1;0;0.0 +17758800;-7254.5;0;0.0 +17762400;-9312.4;0;0.0 +17766000;-11506.0;0;0.0 +17769600;-13403.6;0;0.0 +17773200;-11713.3;0;0.0 +17776800;0;0;0.0 +17780400;0;0;0.0 +17784000;0;0;0.0 +17787600;0;0;0.0 +17791200;0;0;0.0 +17794800;0;0;0.0 +17798400;0;0;0.0 +17802000;0;0;0.0 +17805600;0;0;0.0 +17809200;0;0;0.0 +17812800;0;0;0.0 +17816400;0;0;0.0 +17820000;-240.8;0;0.0 +17823600;-183.8;0;0.0 +17827200;-146.8;0;0.0 +17830800;-1759.0;0;0.0 +17834400;-5075.6;0;0.0 +17838000;-8216.4;0;0.0 +17841600;-7201.0;0;0.0 +17845200;-7957.7;0;0.0 +17848800;-9451.2;0;0.0 +17852400;-12179.5;0;0.0 +17856000;-13001.6;0;0.0 +17859600;-7157.6;0;0.0 +17863200;0;0;0.0 +17866800;0;0;0.0 +17870400;0;0;0.0 +17874000;0;0;0.0 +17877600;0;0;0.0 +17881200;0;0;0.0 +17884800;0;0;0.0 +17888400;0;0;0.0 +17892000;0;0;0.0 +17895600;0;0;0.0 +17899200;0;0;0.0 +17902800;0;0;0.0 +17906400;0;0;0.0 +17910000;0;0;0.0 +17913600;0;0;0.0 +17917200;-2704.5;0;0.0 +17920800;-4779.3;0;0.0 +17924400;-6991.3;0;0.0 +17928000;-7528.5;0;0.0 +17931600;-9518.0;0;0.0 +17935200;-11148.2;0;0.0 +17938800;-11991.2;0;0.0 +17942400;-11679.8;0;0.0 +17946000;-7660.9;0;0.0 +17949600;0;0;0.0 +17953200;0;0;0.0 +17956800;0;0;0.0 +17960400;0;0;0.0 +17964000;0;0;0.0 +17967600;0;0;0.0 +17971200;0;0;0.0 +17974800;0;0;0.0 +17978400;0;0;0.0 +17982000;0;0;0.0 +17985600;0;0;0.0 +17989200;0;0;0.0 +17992800;0;0;0.0 +17996400;0;0;0.0 +18000000;0;0;0.0 +18003600;-60.4;0;0.0 +18007200;-303.0;0;0.0 +18010800;-716.2;0;0.0 +18014400;-650.4;0;0.0 +18018000;-2919.6;0;0.0 +18021600;-3502.5;0;0.0 +18025200;-3206.3;0;0.0 +18028800;-2859.3;0;0.0 +18032400;-386.3;0;0.0 +18036000;0;0;0.0 +18039600;0;0;0.0 +18043200;0;0;0.0 +18046800;0;0;0.0 +18050400;0;0;0.0 +18054000;0;0;0.0 +18057600;0;0;0.0 +18061200;0;0;0.0 +18064800;0;0;0.0 +18068400;0;0;0.0 +18072000;0;0;0.0 +18075600;0;0;0.0 +18079200;0;0;0.0 +18082800;0;0;0.0 +18086400;0;0;0.0 +18090000;0;0;0.0 +18093600;0;0;0.0 +18097200;0;0;0.0 +18100800;0;0;0.0 +18104400;0;0;0.0 +18108000;0;0;0.0 +18111600;0;0;0.0 +18115200;0;0;0.0 +18118800;0;0;0.0 +18122400;-534.3;0;0.0 +18126000;0;0;0.0 +18129600;0;0;0.0 +18133200;0;0;0.0 +18136800;0;0;0.0 +18140400;0;0;0.0 +18144000;0;0;0.0 +18147600;0;0;0.0 +18151200;0;0;0.0 +18154800;0;0;0.0 +18158400;0;0;0.0 +18162000;0;0;0.0 +18165600;0;0;0.0 +18169200;0;0;0.0 +18172800;0;0;0.0 +18176400;0;0;0.0 +18180000;0;0;0.0 +18183600;0;0;0.0 +18187200;0;0;0.0 +18190800;0;0;0.0 +18194400;0;0;0.0 +18198000;0;0;0.0 +18201600;-10.1;0;0.0 +18205200;-602.5;0;0.0 +18208800;-537.1;0;0.0 +18212400;0;0;0.0 +18216000;0;0;0.0 +18219600;0;0;0.0 +18223200;0;0;0.0 +18226800;0;0;0.0 +18230400;0;0;0.0 +18234000;0;0;0.0 +18237600;0;0;0.0 +18241200;0;0;0.0 +18244800;0;0;0.0 +18248400;0;0;0.0 +18252000;-201.3;3231.1;0.0 +18255600;-2304.4;2177.3;0.0 +18259200;-6146.1;0;0.0 +18262800;-8922.1;0;0.0 +18266400;-7996.8;0;0.0 +18270000;-9374.0;0;0.0 +18273600;-8480.1;0;0.0 +18277200;-9784.3;0;0.0 +18280800;-11166.2;0;0.0 +18284400;-12531.7;0;0.0 +18288000;-13523.8;0;0.0 +18291600;-13296.0;0;0.0 +18295200;0;0;0.0 +18298800;0;0;0.0 +18302400;0;0;0.0 +18306000;0;0;0.0 +18309600;0;0;0.0 +18313200;0;0;0.0 +18316800;0;0;0.0 +18320400;0;0;0.0 +18324000;0;0;0.0 +18327600;0;0;0.0 +18331200;0;0;0.0 +18334800;0;0;0.0 +18338400;0;497.8;0.0 +18342000;0;39.7;0.0 +18345600;-1912.2;0;0.0 +18349200;-4522.7;0;0.0 +18352800;-6919.4;0;0.0 +18356400;-6821.0;0;0.0 +18360000;-6688.1;0;0.0 +18363600;-8341.3;0;0.0 +18367200;-9926.9;0;0.0 +18370800;-11753.1;0;0.0 +18374400;-12772.0;0;0.0 +18378000;-11123.7;0;0.0 +18381600;0;0;0.0 +18385200;0;0;0.0 +18388800;0;0;0.0 +18392400;0;0;0.0 +18396000;0;0;0.0 +18399600;0;0;0.0 +18403200;0;0;0.0 +18406800;0;0;0.0 +18410400;0;0;0.0 +18414000;0;0;0.0 +18417600;0;0;0.0 +18421200;0;0;0.0 +18424800;0;3.4;0.0 +18428400;-1340.9;0;0.0 +18432000;-5334.5;0;0.0 +18435600;-8047.8;0;0.0 +18439200;-5684.5;0;0.0 +18442800;-5828.3;0;0.0 +18446400;-5033.6;0;0.0 +18450000;-6277.1;0;0.0 +18453600;-8019.3;0;0.0 +18457200;-10105.8;0;0.0 +18460800;-12536.9;0;0.0 +18464400;-11811.1;0;0.0 +18468000;0;0;0.0 +18471600;0;0;0.0 +18475200;0;0;0.0 +18478800;0;0;0.0 +18482400;0;0;0.0 +18486000;0;0;0.0 +18489600;0;0;0.0 +18493200;0;0;0.0 +18496800;0;0;0.0 +18500400;0;0;0.0 +18504000;0;0;0.0 +18507600;0;0;0.0 +18511200;0;63.2;0.0 +18514800;0;0;0.0 +18518400;-2647.3;0;0.0 +18522000;-5170.4;0;0.0 +18525600;-7267.5;0;0.0 +18529200;-7449.8;0;0.0 +18532800;-6338.9;0;0.0 +18536400;-7859.5;0;0.0 +18540000;-10132.2;0;0.0 +18543600;-11599.8;0;0.0 +18547200;-13011.5;0;0.0 +18550800;-11944.4;0;0.0 +18554400;0;0;0.0 +18558000;0;0;0.0 +18561600;0;0;0.0 +18565200;0;0;0.0 +18568800;0;0;0.0 +18572400;0;0;0.0 +18576000;0;0;0.0 +18579600;0;0;0.0 +18583200;0;0;0.0 +18586800;0;0;0.0 +18590400;0;0;0.0 +18594000;0;0;0.0 +18597600;0;0;0.0 +18601200;-637.4;0;0.0 +18604800;-5128.1;0;0.0 +18608400;-8077.8;0;0.0 +18612000;-8407.0;0;0.0 +18615600;-7720.9;0;0.0 +18619200;-6747.2;0;0.0 +18622800;-8420.8;0;0.0 +18626400;-10120.6;0;0.0 +18630000;-12132.9;0;0.0 +18633600;-14341.3;0;0.0 +18637200;-13398.1;0;0.0 +18640800;0;0;0.0 +18644400;0;0;0.0 +18648000;0;0;0.0 +18651600;0;0;0.0 +18655200;0;0;0.0 +18658800;0;0;0.0 +18662400;0;0;0.0 +18666000;0;0;0.0 +18669600;0;0;0.0 +18673200;0;0;0.0 +18676800;0;0;0.0 +18680400;0;0;0.0 +18684000;0;0;0.0 +18687600;0;0;0.0 +18691200;0;0;0.0 +18694800;0;0;0.0 +18698400;0;0;0.0 +18702000;0;0;0.0 +18705600;0;0;0.0 +18709200;0;0;0.0 +18712800;0;0;0.0 +18716400;0;0;0.0 +18720000;-131.4;0;0.0 +18723600;0;0;0.0 +18727200;0;0;0.0 +18730800;0;0;0.0 +18734400;0;0;0.0 +18738000;0;0;0.0 +18741600;0;0;0.0 +18745200;0;0;0.0 +18748800;0;0;0.0 +18752400;0;0;0.0 +18756000;0;0;0.0 +18759600;0;0;0.0 +18763200;0;0;0.0 +18766800;0;0;0.0 +18770400;0;0;0.0 +18774000;0;0;0.0 +18777600;0;0;0.0 +18781200;0;0;0.0 +18784800;0;0;0.0 +18788400;0;0;0.0 +18792000;0;0;0.0 +18795600;0;0;0.0 +18799200;0;0;0.0 +18802800;0;0;0.0 +18806400;0;0;0.0 +18810000;-1196.6;0;0.0 +18813600;0;0;0.0 +18817200;0;0;0.0 +18820800;0;0;0.0 +18824400;0;0;0.0 +18828000;0;0;0.0 +18831600;0;0;0.0 +18835200;0;0;0.0 +18838800;0;0;0.0 +18842400;0;0;0.0 +18846000;0;0;0.0 +18849600;0;0;0.0 +18853200;0;0;0.0 +18856800;-847.0;2091.3;0.0 +18860400;-287.7;1223.2;0.0 +18864000;-2177.0;0;0.0 +18867600;-3372.3;0;0.0 +18871200;-4933.9;0;0.0 +18874800;-4696.6;0;0.0 +18878400;-5311.4;0;0.0 +18882000;-5918.5;0;0.0 +18885600;-6465.0;0;0.0 +18889200;-8540.9;0;0.0 +18892800;-10694.6;0;0.0 +18896400;-5376.2;0;0.0 +18900000;0;0;0.0 +18903600;0;0;0.0 +18907200;0;0;0.0 +18910800;0;0;0.0 +18914400;0;0;0.0 +18918000;0;0;0.0 +18921600;0;0;0.0 +18925200;0;0;0.0 +18928800;0;0;0.0 +18932400;0;0;0.0 +18936000;0;0;0.0 +18939600;0;0;0.0 +18943200;0;0;0.0 +18946800;-169.7;0;0.0 +18950400;-3383.5;0;0.0 +18954000;-6442.5;0;0.0 +18957600;-8263.3;0;0.0 +18961200;-8587.4;0;0.0 +18964800;-7390.6;0;0.0 +18968400;-8736.3;0;0.0 +18972000;-10554.7;0;0.0 +18975600;-12266.5;0;0.0 +18979200;-14049.0;0;0.0 +18982800;-13155.7;0;0.0 +18986400;0;0;0.0 +18990000;0;0;0.0 +18993600;0;0;0.0 +18997200;0;0;0.0 +19000800;0;0;0.0 +19004400;0;0;0.0 +19008000;0;0;0.0 +19011600;0;0;0.0 +19015200;0;0;0.0 +19018800;0;0;0.0 +19022400;0;0;0.0 +19026000;0;0;0.0 +19029600;0;0;0.0 +19033200;0;0;0.0 +19036800;-989.5;0;0.0 +19040400;-4274.0;0;0.0 +19044000;-8339.7;0;0.0 +19047600;-10002.6;0;0.0 +19051200;-9346.9;0;0.0 +19054800;-11331.8;0;0.0 +19058400;-13271.9;0;0.0 +19062000;-14824.6;0;0.0 +19065600;-16036.2;0;0.0 +19069200;-11719.5;0;0.0 +19072800;0;0;0.0 +19076400;0;0;0.0 +19080000;0;0;0.0 +19083600;0;0;0.0 +19087200;0;0;0.0 +19090800;0;0;0.0 +19094400;0;0;0.0 +19098000;0;0;0.0 +19101600;0;0;0.0 +19105200;0;0;0.0 +19108800;0;0;0.0 +19112400;0;0;0.0 +19116000;0;0;0.0 +19119600;0;0;0.0 +19123200;-2511.3;0;0.0 +19126800;-6009.6;0;0.0 +19130400;-9451.5;0;0.0 +19134000;-10817.2;0;0.0 +19137600;-9082.3;0;0.0 +19141200;-9343.6;0;0.0 +19144800;-12117.5;0;0.0 +19148400;-14363.0;0;0.0 +19152000;-15713.0;0;0.0 +19155600;-14010.1;0;0.0 +19159200;0;0;0.0 +19162800;0;0;0.0 +19166400;0;0;0.0 +19170000;0;0;0.0 +19173600;0;0;0.0 +19177200;0;0;0.0 +19180800;0;0;0.0 +19184400;0;0;0.0 +19188000;0;0;0.0 +19191600;0;0;0.0 +19195200;0;0;0.0 +19198800;0;0;0.0 +19202400;-40.6;0;0.0 +19206000;0;0;0.0 +19209600;-154.3;0;0.0 +19213200;-3622.9;0;0.0 +19216800;-7074.9;0;0.0 +19220400;-8068.1;0;0.0 +19224000;-7494.6;0;0.0 +19227600;-8867.1;0;0.0 +19231200;-11022.1;0;0.0 +19234800;-13646.0;0;0.0 +19238400;-15057.9;0;0.0 +19242000;-13470.8;0;0.0 +19245600;0;0;0.0 +19249200;0;0;0.0 +19252800;0;0;0.0 +19256400;0;0;0.0 +19260000;0;0;0.0 +19263600;0;0;0.0 +19267200;0;0;0.0 +19270800;0;0;0.0 +19274400;0;0;0.0 +19278000;0;0;0.0 +19281600;0;0;0.0 +19285200;0;0;0.0 +19288800;0;0;0.0 +19292400;0;0;0.0 +19296000;0;0;0.0 +19299600;0;0;0.0 +19303200;0;0;0.0 +19306800;0;0;0.0 +19310400;0;0;0.0 +19314000;0;0;0.0 +19317600;0;0;0.0 +19321200;0;0;0.0 +19324800;-525.5;0;0.0 +19328400;-2601.7;0;0.0 +19332000;-1858.6;0;0.0 +19335600;0;0;0.0 +19339200;0;0;0.0 +19342800;0;0;0.0 +19346400;0;0;0.0 +19350000;0;0;0.0 +19353600;0;0;0.0 +19357200;0;0;0.0 +19360800;0;0;0.0 +19364400;0;0;0.0 +19368000;0;0;0.0 +19371600;0;0;0.0 +19375200;0;0;0.0 +19378800;0;0;0.0 +19382400;0;0;0.0 +19386000;0;0;0.0 +19389600;0;0;0.0 +19393200;0;0;0.0 +19396800;0;0;0.0 +19400400;0;0;0.0 +19404000;0;0;0.0 +19407600;0;0;0.0 +19411200;-1660.1;0;0.0 +19414800;0;0;0.0 +19418400;-538.6;0;0.0 +19422000;0;0;0.0 +19425600;0;0;0.0 +19429200;0;0;0.0 +19432800;0;0;0.0 +19436400;0;0;0.0 +19440000;0;0;0.0 +19443600;0;0;0.0 +19447200;0;0;0.0 +19450800;0;0;0.0 +19454400;0;0;0.0 +19458000;0;0;0.0 +19461600;-1268.7;2353.6;0.0 +19465200;-1560.2;1335.8;0.0 +19468800;-2890.8;0;0.0 +19472400;-3757.3;0;0.0 +19476000;-4876.7;0;0.0 +19479600;-6066.4;0;0.0 +19483200;-6847.3;0;0.0 +19486800;-8832.5;0;0.0 +19490400;-9835.1;0;0.0 +19494000;-12511.2;0;0.0 +19497600;-14010.8;0;0.0 +19501200;-12362.5;0;0.0 +19504800;0;0;0.0 +19508400;0;0;0.0 +19512000;0;0;0.0 +19515600;0;0;0.0 +19519200;0;0;0.0 +19522800;0;0;0.0 +19526400;0;0;0.0 +19530000;0;0;0.0 +19533600;0;0;0.0 +19537200;0;0;0.0 +19540800;0;0;0.0 +19544400;0;0;0.0 +19548000;-674.0;0;0.0 +19551600;-234.1;0;0.0 +19555200;-2052.6;0;0.0 +19558800;-5616.0;0;0.0 +19562400;-5290.0;0;0.0 +19566000;-6402.6;0;0.0 +19569600;-6818.9;0;0.0 +19573200;-8454.6;0;0.0 +19576800;-9257.2;0;0.0 +19580400;-10218.4;0;0.0 +19584000;-7594.4;0;0.0 +19587600;-3678.5;0;0.0 +19591200;0;0;0.0 +19594800;0;0;0.0 +19598400;0;0;0.0 +19602000;0;0;0.0 +19605600;0;0;0.0 +19609200;0;0;0.0 +19612800;0;0;0.0 +19616400;0;0;0.0 +19620000;0;0;0.0 +19623600;0;0;0.0 +19627200;0;0;0.0 +19630800;0;0;0.0 +19634400;0;0;0.0 +19638000;0;0;0.0 +19641600;-1856.2;0;0.0 +19645200;-4623.2;0;0.0 +19648800;-6571.6;0;0.0 +19652400;-6303.4;0;0.0 +19656000;-5374.0;0;0.0 +19659600;-6743.8;0;0.0 +19663200;-9072.3;0;0.0 +19666800;-11052.2;0;0.0 +19670400;-12927.2;0;0.0 +19674000;-11632.5;0;0.0 +19677600;0;0;0.0 +19681200;0;0;0.0 +19684800;0;0;0.0 +19688400;0;0;0.0 +19692000;0;0;0.0 +19695600;0;0;0.0 +19699200;0;0;0.0 +19702800;0;0;0.0 +19706400;0;0;0.0 +19710000;0;0;0.0 +19713600;0;0;0.0 +19717200;0;0;0.0 +19720800;0;0;0.0 +19724400;0;0;0.0 +19728000;-2677.4;0;0.0 +19731600;-6009.9;0;0.0 +19735200;-8124.2;0;0.0 +19738800;-7755.6;0;0.0 +19742400;-6705.7;0;0.0 +19746000;-7813.0;0;0.0 +19749600;-10581.0;0;0.0 +19753200;-12915.7;0;0.0 +19756800;-14658.8;0;0.0 +19760400;-13157.4;0;0.0 +19764000;0;0;0.0 +19767600;0;0;0.0 +19771200;0;0;0.0 +19774800;0;0;0.0 +19778400;0;0;0.0 +19782000;0;0;0.0 +19785600;0;0;0.0 +19789200;0;0;0.0 +19792800;0;0;0.0 +19796400;0;0;0.0 +19800000;0;0;0.0 +19803600;0;0;0.0 +19807200;0;0;0.0 +19810800;0;0;0.0 +19814400;-1860.9;0;0.0 +19818000;-4718.9;0;0.0 +19821600;-7404.7;0;0.0 +19825200;-7963.1;0;0.0 +19828800;-7496.5;0;0.0 +19832400;-9461.8;0;0.0 +19836000;-11869.8;0;0.0 +19839600;-13912.2;0;0.0 +19843200;-14380.7;0;0.0 +19846800;-11833.4;0;0.0 +19850400;0;0;0.0 +19854000;0;0;0.0 +19857600;0;0;0.0 +19861200;0;0;0.0 +19864800;0;0;0.0 +19868400;0;0;0.0 +19872000;0;0;0.0 +19875600;0;0;0.0 +19879200;0;0;0.0 +19882800;0;0;0.0 +19886400;0;0;0.0 +19890000;0;0;0.0 +19893600;0;0;0.0 +19897200;0;0;0.0 +19900800;0;0;0.0 +19904400;0;0;0.0 +19908000;0;0;0.0 +19911600;0;0;0.0 +19915200;0;0;0.0 +19918800;0;0;0.0 +19922400;0;0;0.0 +19926000;0;0;0.0 +19929600;0;0;0.0 +19933200;-223.9;0;0.0 +19936800;0;0;0.0 +19940400;0;0;0.0 +19944000;0;0;0.0 +19947600;0;0;0.0 +19951200;0;0;0.0 +19954800;0;0;0.0 +19958400;0;0;0.0 +19962000;0;0;0.0 +19965600;0;0;0.0 +19969200;0;0;0.0 +19972800;0;0;0.0 +19976400;0;0;0.0 +19980000;0;0;0.0 +19983600;0;0;0.0 +19987200;0;0;0.0 +19990800;0;0;0.0 +19994400;0;0;0.0 +19998000;0;0;0.0 +20001600;0;0;0.0 +20005200;0;0;0.0 +20008800;0;0;0.0 +20012400;0;0;0.0 +20016000;0;0;0.0 +20019600;0;0;0.0 +20023200;0;0;0.0 +20026800;0;0;0.0 +20030400;0;0;0.0 +20034000;0;0;0.0 +20037600;0;0;0.0 +20041200;0;0;0.0 +20044800;0;0;0.0 +20048400;0;0;0.0 +20052000;0;0;0.0 +20055600;0;0;0.0 +20059200;0;0;0.0 +20062800;0;0;0.0 +20066400;0;4625.9;0.0 +20070000;0;3484.5;0.0 +20073600;0;0;0.0 +20077200;0;0;0.0 +20080800;0;0;0.0 +20084400;-122.2;0;0.0 +20088000;-356.6;0;0.0 +20091600;-1043.6;0;0.0 +20095200;-2183.1;0;0.0 +20098800;-2661.2;0;0.0 +20102400;-2822.3;0;0.0 +20106000;-229.7;0;0.0 +20109600;0;0;0.0 +20113200;0;0;0.0 +20116800;0;0;0.0 +20120400;0;0;0.0 +20124000;0;0;0.0 +20127600;0;0;0.0 +20131200;0;0;0.0 +20134800;0;0;0.0 +20138400;0;0;0.0 +20142000;0;0;0.0 +20145600;0;0;0.0 +20149200;0;0;0.0 +20152800;0;1843.1;0.0 +20156400;0;687.7;0.0 +20160000;0;0;0.0 +20163600;0;0;0.0 +20167200;-761.1;0;0.0 +20170800;-1661.1;0;0.0 +20174400;-1827.8;0;0.0 +20178000;-1698.1;0;0.0 +20181600;-3081.9;0;0.0 +20185200;-5671.6;0;0.0 +20188800;-8873.8;0;0.0 +20192400;-7500.5;0;0.0 +20196000;0;0;0.0 +20199600;0;0;0.0 +20203200;0;0;0.0 +20206800;0;0;0.0 +20210400;0;0;0.0 +20214000;0;0;0.0 +20217600;0;0;0.0 +20221200;0;0;0.0 +20224800;0;0;0.0 +20228400;0;0;0.0 +20232000;0;0;0.0 +20235600;0;0;0.0 +20239200;0;1425.7;0.0 +20242800;0;345.6;0.0 +20246400;0;0;0.0 +20250000;0;0;0.0 +20253600;0;0;0.0 +20257200;-801.8;0;0.0 +20260800;-1409.9;0;0.0 +20264400;-2065.9;0;0.0 +20268000;-3449.4;0;0.0 +20271600;-3191.8;0;0.0 +20275200;-3022.5;0;0.0 +20278800;-348.0;0;0.0 +20282400;0;0;0.0 +20286000;0;0;0.0 +20289600;0;0;0.0 +20293200;0;0;0.0 +20296800;0;0;0.0 +20300400;0;0;0.0 +20304000;0;0;0.0 +20307600;0;0;0.0 +20311200;0;0;0.0 +20314800;0;0;0.0 +20318400;0;0;0.0 +20322000;0;0;0.0 +20325600;0;24.3;0.0 +20329200;0;19.3;0.0 +20332800;0;0;0.0 +20336400;0;0;0.0 +20340000;0;0;0.0 +20343600;-14.2;0;0.0 +20347200;-828.6;0;0.0 +20350800;-1944.7;0;0.0 +20354400;-4040.1;0;0.0 +20358000;-3949.0;0;0.0 +20361600;-1999.7;0;0.0 +20365200;-218.3;0;0.0 +20368800;0;0;0.0 +20372400;0;0;0.0 +20376000;0;0;0.0 +20379600;0;0;0.0 +20383200;0;0;0.0 +20386800;0;0;0.0 +20390400;0;0;0.0 +20394000;0;0;0.0 +20397600;0;0;0.0 +20401200;0;0;0.0 +20404800;0;0;0.0 +20408400;0;0;0.0 +20412000;0;0;0.0 +20415600;0;0;0.0 +20419200;0;0;0.0 +20422800;0;0;0.0 +20426400;-281.4;0;0.0 +20430000;-850.1;0;0.0 +20433600;-522.6;0;0.0 +20437200;-1461.6;0;0.0 +20440800;-3594.7;0;0.0 +20444400;-4958.6;0;0.0 +20448000;-6024.0;0;0.0 +20451600;-1715.1;0;0.0 +20455200;0;0;0.0 +20458800;0;0;0.0 +20462400;0;0;0.0 +20466000;0;0;0.0 +20469600;0;0;0.0 +20473200;0;0;0.0 +20476800;0;0;0.0 +20480400;0;0;0.0 +20484000;0;0;0.0 +20487600;0;0;0.0 +20491200;0;0;0.0 +20494800;0;0;0.0 +20498400;0;0;0.0 +20502000;0;0;0.0 +20505600;0;0;0.0 +20509200;0;0;0.0 +20512800;0;0;0.0 +20516400;0;0;0.0 +20520000;0;0;0.0 +20523600;0;0;0.0 +20527200;0;0;0.0 +20530800;0;0;0.0 +20534400;0;0;0.0 +20538000;0;0;0.0 +20541600;0;0;0.0 +20545200;0;0;0.0 +20548800;0;0;0.0 +20552400;0;0;0.0 +20556000;0;0;0.0 +20559600;0;0;0.0 +20563200;0;0;0.0 +20566800;0;0;0.0 +20570400;0;0;0.0 +20574000;0;0;0.0 +20577600;0;0;0.0 +20581200;0;0;0.0 +20584800;0;0;0.0 +20588400;0;0;0.0 +20592000;0;0;0.0 +20595600;0;0;0.0 +20599200;0;0;0.0 +20602800;0;0;0.0 +20606400;0;0;0.0 +20610000;0;0;0.0 +20613600;0;0;0.0 +20617200;0;0;0.0 +20620800;0;0;0.0 +20624400;-12.0;0;0.0 +20628000;0;0;0.0 +20631600;0;0;0.0 +20635200;0;0;0.0 +20638800;0;0;0.0 +20642400;0;0;0.0 +20646000;0;0;0.0 +20649600;0;0;0.0 +20653200;0;0;0.0 +20656800;0;0;0.0 +20660400;0;0;0.0 +20664000;0;0;0.0 +20667600;0;0;0.0 +20671200;-57.2;3939.8;0.0 +20674800;0;2576.2;0.0 +20678400;0;0;0.0 +20682000;-278.9;0;0.0 +20685600;-2810.9;0;0.0 +20689200;-4611.5;0;0.0 +20692800;-4225.3;0;0.0 +20696400;-5786.0;0;0.0 +20700000;-6366.9;0;0.0 +20703600;-9261.0;0;0.0 +20707200;-4668.3;0;0.0 +20710800;-892.2;0;0.0 +20714400;0;0;0.0 +20718000;0;0;0.0 +20721600;0;0;0.0 +20725200;0;0;0.0 +20728800;0;0;0.0 +20732400;0;0;0.0 +20736000;0;0;0.0 +20739600;0;0;0.0 +20743200;0;0;0.0 +20746800;0;0;0.0 +20750400;0;0;0.0 +20754000;0;0;0.0 +20757600;0;1219.8;0.0 +20761200;0;419.4;0.0 +20764800;0;0;0.0 +20768400;0;0;0.0 +20772000;-328.8;0;0.0 +20775600;-449.8;0;0.0 +20779200;-312.8;0;0.0 +20782800;-879.7;0;0.0 +20786400;-1557.4;0;0.0 +20790000;-1923.7;0;0.0 +20793600;-992.3;0;0.0 +20797200;-100.7;0;0.0 +20800800;0;0;0.0 +20804400;0;0;0.0 +20808000;0;0;0.0 +20811600;0;0;0.0 +20815200;0;0;0.0 +20818800;0;0;0.0 +20822400;0;0;0.0 +20826000;0;0;0.0 +20829600;0;0;0.0 +20833200;0;0;0.0 +20836800;0;0;0.0 +20840400;0;0;0.0 +20844000;0;0;0.0 +20847600;0;0;0.0 +20851200;0;0;0.0 +20854800;0;0;0.0 +20858400;0;0;0.0 +20862000;0;0;0.0 +20865600;0;0;0.0 +20869200;0;0;0.0 +20872800;-322.9;0;0.0 +20876400;-637.1;0;0.0 +20880000;-64.0;0;0.0 +20883600;0;0;0.0 +20887200;0;0;0.0 +20890800;0;0;0.0 +20894400;0;0;0.0 +20898000;0;0;0.0 +20901600;0;0;0.0 +20905200;0;0;0.0 +20908800;0;0;0.0 +20912400;0;0;0.0 +20916000;0;0;0.0 +20919600;0;0;0.0 +20923200;0;0;0.0 +20926800;0;0;0.0 +20930400;0;5759.0;0.0 +20934000;0;3510.8;0.0 +20937600;0;0;0.0 +20941200;0;0;0.0 +20944800;0;0;0.0 +20948400;0;0;0.0 +20952000;0;0;0.0 +20955600;0;0;0.0 +20959200;0;0;0.0 +20962800;0;0;0.0 +20966400;-378.3;0;0.0 +20970000;0;0;0.0 +20973600;0;0;0.0 +20977200;0;0;0.0 +20980800;0;0;0.0 +20984400;0;0;0.0 +20988000;0;0;0.0 +20991600;0;0;0.0 +20995200;0;0;0.0 +20998800;0;0;0.0 +21002400;0;0;0.0 +21006000;0;0;0.0 +21009600;0;0;0.0 +21013200;0;0;0.0 +21016800;0;4301.4;0.0 +21020400;0;2695.3;0.0 +21024000;0;18.4;0.0 +21027600;0;0;0.0 +21031200;-224.0;0;0.0 +21034800;-791.2;0;0.0 +21038400;-1182.8;0;0.0 +21042000;-1719.0;0;0.0 +21045600;-851.5;0;0.0 +21049200;-2990.7;0;0.0 +21052800;-2943.4;0;0.0 +21056400;-3717.0;0;0.0 +21060000;0;0;0.0 +21063600;0;0;0.0 +21067200;0;0;0.0 +21070800;0;0;0.0 +21074400;0;0;0.0 +21078000;0;0;0.0 +21081600;0;0;0.0 +21085200;0;0;0.0 +21088800;0;0;0.0 +21092400;0;0;0.0 +21096000;0;0;0.0 +21099600;0;0;0.0 +21103200;0;0;0.0 +21106800;0;0;0.0 +21110400;0;0;0.0 +21114000;0;0;0.0 +21117600;0;0;0.0 +21121200;0;0;0.0 +21124800;0;0;0.0 +21128400;0;0;0.0 +21132000;0;0;0.0 +21135600;0;0;0.0 +21139200;0;0;0.0 +21142800;0;0;0.0 +21146400;0;0;0.0 +21150000;0;0;0.0 +21153600;0;0;0.0 +21157200;0;0;0.0 +21160800;0;0;0.0 +21164400;0;0;0.0 +21168000;0;0;0.0 +21171600;0;0;0.0 +21175200;0;0;0.0 +21178800;0;0;0.0 +21182400;0;0;0.0 +21186000;0;0;0.0 +21189600;0;0;0.0 +21193200;0;0;0.0 +21196800;0;0;0.0 +21200400;0;0;0.0 +21204000;0;0;0.0 +21207600;0;0;0.0 +21211200;0;0;0.0 +21214800;0;0;0.0 +21218400;0;0;0.0 +21222000;0;0;0.0 +21225600;0;0;0.0 +21229200;0;0;0.0 +21232800;0;0;0.0 +21236400;0;0;0.0 +21240000;0;0;0.0 +21243600;0;0;0.0 +21247200;0;0;0.0 +21250800;0;0;0.0 +21254400;0;0;0.0 +21258000;0;0;0.0 +21261600;0;0;0.0 +21265200;0;0;0.0 +21268800;0;0;0.0 +21272400;0;0;0.0 +21276000;0;16184.8;0.0 +21279600;0;11399.6;0.0 +21283200;0;1375.3;0.0 +21286800;-2550.1;69.1;0.0 +21290400;-3882.3;0;0.0 +21294000;-4013.4;0;0.0 +21297600;-2745.3;0;0.0 +21301200;-2639.7;0;0.0 +21304800;-4274.0;0;0.0 +21308400;-7090.4;0;0.0 +21312000;-8214.6;0;0.0 +21315600;-8306.1;0;0.0 +21319200;0;0;0.0 +21322800;0;0;0.0 +21326400;0;0;0.0 +21330000;0;0;0.0 +21333600;0;0;0.0 +21337200;0;0;0.0 +21340800;0;0;0.0 +21344400;0;0;0.0 +21348000;0;0;0.0 +21351600;0;0;0.0 +21355200;0;0;0.0 +21358800;0;0;0.0 +21362400;0;9969.9;0.0 +21366000;0;7227.0;0.0 +21369600;0;384.1;0.0 +21373200;-1115.5;0;0.0 +21376800;-2222.5;0;0.0 +21380400;-2687.7;0;0.0 +21384000;-1522.2;0;0.0 +21387600;-2238.2;0;0.0 +21391200;-4326.9;0;0.0 +21394800;-6688.4;0;0.0 +21398400;-8853.3;0;0.0 +21402000;-7467.9;0;0.0 +21405600;0;0;0.0 +21409200;0;0;0.0 +21412800;0;0;0.0 +21416400;0;0;0.0 +21420000;0;0;0.0 +21423600;0;0;0.0 +21427200;0;0;0.0 +21430800;0;0;0.0 +21434400;0;0;0.0 +21438000;0;0;0.0 +21441600;0;0;0.0 +21445200;0;0;0.0 +21448800;0;9408.9;0.0 +21452400;0;6228.8;0.0 +21456000;0;457.7;0.0 +21459600;-2000.5;0;0.0 +21463200;-551.0;0;0.0 +21466800;-705.0;0;0.0 +21470400;-276.8;0;0.0 +21474000;-209.6;0;0.0 +21477600;-144.1;0;0.0 +21481200;-80.5;0;0.0 +21484800;0;0;0.0 +21488400;0;0;0.0 +21492000;0;23.0;0.0 +21495600;0;0;0.0 +21499200;0;0;0.0 +21502800;0;0;0.0 +21506400;0;0;0.0 +21510000;0;0;0.0 +21513600;0;0;0.0 +21517200;0;0;0.0 +21520800;0;0;0.0 +21524400;0;0;0.0 +21528000;0;0;0.0 +21531600;0;0;0.0 +21535200;0;5811.6;0.0 +21538800;0;3864.3;0.0 +21542400;0;321.9;0.0 +21546000;0;0;0.0 +21549600;0;0;0.0 +21553200;0;0;0.0 +21556800;-162.4;0;0.0 +21560400;-1273.8;0;0.0 +21564000;-1190.4;0;0.0 +21567600;-3430.8;0;0.0 +21571200;-5934.3;0;0.0 +21574800;-5060.8;0;0.0 +21578400;0;0;0.0 +21582000;0;0;0.0 +21585600;0;0;0.0 +21589200;0;0;0.0 +21592800;0;0;0.0 +21596400;0;0;0.0 +21600000;0;0;0.0 +21603600;0;0;0.0 +21607200;0;0;0.0 +21610800;0;0;0.0 +21614400;0;0;0.0 +21618000;0;0;0.0 +21621600;0;1090.1;0.0 +21625200;0;535.3;0.0 +21628800;0;0;0.0 +21632400;0;0;0.0 +21636000;-1956.1;0;0.0 +21639600;-2124.5;0;0.0 +21643200;-1755.1;0;0.0 +21646800;-1651.2;0;0.0 +21650400;-3835.5;0;0.0 +21654000;-6497.1;0;0.0 +21657600;-7978.8;0;0.0 +21661200;-3137.3;0;0.0 +21664800;0;0;0.0 +21668400;0;0;0.0 +21672000;0;0;0.0 +21675600;0;0;0.0 +21679200;0;0;0.0 +21682800;0;0;0.0 +21686400;0;0;0.0 +21690000;0;0;0.0 +21693600;0;0;0.0 +21697200;0;0;0.0 +21700800;0;0;0.0 +21704400;0;0;0.0 +21708000;0;0;0.0 +21711600;0;0;0.0 +21715200;0;0;0.0 +21718800;0;0;0.0 +21722400;0;0;0.0 +21726000;0;0;0.0 +21729600;0;0;0.0 +21733200;0;0;0.0 +21736800;0;0;0.0 +21740400;0;0;0.0 +21744000;0;0;0.0 +21747600;0;0;0.0 +21751200;0;0;0.0 +21754800;0;0;0.0 +21758400;0;0;0.0 +21762000;0;0;0.0 +21765600;0;0;0.0 +21769200;0;0;0.0 +21772800;0;0;0.0 +21776400;0;0;0.0 +21780000;0;0;0.0 +21783600;0;0;0.0 +21787200;0;0;0.0 +21790800;0;0;0.0 +21794400;0;0;0.0 +21798000;0;0;0.0 +21801600;0;0;0.0 +21805200;0;0;0.0 +21808800;0;0;0.0 +21812400;0;0;0.0 +21816000;0;0;0.0 +21819600;0;0;0.0 +21823200;0;0;0.0 +21826800;0;0;0.0 +21830400;0;0;0.0 +21834000;0;0;0.0 +21837600;0;0;0.0 +21841200;0;0;0.0 +21844800;0;0;0.0 +21848400;0;0;0.0 +21852000;0;0;0.0 +21855600;0;0;0.0 +21859200;0;0;0.0 +21862800;0;0;0.0 +21866400;0;0;0.0 +21870000;0;0;0.0 +21873600;0;0;0.0 +21877200;0;0;0.0 +21880800;0;11009.2;0.0 +21884400;0;8137.1;0.0 +21888000;0;432.8;0.0 +21891600;-2056.0;57.8;0.0 +21895200;-876.9;0;0.0 +21898800;-1666.3;0;0.0 +21902400;-2020.5;0;0.0 +21906000;-2564.6;0;0.0 +21909600;-4589.5;0;0.0 +21913200;-7138.5;0;0.0 +21916800;-9552.2;0;0.0 +21920400;-8897.4;0;0.0 +21924000;0;0;0.0 +21927600;0;0;0.0 +21931200;0;0;0.0 +21934800;0;0;0.0 +21938400;0;0;0.0 +21942000;0;0;0.0 +21945600;0;0;0.0 +21949200;0;0;0.0 +21952800;0;0;0.0 +21956400;0;0;0.0 +21960000;0;0;0.0 +21963600;0;0;0.0 +21967200;0;8023.6;0.0 +21970800;0;6030.8;0.0 +21974400;0;327.3;0.0 +21978000;0;0;0.0 +21981600;-1081.4;0;0.0 +21985200;-2052.3;0;0.0 +21988800;-2138.1;0;0.0 +21992400;-1812.0;0;0.0 +21996000;-3548.5;0;0.0 +21999600;-5410.0;0;0.0 +22003200;-5133.5;0;0.0 +22006800;-3358.8;0;0.0 +22010400;0;0;0.0 +22014000;0;0;0.0 +22017600;0;0;0.0 +22021200;0;0;0.0 +22024800;0;0;0.0 +22028400;0;0;0.0 +22032000;0;0;0.0 +22035600;0;0;0.0 +22039200;0;0;0.0 +22042800;0;0;0.0 +22046400;0;0;0.0 +22050000;0;0;0.0 +22053600;0;931.4;0.0 +22057200;0;104.6;0.0 +22060800;0;0;0.0 +22064400;0;0;0.0 +22068000;-516.3;0;0.0 +22071600;-1755.8;0;0.0 +22075200;-2064.4;0;0.0 +22078800;-1477.6;0;0.0 +22082400;-2773.6;0;0.0 +22086000;-2108.2;0;0.0 +22089600;-1269.0;0;0.0 +22093200;-224.5;0;0.0 +22096800;0;0;0.0 +22100400;0;0;0.0 +22104000;0;0;0.0 +22107600;0;0;0.0 +22111200;0;0;0.0 +22114800;0;0;0.0 +22118400;0;0;0.0 +22122000;0;0;0.0 +22125600;0;0;0.0 +22129200;0;0;0.0 +22132800;0;0;0.0 +22136400;0;0;0.0 +22140000;0;0;0.0 +22143600;0;0;0.0 +22147200;0;0;0.0 +22150800;0;0;0.0 +22154400;0;0;0.0 +22158000;-559.3;0;0.0 +22161600;-431.5;0;0.0 +22165200;-477.8;0;0.0 +22168800;-518.3;0;0.0 +22172400;-527.4;0;0.0 +22176000;-529.1;0;0.0 +22179600;0;0;0.0 +22183200;0;0;0.0 +22186800;0;0;0.0 +22190400;0;0;0.0 +22194000;0;0;0.0 +22197600;0;0;0.0 +22201200;0;0;0.0 +22204800;0;0;0.0 +22208400;0;0;0.0 +22212000;0;0;0.0 +22215600;0;0;0.0 +22219200;0;0;0.0 +22222800;0;0;0.0 +22226400;0;0;0.0 +22230000;0;0;0.0 +22233600;0;0;0.0 +22237200;-134.8;0;0.0 +22240800;-2221.2;0;0.0 +22244400;-3602.8;0;0.0 +22248000;-3599.4;0;0.0 +22251600;-2682.3;0;0.0 +22255200;-3194.2;0;0.0 +22258800;-2653.7;0;0.0 +22262400;-2344.5;0;0.0 +22266000;-339.1;0;0.0 +22269600;0;0;0.0 +22273200;0;0;0.0 +22276800;0;0;0.0 +22280400;0;0;0.0 +22284000;0;0;0.0 +22287600;0;0;0.0 +22291200;0;0;0.0 +22294800;0;0;0.0 +22298400;0;0;0.0 +22302000;0;0;0.0 +22305600;0;0;0.0 +22309200;0;0;0.0 +22312800;0;0;0.0 +22316400;0;0;0.0 +22320000;0;0;0.0 +22323600;0;0;0.0 +22327200;0;0;0.0 +22330800;0;0;0.0 +22334400;0;0;0.0 +22338000;0;0;0.0 +22341600;0;0;0.0 +22345200;0;0;0.0 +22348800;0;0;0.0 +22352400;0;0;0.0 +22356000;0;0;0.0 +22359600;0;0;0.0 +22363200;0;0;0.0 +22366800;0;0;0.0 +22370400;0;0;0.0 +22374000;0;0;0.0 +22377600;0;0;0.0 +22381200;0;0;0.0 +22384800;0;0;0.0 +22388400;0;0;0.0 +22392000;0;0;0.0 +22395600;0;0;0.0 +22399200;0;0;0.0 +22402800;0;0;0.0 +22406400;0;0;0.0 +22410000;0;0;0.0 +22413600;0;0;0.0 +22417200;0;0;0.0 +22420800;0;0;0.0 +22424400;0;0;0.0 +22428000;0;0;0.0 +22431600;0;0;0.0 +22435200;0;0;0.0 +22438800;0;0;0.0 +22442400;0;0;0.0 +22446000;0;0;0.0 +22449600;0;0;0.0 +22453200;0;0;0.0 +22456800;0;0;0.0 +22460400;0;0;0.0 +22464000;0;0;0.0 +22467600;0;0;0.0 +22471200;0;0;0.0 +22474800;0;0;0.0 +22478400;0;0;0.0 +22482000;0;0;0.0 +22485600;0;7721.0;0.0 +22489200;0;5194.4;0.0 +22492800;0;0;0.0 +22496400;-1484.8;0;0.0 +22500000;-3047.7;0;0.0 +22503600;-3214.5;0;0.0 +22507200;-3091.3;0;0.0 +22510800;-2440.5;0;0.0 +22514400;-1945.6;0;0.0 +22518000;-3304.0;0;0.0 +22521600;-909.7;0;0.0 +22525200;-144.1;0;0.0 +22528800;0;0;0.0 +22532400;0;0;0.0 +22536000;0;0;0.0 +22539600;0;0;0.0 +22543200;0;0;0.0 +22546800;0;0;0.0 +22550400;0;0;0.0 +22554000;0;0;0.0 +22557600;0;0;0.0 +22561200;0;0;0.0 +22564800;0;0;0.0 +22568400;0;0;0.0 +22572000;0;6885.1;0.0 +22575600;0;4677.8;0.0 +22579200;0;105.5;0.0 +22582800;-1736.6;0;0.0 +22586400;-3473.6;0;0.0 +22590000;-3175.9;0;0.0 +22593600;-3248.3;0;0.0 +22597200;-3354.2;0;0.0 +22600800;-4787.3;0;0.0 +22604400;-6866.4;0;0.0 +22608000;-8779.7;0;0.0 +22611600;-7264.4;0;0.0 +22615200;0;0;0.0 +22618800;0;0;0.0 +22622400;0;0;0.0 +22626000;0;0;0.0 +22629600;0;0;0.0 +22633200;0;0;0.0 +22636800;0;0;0.0 +22640400;0;0;0.0 +22644000;0;0;0.0 +22647600;0;0;0.0 +22651200;0;0;0.0 +22654800;0;0;0.0 +22658400;0;5052.5;0.0 +22662000;0;3590.0;0.0 +22665600;0;286.4;0.0 +22669200;-474.2;0;0.0 +22672800;-2490.5;0;0.0 +22676400;-3568.7;0;0.0 +22680000;-3467.2;0;0.0 +22683600;-3620.3;0;0.0 +22687200;-6112.8;0;0.0 +22690800;-8152.6;0;0.0 +22694400;-9775.2;0;0.0 +22698000;-8036.3;0;0.0 +22701600;0;0;0.0 +22705200;0;0;0.0 +22708800;0;0;0.0 +22712400;0;0;0.0 +22716000;0;0;0.0 +22719600;0;0;0.0 +22723200;0;0;0.0 +22726800;0;0;0.0 +22730400;0;0;0.0 +22734000;0;0;0.0 +22737600;0;0;0.0 +22741200;0;0;0.0 +22744800;0;3666.7;0.0 +22748400;0;2277.3;0.0 +22752000;0;85.6;0.0 +22755600;-3090.3;0;0.0 +22759200;-4468.8;0;0.0 +22762800;-4125.2;0;0.0 +22766400;-3992.3;0;0.0 +22770000;-4298.0;0;0.0 +22773600;-7451.3;0;0.0 +22777200;-10282.9;0;0.0 +22780800;-12479.2;0;0.0 +22784400;-10567.1;0;0.0 +22788000;0;0;0.0 +22791600;0;0;0.0 +22795200;0;0;0.0 +22798800;0;0;0.0 +22802400;0;0;0.0 +22806000;0;0;0.0 +22809600;0;0;0.0 +22813200;0;0;0.0 +22816800;0;0;0.0 +22820400;0;0;0.0 +22824000;0;0;0.0 +22827600;0;0;0.0 +22831200;0;1818.9;0.0 +22834800;0;889.8;0.0 +22838400;0;0;0.0 +22842000;-224.8;0;0.0 +22845600;-1563.2;0;0.0 +22849200;-2480.5;0;0.0 +22852800;-2594.2;0;0.0 +22856400;-4421.9;0;0.0 +22860000;-6241.7;0;0.0 +22863600;-5834.7;0;0.0 +22867200;-3455.4;0;0.0 +22870800;-1323.2;0;0.0 +22874400;0;0;0.0 +22878000;0;0;0.0 +22881600;0;0;0.0 +22885200;0;0;0.0 +22888800;0;0;0.0 +22892400;0;0;0.0 +22896000;0;0;0.0 +22899600;0;0;0.0 +22903200;0;0;0.0 +22906800;0;0;0.0 +22910400;0;0;0.0 +22914000;0;0;0.0 +22917600;0;0;0.0 +22921200;0;0;0.0 +22924800;0;0;0.0 +22928400;0;0;0.0 +22932000;0;0;0.0 +22935600;0;0;0.0 +22939200;0;0;0.0 +22942800;0;0;0.0 +22946400;0;0;0.0 +22950000;0;0;0.0 +22953600;0;0;0.0 +22957200;0;0;0.0 +22960800;0;0;0.0 +22964400;0;0;0.0 +22968000;0;0;0.0 +22971600;0;0;0.0 +22975200;0;0;0.0 +22978800;0;0;0.0 +22982400;0;0;0.0 +22986000;0;0;0.0 +22989600;0;0;0.0 +22993200;0;0;0.0 +22996800;0;0;0.0 +23000400;0;0;0.0 +23004000;0;0;0.0 +23007600;0;0;0.0 +23011200;0;0;0.0 +23014800;0;0;0.0 +23018400;0;0;0.0 +23022000;0;0;0.0 +23025600;0;0;0.0 +23029200;0;0;0.0 +23032800;0;0;0.0 +23036400;0;0;0.0 +23040000;0;0;0.0 +23043600;0;0;0.0 +23047200;0;0;0.0 +23050800;0;0;0.0 +23054400;0;0;0.0 +23058000;0;0;0.0 +23061600;0;0;0.0 +23065200;0;0;0.0 +23068800;0;0;0.0 +23072400;0;0;0.0 +23076000;0;0;0.0 +23079600;0;0;0.0 +23083200;0;0;0.0 +23086800;0;0;0.0 +23090400;0;14750.9;0.0 +23094000;0;12938.6;0.0 +23097600;0;1245.7;0.0 +23101200;-311.9;0;0.0 +23104800;-1698.3;0;0.0 +23108400;-1615.9;0;0.0 +23112000;-1026.5;0;0.0 +23115600;-2002.5;0;0.0 +23119200;-1095.5;0;0.0 +23122800;-723.7;0;0.0 +23126400;-698.5;0;0.0 +23130000;-2991.4;0;0.0 +23133600;0;0;0.0 +23137200;0;0;0.0 +23140800;0;0;0.0 +23144400;0;0;0.0 +23148000;0;0;0.0 +23151600;0;0;0.0 +23155200;0;0;0.0 +23158800;0;0;0.0 +23162400;0;0;0.0 +23166000;0;0;0.0 +23169600;0;0;0.0 +23173200;0;0;0.0 +23176800;0;2774.0;0.0 +23180400;0;1881.4;0.0 +23184000;0;0;0.0 +23187600;0;0;0.0 +23191200;0;0;0.0 +23194800;0;0;0.0 +23198400;0;0;0.0 +23202000;-829.8;0;0.0 +23205600;-1061.4;0;0.0 +23209200;-381.8;0;0.0 +23212800;-892.7;0;0.0 +23216400;-1395.6;0;0.0 +23220000;0;0;0.0 +23223600;0;0;0.0 +23227200;0;0;0.0 +23230800;0;0;0.0 +23234400;0;0;0.0 +23238000;0;0;0.0 +23241600;0;0;0.0 +23245200;0;0;0.0 +23248800;0;0;0.0 +23252400;0;0;0.0 +23256000;0;0;0.0 +23259600;0;0;0.0 +23263200;0;1825.5;0.0 +23266800;0;1530.6;0.0 +23270400;0;1.9;0.0 +23274000;0;0;0.0 +23277600;-486.9;0;0.0 +23281200;-580.2;0;0.0 +23284800;-714.8;0;0.0 +23288400;-1372.5;0;0.0 +23292000;-1686.8;0;0.0 +23295600;-3546.1;0;0.0 +23299200;-504.1;0;0.0 +23302800;0;0;0.0 +23306400;0;12.4;0.0 +23310000;0;0;0.0 +23313600;0;0;0.0 +23317200;0;0;0.0 +23320800;0;0;0.0 +23324400;0;0;0.0 +23328000;0;0;0.0 +23331600;0;0;0.0 +23335200;0;0;0.0 +23338800;0;0;0.0 +23342400;0;0;0.0 +23346000;0;0;0.0 +23349600;0;6315.4;0.0 +23353200;0;4991.1;0.0 +23356800;0;1588.7;0.0 +23360400;0;484.3;0.0 +23364000;0;26.8;0.0 +23367600;0;0;0.0 +23371200;0;0;0.0 +23374800;0;0;0.0 +23378400;0;0;0.0 +23382000;0;0;0.0 +23385600;0;0;0.0 +23389200;0;799.7;0.0 +23392800;0;2756.1;0.0 +23396400;0;0;0.0 +23400000;0;0;0.0 +23403600;0;0;0.0 +23407200;0;0;0.0 +23410800;0;0;0.0 +23414400;0;0;0.0 +23418000;0;0;0.0 +23421600;0;0;0.0 +23425200;0;0;0.0 +23428800;0;0;0.0 +23432400;0;0;0.0 +23436000;0;13119.4;0.0 +23439600;0;11778.3;0.0 +23443200;0;4659.5;0.0 +23446800;0;2891.6;0.0 +23450400;0;1382.9;0.0 +23454000;0;399.6;0.0 +23457600;0;519.1;0.0 +23461200;0;0;0.0 +23464800;0;0;0.0 +23468400;0;0;0.0 +23472000;0;0;0.0 +23475600;0;643.4;0.0 +23479200;0;2377.0;0.0 +23482800;0;0;0.0 +23486400;0;0;0.0 +23490000;0;0;0.0 +23493600;0;0;0.0 +23497200;0;0;0.0 +23500800;0;0;0.0 +23504400;0;0;0.0 +23508000;0;0;0.0 +23511600;0;0;0.0 +23515200;0;0;0.0 +23518800;0;0;0.0 +23522400;0;0;0.0 +23526000;0;0;0.0 +23529600;0;0;0.0 +23533200;0;0;0.0 +23536800;0;0;0.0 +23540400;0;0;0.0 +23544000;0;0;0.0 +23547600;0;0;0.0 +23551200;0;0;0.0 +23554800;0;0;0.0 +23558400;0;0;0.0 +23562000;0;0;0.0 +23565600;0;0;0.0 +23569200;0;0;0.0 +23572800;0;0;0.0 +23576400;0;0;0.0 +23580000;0;0;0.0 +23583600;0;0;0.0 +23587200;0;0;0.0 +23590800;0;0;0.0 +23594400;0;0;0.0 +23598000;0;0;0.0 +23601600;0;0;0.0 +23605200;0;0;0.0 +23608800;0;0;0.0 +23612400;0;0;0.0 +23616000;0;0;0.0 +23619600;0;0;0.0 +23623200;0;0;0.0 +23626800;0;0;0.0 +23630400;0;0;0.0 +23634000;0;0;0.0 +23637600;0;0;0.0 +23641200;0;0;0.0 +23644800;0;0;0.0 +23648400;0;0;0.0 +23652000;0;0;0.0 +23655600;0;0;0.0 +23659200;0;0;0.0 +23662800;0;0;0.0 +23666400;0;0;0.0 +23670000;0;0;0.0 +23673600;0;0;0.0 +23677200;0;0;0.0 +23680800;0;0;0.0 +23684400;0;0;0.0 +23688000;0;0;0.0 +23691600;0;0;0.0 +23695200;0;25533.0;0.0 +23698800;0;17773.0;0.0 +23702400;0;8123.4;0.0 +23706000;0;3546.7;0.0 +23709600;0;1199.7;0.0 +23713200;0;92.4;0.0 +23716800;0;22.4;0.0 +23720400;0;0;0.0 +23724000;0;0;0.0 +23727600;-18.3;0;0.0 +23731200;0;0;0.0 +23734800;0;163.2;0.0 +23738400;0;2388.2;0.0 +23742000;0;0;0.0 +23745600;0;0;0.0 +23749200;0;0;0.0 +23752800;0;0;0.0 +23756400;0;0;0.0 +23760000;0;0;0.0 +23763600;0;0;0.0 +23767200;0;0;0.0 +23770800;0;0;0.0 +23774400;0;0;0.0 +23778000;0;0;0.0 +23781600;0;23186.0;0.0 +23785200;0;18184.0;0.0 +23788800;0;3989.3;0.0 +23792400;0;1338.1;0.0 +23796000;0;198.4;0.0 +23799600;-157.5;0;0.0 +23803200;-987.5;0;0.0 +23806800;-1648.0;0;0.0 +23810400;-1552.2;0;0.0 +23814000;-1629.1;0;0.0 +23817600;-1093.7;0;0.0 +23821200;0;3.6;0.0 +23824800;0;313.5;0.0 +23828400;0;0;0.0 +23832000;0;0;0.0 +23835600;0;0;0.0 +23839200;0;0;0.0 +23842800;0;0;0.0 +23846400;0;0;0.0 +23850000;0;0;0.0 +23853600;0;0;0.0 +23857200;0;0;0.0 +23860800;0;0;0.0 +23864400;0;0;0.0 +23868000;0;7469.1;0.0 +23871600;0;5954.8;0.0 +23875200;0;1466.2;0.0 +23878800;0;211.2;0.0 +23882400;0;0;0.0 +23886000;-22.2;0;0.0 +23889600;0;0;0.0 +23893200;0;0;0.0 +23896800;0;0;0.0 +23900400;0;0;0.0 +23904000;0;0;0.0 +23907600;0;121.4;0.0 +23911200;0;1248.6;0.0 +23914800;0;0;0.0 +23918400;0;0;0.0 +23922000;0;0;0.0 +23925600;0;0;0.0 +23929200;0;0;0.0 +23932800;0;0;0.0 +23936400;0;0;0.0 +23940000;0;0;0.0 +23943600;0;0;0.0 +23947200;0;0;0.0 +23950800;0;0;0.0 +23954400;0;11910.8;0.0 +23958000;0;10138.7;0.0 +23961600;0;1391.8;0.0 +23965200;0;224.0;0.0 +23968800;-125.7;0;0.0 +23972400;-149.8;0;0.0 +23976000;-907.8;0;0.0 +23979600;-1072.1;0;0.0 +23983200;-988.2;0;0.0 +23986800;-1943.6;0;0.0 +23990400;-1837.1;0;0.0 +23994000;0;0;0.0 +23997600;0;51.1;0.0 +24001200;0;0;0.0 +24004800;0;0;0.0 +24008400;0;0;0.0 +24012000;0;0;0.0 +24015600;0;0;0.0 +24019200;0;0;0.0 +24022800;0;0;0.0 +24026400;0;0;0.0 +24030000;0;0;0.0 +24033600;0;0;0.0 +24037200;0;0;0.0 +24040800;0;9910.9;0.0 +24044400;0;8694.1;0.0 +24048000;0;1075.9;0.0 +24051600;0;305.5;0.0 +24055200;0;181.6;0.0 +24058800;0;0;0.0 +24062400;0;98.6;0.0 +24066000;0;18.0;0.0 +24069600;0;0;0.0 +24073200;0;0;0.0 +24076800;0;0;0.0 +24080400;0;642.5;0.0 +24084000;0;2215.5;0.0 +24087600;0;0;0.0 +24091200;0;0;0.0 +24094800;0;0;0.0 +24098400;0;0;0.0 +24102000;0;0;0.0 +24105600;0;0;0.0 +24109200;0;0;0.0 +24112800;0;0;0.0 +24116400;0;0;0.0 +24120000;0;0;0.0 +24123600;0;0;0.0 +24127200;0;0;0.0 +24130800;0;0;0.0 +24134400;0;0;0.0 +24138000;0;0;0.0 +24141600;0;0;0.0 +24145200;0;0;0.0 +24148800;0;0;0.0 +24152400;0;0;0.0 +24156000;0;0;0.0 +24159600;0;0;0.0 +24163200;0;0;0.0 +24166800;0;0;0.0 +24170400;0;0;0.0 +24174000;0;0;0.0 +24177600;0;0;0.0 +24181200;0;0;0.0 +24184800;0;0;0.0 +24188400;0;0;0.0 +24192000;0;0;0.0 +24195600;0;0;0.0 +24199200;0;0;0.0 +24202800;0;0;0.0 +24206400;0;0;0.0 +24210000;0;0;0.0 +24213600;0;0;0.0 +24217200;0;0;0.0 +24220800;0;0;0.0 +24224400;0;0;0.0 +24228000;0;0;0.0 +24231600;0;0;0.0 +24235200;0;0;0.0 +24238800;0;0;0.0 +24242400;0;0;0.0 +24246000;0;0;0.0 +24249600;0;0;0.0 +24253200;0;0;0.0 +24256800;0;0;0.0 +24260400;0;0;0.0 +24264000;0;0;0.0 +24267600;0;0;0.0 +24271200;0;8.1;0.0 +24274800;0;35.1;0.0 +24278400;0;53.0;0.0 +24282000;0;71.8;0.0 +24285600;0;168.1;0.0 +24289200;0;261.0;0.0 +24292800;0;371.3;0.0 +24296400;0;511.8;0.0 +24300000;0;55177.1;0.0 +24303600;0;40572.1;0.0 +24307200;0;16601.5;0.0 +24310800;0;8890.7;0.0 +24314400;-36.2;5210.2;0.0 +24318000;-1223.3;3284.8;0.0 +24321600;-1431.9;3687.4;0.0 +24325200;-1590.2;801.9;0.0 +24328800;-914.2;728.1;0.0 +24332400;-434.4;429.0;0.0 +24336000;-63.0;365.0;0.0 +24339600;0;2970.5;0.0 +24343200;0;7619.4;0.0 +24346800;0;0;0.0 +24350400;0;0;0.0 +24354000;0;0;0.0 +24357600;0;0;0.0 +24361200;0;0;0.0 +24364800;0;0;0.0 +24368400;0;0;0.0 +24372000;0;0;0.0 +24375600;0;0;0.0 +24379200;0;0;0.0 +24382800;0;0;0.0 +24386400;0;18093.0;0.0 +24390000;0;15329.5;0.0 +24393600;0;4183.8;0.0 +24397200;0;996.4;0.0 +24400800;-892.9;280.5;0.0 +24404400;-1930.9;48.3;0.0 +24408000;-2565.8;25.1;0.0 +24411600;-2767.5;0;0.0 +24415200;-2737.6;0;0.0 +24418800;-5117.5;0;0.0 +24422400;-6104.8;0;0.0 +24426000;-3803.9;101.5;0.0 +24429600;0;1496.5;0.0 +24433200;0;0;0.0 +24436800;0;0;0.0 +24440400;0;0;0.0 +24444000;0;0;0.0 +24447600;0;0;0.0 +24451200;0;0;0.0 +24454800;0;0;0.0 +24458400;0;0;0.0 +24462000;0;0;0.0 +24465600;0;0;0.0 +24469200;0;0;0.0 +24472800;0;12823.2;0.0 +24476400;0;11013.9;0.0 +24480000;0;1021.6;0.0 +24483600;-876.6;409.0;0.0 +24487200;-1988.6;93.5;0.0 +24490800;-3454.5;0;0.0 +24494400;-3784.0;0;0.0 +24498000;-4005.2;0;0.0 +24501600;-3167.8;0;0.0 +24505200;-6514.8;0;0.0 +24508800;-8681.8;0;0.0 +24512400;-7028.3;0;0.0 +24516000;0;83.5;0.0 +24519600;0;0;0.0 +24523200;0;0;0.0 +24526800;0;0;0.0 +24530400;0;0;0.0 +24534000;0;0;0.0 +24537600;0;0;0.0 +24541200;0;0;0.0 +24544800;0;0;0.0 +24548400;0;0;0.0 +24552000;0;0;0.0 +24555600;0;0;0.0 +24559200;0;5334.5;0.0 +24562800;0;3578.4;0.0 +24566400;0;349.6;0.0 +24570000;0;89.7;0.0 +24573600;0;0;0.0 +24577200;-88.5;0;0.0 +24580800;0;0;0.0 +24584400;-10.4;0;0.0 +24588000;-1316.8;0;0.0 +24591600;-3391.2;0;0.0 +24595200;-3347.2;0;0.0 +24598800;-82.6;0;0.0 +24602400;0;309.3;0.0 +24606000;0;0;0.0 +24609600;0;0;0.0 +24613200;0;0;0.0 +24616800;0;0;0.0 +24620400;0;0;0.0 +24624000;0;0;0.0 +24627600;0;0;0.0 +24631200;0;0;0.0 +24634800;0;0;0.0 +24638400;0;0;0.0 +24642000;0;0;0.0 +24645600;0;7217.6;0.0 +24649200;0;5058.8;0.0 +24652800;0;1095.2;0.0 +24656400;0;225.2;0.0 +24660000;0;14.4;0.0 +24663600;0;0;0.0 +24667200;0;0;0.0 +24670800;0;0;0.0 +24674400;0;0;0.0 +24678000;0;0;0.0 +24681600;0;0;0.0 +24685200;0;393.8;0.0 +24688800;0;2407.7;0.0 +24692400;0;0;0.0 +24696000;0;0;0.0 +24699600;0;0;0.0 +24703200;0;0;0.0 +24706800;0;0;0.0 +24710400;0;0;0.0 +24714000;0;0;0.0 +24717600;0;0;0.0 +24721200;0;0;0.0 +24724800;0;0;0.0 +24728400;0;0;0.0 +24732000;0;0;0.0 +24735600;0;0;0.0 +24739200;0;0;0.0 +24742800;0;0;0.0 +24746400;0;0;0.0 +24750000;0;0;0.0 +24753600;0;0;0.0 +24757200;0;0;0.0 +24760800;0;0;0.0 +24764400;0;0;0.0 +24768000;0;0;0.0 +24771600;0;0;0.0 +24775200;0;0;0.0 +24778800;0;0;0.0 +24782400;0;0;0.0 +24786000;0;0;0.0 +24789600;0;0;0.0 +24793200;0;0;0.0 +24796800;0;0;0.0 +24800400;0;0;0.0 +24804000;0;0;0.0 +24807600;0;2.0;0.0 +24811200;0;39.2;0.0 +24814800;0;76.3;0.0 +24818400;0;107.6;0.0 +24822000;0;380.2;0.0 +24825600;0;65.8;0.0 +24829200;0;14.4;0.0 +24832800;0;0;0.0 +24836400;0;0;0.0 +24840000;0;0;0.0 +24843600;0;0;0.0 +24847200;0;0;0.0 +24850800;0;0;0.0 +24854400;0;0;0.0 +24858000;0;0;0.0 +24861600;0;0;0.0 +24865200;0;0;0.0 +24868800;0;0;0.0 +24872400;0;75.6;0.0 +24876000;0;128.5;0.0 +24879600;0;203.9;0.0 +24883200;0;199.8;0.0 +24886800;0;494.2;0.0 +24890400;0;389.6;0.0 +24894000;0;972.7;0.0 +24897600;0;1413.9;0.0 +24901200;0;1202.3;0.0 +24904800;0;57789.6;0.0 +24908400;0;41915.6;0.0 +24912000;0;19343.9;0.0 +24915600;0;12912.5;0.0 +24919200;0;7755.9;0.0 +24922800;0;6044.7;0.0 +24926400;0;6634.2;0.0 +24930000;0;2600.7;0.0 +24933600;0;2797.5;0.0 +24937200;0;2076.9;0.0 +24940800;0;1556.6;0.0 +24944400;0;5457.2;0.0 +24948000;0;13759.6;0.0 +24951600;0;0;0.0 +24955200;0;0;0.0 +24958800;0;0;0.0 +24962400;0;0;0.0 +24966000;0;0;0.0 +24969600;0;0;0.0 +24973200;0;0;0.0 +24976800;0;0;0.0 +24980400;0;0;0.0 +24984000;0;0;0.0 +24987600;0;22.0;0.0 +24991200;0;39368.5;0.0 +24994800;0;31521.8;0.0 +24998400;0;10517.4;0.0 +25002000;0;5759.6;0.0 +25005600;-293.4;3684.3;0.0 +25009200;-1479.1;2598.7;0.0 +25012800;-1715.4;2492.7;0.0 +25016400;-1701.9;766.6;0.0 +25020000;-1878.8;483.9;0.0 +25023600;-3659.7;428.4;0.0 +25027200;-5138.3;566.3;0.0 +25030800;-2737.9;2005.9;0.0 +25034400;0;5142.1;0.0 +25038000;0;0;0.0 +25041600;0;0;0.0 +25045200;0;0;0.0 +25048800;0;0;0.0 +25052400;0;0;0.0 +25056000;0;0;0.0 +25059600;0;0;0.0 +25063200;0;0;0.0 +25066800;0;0;0.0 +25070400;0;0;0.0 +25074000;0;0;0.0 +25077600;0;25753.1;0.0 +25081200;0;21707.4;0.0 +25084800;0;8977.5;0.0 +25088400;0;6397.3;0.0 +25092000;0;4285.2;0.0 +25095600;0;2557.8;0.0 +25099200;0;2095.4;0.0 +25102800;0;818.4;0.0 +25106400;0;709.4;0.0 +25110000;0;587.5;0.0 +25113600;0;809.2;0.0 +25117200;0;3003.3;0.0 +25120800;0;8170.1;0.0 +25124400;0;0;0.0 +25128000;0;0;0.0 +25131600;0;0;0.0 +25135200;0;0;0.0 +25138800;0;0;0.0 +25142400;0;0;0.0 +25146000;0;0;0.0 +25149600;0;0;0.0 +25153200;0;0;0.0 +25156800;0;0;0.0 +25160400;0;0;0.0 +25164000;0;17177.5;0.0 +25167600;0;16679.2;0.0 +25171200;0;7712.4;0.0 +25174800;0;4602.0;0.0 +25178400;0;2152.8;0.0 +25182000;0;920.8;0.0 +25185600;0;770.3;0.0 +25189200;0;0;0.0 +25192800;0;1.8;0.0 +25196400;0;98.7;0.0 +25200000;0;392.7;0.0 +25203600;0;2527.7;0.0 +25207200;0;6326.4;0.0 +25210800;0;0;0.0 +25214400;0;0;0.0 +25218000;0;0;0.0 +25221600;0;0;0.0 +25225200;0;0;0.0 +25228800;0;0;0.0 +25232400;0;0;0.0 +25236000;0;0;0.0 +25239600;0;0;0.0 +25243200;0;0;0.0 +25246800;0;0;0.0 +25250400;0;20444.6;0.0 +25254000;0;17679.5;0.0 +25257600;0;5331.0;0.0 +25261200;0;3176.7;0.0 +25264800;0;1337.9;0.0 +25268400;-20.9;739.3;0.0 +25272000;-392.0;287.7;0.0 +25275600;-792.5;0;0.0 +25279200;-700.8;0;0.0 +25282800;-74.3;0;0.0 +25286400;0;18.8;0.0 +25290000;0;1389.9;0.0 +25293600;0;3528.1;0.0 +25297200;0;0;0.0 +25300800;0;0;0.0 +25304400;0;0;0.0 +25308000;0;0;0.0 +25311600;0;0;0.0 +25315200;0;0;0.0 +25318800;0;0;0.0 +25322400;0;0;0.0 +25326000;0;0;0.0 +25329600;0;0;0.0 +25333200;0;0;0.0 +25336800;0;0;0.0 +25340400;0;0;0.0 +25344000;0;0;0.0 +25347600;0;0;0.0 +25351200;0;0;0.0 +25354800;0;0;0.0 +25358400;0;0;0.0 +25362000;0;0;0.0 +25365600;0;0;0.0 +25369200;0;0;0.0 +25372800;0;0;0.0 +25376400;0;0;0.0 +25380000;0;0;0.0 +25383600;0;0;0.0 +25387200;0;0;0.0 +25390800;0;0;0.0 +25394400;0;0;0.0 +25398000;0;0;0.0 +25401600;0;0;0.0 +25405200;0;0;0.0 +25408800;0;0;0.0 +25412400;0;0;0.0 +25416000;0;0;0.0 +25419600;0;0;0.0 +25423200;0;0;0.0 +25426800;0;0;0.0 +25430400;0;0;0.0 +25434000;0;0;0.0 +25437600;0;0;0.0 +25441200;0;0;0.0 +25444800;0;0;0.0 +25448400;0;0;0.0 +25452000;0;0;0.0 +25455600;0;0;0.0 +25459200;0;0;0.0 +25462800;0;0;0.0 +25466400;0;0;0.0 +25470000;0;0;0.0 +25473600;0;0;0.0 +25477200;0;0;0.0 +25480800;0;0;0.0 +25484400;0;0;0.0 +25488000;0;0;0.0 +25491600;0;0;0.0 +25495200;0;0;0.0 +25498800;0;0;0.0 +25502400;0;0;0.0 +25506000;0;0;0.0 +25509600;0;16163.1;0.0 +25513200;0;11099.0;0.0 +25516800;0;3783.1;0.0 +25520400;0;2293.7;0.0 +25524000;0;1455.8;0.0 +25527600;0;1066.6;0.0 +25531200;0;2543.4;0.0 +25534800;0;871.2;0.0 +25538400;0;650.3;0.0 +25542000;0;767.1;0.0 +25545600;0;832.9;0.0 +25549200;0;4416.9;0.0 +25552800;0;12509.7;0.0 +25556400;0;0;0.0 +25560000;0;0;0.0 +25563600;0;0;0.0 +25567200;0;0;0.0 +25570800;0;0;0.0 +25574400;0;0;0.0 +25578000;0;0;0.0 +25581600;0;0;0.0 +25585200;0;0;0.0 +25588800;0;0;0.0 +25592400;0;0;0.0 +25596000;0;27796.3;0.0 +25599600;0;23705.2;0.0 +25603200;0;10613.8;0.0 +25606800;0;6193.4;0.0 +25610400;0;4366.4;0.0 +25614000;0;3154.4;0.0 +25617600;0;3005.4;0.0 +25621200;0;993.2;0.0 +25624800;0;771.6;0.0 +25628400;0;781.2;0.0 +25632000;0;966.4;0.0 +25635600;0;2327.0;0.0 +25639200;0;8265.4;0.0 +25642800;0;0;0.0 +25646400;0;0;0.0 +25650000;0;0;0.0 +25653600;0;0;0.0 +25657200;0;0;0.0 +25660800;0;0;0.0 +25664400;0;0;0.0 +25668000;0;0;0.0 +25671600;0;0;0.0 +25675200;0;0;0.0 +25678800;0;0;0.0 +25682400;0;23644.4;0.0 +25686000;0;19670.1;0.0 +25689600;0;8115.1;0.0 +25693200;0;3372.1;0.0 +25696800;0;2330.6;0.0 +25700400;0;1687.0;0.0 +25704000;-181.7;1405.7;0.0 +25707600;-575.8;137.4;0.0 +25711200;-591.7;0;0.0 +25714800;-548.2;0;0.0 +25718400;-65.8;0;0.0 +25722000;0;791.0;0.0 +25725600;0;2225.2;0.0 +25729200;0;0;0.0 +25732800;0;0;0.0 +25736400;0;0;0.0 +25740000;0;0;0.0 +25743600;0;0;0.0 +25747200;0;0;0.0 +25750800;0;0;0.0 +25754400;0;0;0.0 +25758000;0;0;0.0 +25761600;0;0;0.0 +25765200;0;0;0.0 +25768800;0;9666.1;0.0 +25772400;0;7716.9;0.0 +25776000;0;2399.3;0.0 +25779600;0;1397.6;0.0 +25783200;0;1527.5;0.0 +25786800;0;1112.5;0.0 +25790400;0;1191.8;0.0 +25794000;0;318.3;0.0 +25797600;0;270.9;0.0 +25801200;0;701.9;0.0 +25804800;0;675.4;0.0 +25808400;0;3118.1;0.0 +25812000;0;6227.1;0.0 +25815600;0;0;0.0 +25819200;0;0;0.0 +25822800;0;0;0.0 +25826400;0;0;0.0 +25830000;0;0;0.0 +25833600;0;0;0.0 +25837200;0;0;0.0 +25840800;0;0;0.0 +25844400;0;0;0.0 +25848000;0;0;0.0 +25851600;0;0;0.0 +25855200;0;22046.2;0.0 +25858800;0;19117.5;0.0 +25862400;0;8602.7;0.0 +25866000;0;3286.5;0.0 +25869600;-76.9;2202.3;0.0 +25873200;-964.1;1333.9;0.0 +25876800;-291.0;1309.2;0.0 +25880400;0;752.6;0.0 +25884000;0;124.4;0.0 +25887600;0;114.4;0.0 +25891200;0;122.5;0.0 +25894800;0;1484.6;0.0 +25898400;0;3992.1;0.0 +25902000;0;0;0.0 +25905600;0;0;0.0 +25909200;0;0;0.0 +25912800;0;0;0.0 +25916400;0;0;0.0 +25920000;0;0;0.0 +25923600;0;0;0.0 +25927200;0;0;0.0 +25930800;0;0;0.0 +25934400;0;0;0.0 +25938000;0;0;0.0 +25941600;0;0;0.0 +25945200;0;0;0.0 +25948800;0;0;0.0 +25952400;0;0;0.0 +25956000;0;0;0.0 +25959600;0;0;0.0 +25963200;0;0;0.0 +25966800;0;0;0.0 +25970400;0;0;0.0 +25974000;0;0;0.0 +25977600;0;0;0.0 +25981200;0;0;0.0 +25984800;0;0;0.0 +25988400;0;0;0.0 +25992000;0;0;0.0 +25995600;0;0;0.0 +25999200;0;0;0.0 +26002800;0;0;0.0 +26006400;0;0;0.0 +26010000;0;0;0.0 +26013600;0;0;0.0 +26017200;0;0;0.0 +26020800;0;0;0.0 +26024400;0;5.3;0.0 +26028000;0;119.7;0.0 +26031600;0;163.4;0.0 +26035200;0;89.5;0.0 +26038800;0;0;0.0 +26042400;0;0;0.0 +26046000;0;0;0.0 +26049600;0;0;0.0 +26053200;0;0;0.0 +26056800;0;0;0.0 +26060400;0;0;0.0 +26064000;0;0;0.0 +26067600;0;0;0.0 +26071200;0;0;0.0 +26074800;0;93.7;0.0 +26078400;0;561.4;0.0 +26082000;0;737.5;0.0 +26085600;0;1087.7;0.0 +26089200;0;1335.8;0.0 +26092800;0;1162.7;0.0 +26096400;0;1782.8;0.0 +26100000;0;1932.6;0.0 +26103600;0;2412.9;0.0 +26107200;0;2283.8;0.0 +26110800;0;3186.2;0.0 +26114400;0;57244.1;0.0 +26118000;0;39651.7;0.0 +26121600;0;26549.5;0.0 +26125200;0;14092.4;0.0 +26128800;0;8325.4;0.0 +26132400;-1302.8;5076.5;0.0 +26136000;-1894.7;4916.4;0.0 +26139600;-2205.0;1713.3;0.0 +26143200;-2068.1;1247.7;0.0 +26146800;-3299.1;971.1;0.0 +26150400;-4695.6;889.3;0.0 +26154000;0;3059.8;0.0 +26157600;0;8212.9;0.0 +26161200;0;0;0.0 +26164800;0;0;0.0 +26168400;0;0;0.0 +26172000;0;0;0.0 +26175600;0;0;0.0 +26179200;0;0;0.0 +26182800;0;0;0.0 +26186400;0;0;0.0 +26190000;0;0;0.0 +26193600;0;0;0.0 +26197200;0;0;0.0 +26200800;0;22844.2;0.0 +26204400;0;16707.0;0.0 +26208000;0;7958.2;0.0 +26211600;0;2141.6;0.0 +26215200;-1363.5;1153.6;0.0 +26218800;-2299.5;522.4;0.0 +26222400;-2958.7;603.0;0.0 +26226000;-3167.1;147.7;0.0 +26229600;-2836.2;70.3;0.0 +26233200;-3151.4;59.0;0.0 +26236800;-3928.7;69.8;0.0 +26240400;-15.5;1243.5;0.0 +26244000;0;3567.4;0.0 +26247600;0;0;0.0 +26251200;0;0;0.0 +26254800;0;0;0.0 +26258400;0;0;0.0 +26262000;0;0;0.0 +26265600;0;0;0.0 +26269200;0;0;0.0 +26272800;0;0;0.0 +26276400;0;0;0.0 +26280000;0;0;0.0 +26283600;0;0;0.0 +26287200;0;19610.5;0.0 +26290800;0;16033.8;0.0 +26294400;0;6925.3;0.0 +26298000;0;3141.9;0.0 +26301600;0;1654.4;0.0 +26305200;-708.0;980.9;0.0 +26308800;-1284.7;829.9;0.0 +26312400;-1153.0;171.3;0.0 +26316000;-412.9;115.7;0.0 +26319600;0;562.1;0.0 +26323200;0;639.6;0.0 +26326800;0;2496.6;0.0 +26330400;0;6801.5;0.0 +26334000;0;0;0.0 +26337600;0;0;0.0 +26341200;0;0;0.0 +26344800;0;0;0.0 +26348400;0;0;0.0 +26352000;0;0;0.0 +26355600;0;0;0.0 +26359200;0;0;0.0 +26362800;0;0;0.0 +26366400;0;0;0.0 +26370000;0;0;0.0 +26373600;0;20982.9;0.0 +26377200;0;17331.6;0.0 +26380800;0;9585.3;0.0 +26384400;0;7881.5;0.0 +26388000;0;6361.2;0.0 +26391600;0;4435.9;0.0 +26395200;0;5176.7;0.0 +26398800;0;1922.0;0.0 +26402400;0;1709.4;0.0 +26406000;0;2372.2;0.0 +26409600;0;3305.7;0.0 +26413200;0;7191.6;0.0 +26416800;0;13035.1;0.0 +26420400;0;0;0.0 +26424000;0;0;0.0 +26427600;0;0;0.0 +26431200;0;0;0.0 +26434800;0;0;0.0 +26438400;0;0;0.0 +26442000;0;0;0.0 +26445600;0;0;0.0 +26449200;0;0;0.0 +26452800;0;0;0.0 +26456400;0;0;0.0 +26460000;0;32906.5;0.0 +26463600;0;27769.1;0.0 +26467200;0;14141.7;0.0 +26470800;0;5945.7;0.0 +26474400;0;4190.9;0.0 +26478000;-926.3;3849.4;0.0 +26481600;-1638.4;3467.5;0.0 +26485200;-1865.3;1424.6;0.0 +26488800;-1428.7;1238.0;0.0 +26492400;-1398.4;993.8;0.0 +26496000;-1309.5;1028.6;0.0 +26499600;0;2430.3;0.0 +26503200;0;6806.0;0.0 +26506800;0;0;0.0 +26510400;0;0;0.0 +26514000;0;0;0.0 +26517600;0;0;0.0 +26521200;0;0;0.0 +26524800;0;0;0.0 +26528400;0;0;0.0 +26532000;0;0;0.0 +26535600;0;0;0.0 +26539200;0;0;0.0 +26542800;0;0;0.0 +26546400;0;0;0.0 +26550000;0;0;0.0 +26553600;0;0;0.0 +26557200;0;0;0.0 +26560800;0;0;0.0 +26564400;0;0;0.0 +26568000;0;0;0.0 +26571600;0;0;0.0 +26575200;0;0;0.0 +26578800;0;0;0.0 +26582400;0;0;0.0 +26586000;0;0;0.0 +26589600;0;0;0.0 +26593200;0;0;0.0 +26596800;0;0;0.0 +26600400;0;0;0.0 +26604000;0;0;0.0 +26607600;0;0;0.0 +26611200;0;0;0.0 +26614800;0;0;0.0 +26618400;0;0;0.0 +26622000;0;0;0.0 +26625600;0;0;0.0 +26629200;0;0;0.0 +26632800;0;0;0.0 +26636400;0;0;0.0 +26640000;0;0;0.0 +26643600;0;0;0.0 +26647200;0;0;0.0 +26650800;0;0;0.0 +26654400;0;0;0.0 +26658000;0;0;0.0 +26661600;0;0;0.0 +26665200;0;0;0.0 +26668800;0;0;0.0 +26672400;0;0;0.0 +26676000;0;0;0.0 +26679600;0;0;0.0 +26683200;0;0;0.0 +26686800;0;0;0.0 +26690400;0;0;0.0 +26694000;0;0;0.0 +26697600;0;0;0.0 +26701200;0;0;0.0 +26704800;0;0;0.0 +26708400;0;0;0.0 +26712000;0;0;0.0 +26715600;0;0;0.0 +26719200;0;0;0.0 +26722800;0;33253.6;0.0 +26726400;0;24565.9;0.0 +26730000;0;9910.8;0.0 +26733600;0;6579.0;0.0 +26737200;0;4777.6;0.0 +26740800;0;3689.8;0.0 +26744400;0;5327.5;0.0 +26748000;0;4031.7;0.0 +26751600;0;3404.9;0.0 +26755200;0;3483.4;0.0 +26758800;0;4191.5;0.0 +26762400;0;8847.8;0.0 +26766000;0;14352.4;0.0 +26769600;0;0;0.0 +26773200;0;0;0.0 +26776800;0;0;0.0 +26780400;0;0;0.0 +26784000;0;0;0.0 +26787600;0;0;0.0 +26791200;0;0;0.0 +26794800;0;0;0.0 +26798400;0;0;0.0 +26802000;0;0;0.0 +26805600;0;0;0.0 +26809200;0;31279.9;0.0 +26812800;0;27089.7;0.0 +26816400;0;13307.1;0.0 +26820000;0;9790.0;0.0 +26823600;0;7469.3;0.0 +26827200;0;5042.0;0.0 +26830800;0;6226.8;0.0 +26834400;0;4569.9;0.0 +26838000;0;2477.0;0.0 +26841600;0;2420.0;0.0 +26845200;0;3673.8;0.0 +26848800;0;7987.5;0.0 +26852400;0;13570.5;0.0 +26856000;0;0;0.0 +26859600;0;0;0.0 +26863200;0;0;0.0 +26866800;0;0;0.0 +26870400;0;0;0.0 +26874000;0;0;0.0 +26877600;0;0;0.0 +26881200;0;0;0.0 +26884800;0;0;0.0 +26888400;0;0;0.0 +26892000;0;0;0.0 +26895600;0;24230.9;0.0 +26899200;0;19356.8;0.0 +26902800;0;9744.4;0.0 +26906400;0;7798.6;0.0 +26910000;0;6496.3;0.0 +26913600;0;5485.9;0.0 +26917200;0;4836.6;0.0 +26920800;0;3720.3;0.0 +26924400;0;3532.0;0.0 +26928000;0;2779.9;0.0 +26931600;0;3834.2;0.0 +26935200;0;6929.9;0.0 +26938800;0;12196.1;0.0 +26942400;0;0;0.0 +26946000;0;0;0.0 +26949600;0;0;0.0 +26953200;0;0;0.0 +26956800;0;0;0.0 +26960400;0;0;0.0 +26964000;0;0;0.0 +26967600;0;0;0.0 +26971200;0;0;0.0 +26974800;0;0;0.0 +26978400;0;0;0.0 +26982000;0;24086.5;0.0 +26985600;0;18999.8;0.0 +26989200;0;9160.3;0.0 +26992800;0;6778.0;0.0 +26996400;0;4400.9;0.0 +27000000;0;3602.6;0.0 +27003600;0;2732.6;0.0 +27007200;0;1672.0;0.0 +27010800;0;1523.7;0.0 +27014400;0;1760.6;0.0 +27018000;0;2280.5;0.0 +27021600;0;4322.6;0.0 +27025200;0;10075.2;0.0 +27028800;0;0;0.0 +27032400;0;0;0.0 +27036000;0;0;0.0 +27039600;0;0;0.0 +27043200;0;0;0.0 +27046800;0;0;0.0 +27050400;0;0;0.0 +27054000;0;0;0.0 +27057600;0;0;0.0 +27061200;0;0;0.0 +27064800;0;0;0.0 +27068400;0;19046.3;0.0 +27072000;0;16241.1;0.0 +27075600;0;6194.3;0.0 +27079200;0;4351.5;0.0 +27082800;0;2885.7;0.0 +27086400;0;3714.2;0.0 +27090000;0;4143.1;0.0 +27093600;0;3004.2;0.0 +27097200;0;2636.1;0.0 +27100800;0;3031.5;0.0 +27104400;0;3858.5;0.0 +27108000;0;7048.6;0.0 +27111600;0;11968.6;0.0 +27115200;0;0;0.0 +27118800;0;0;0.0 +27122400;0;0;0.0 +27126000;0;0;0.0 +27129600;0;0;0.0 +27133200;0;0;0.0 +27136800;0;0;0.0 +27140400;0;0;0.0 +27144000;0;0;0.0 +27147600;0;0;0.0 +27151200;0;0;0.0 +27154800;0;0;0.0 +27158400;0;0;0.0 +27162000;0;0;0.0 +27165600;0;0;0.0 +27169200;0;0;0.0 +27172800;0;0;0.0 +27176400;0;0;0.0 +27180000;0;0;0.0 +27183600;0;0;0.0 +27187200;0;0;0.0 +27190800;0;0;0.0 +27194400;0;0;0.0 +27198000;0;0;0.0 +27201600;0;28.1;0.0 +27205200;0;104.4;0.0 +27208800;0;294.4;0.0 +27212400;0;330.9;0.0 +27216000;0;562.0;0.0 +27219600;0;961.7;0.0 +27223200;0;1199.9;0.0 +27226800;0;1229.8;0.0 +27230400;0;1819.5;0.0 +27234000;0;1660.8;0.0 +27237600;0;2296.5;0.0 +27241200;0;2628.7;0.0 +27244800;0;2901.3;0.0 +27248400;0;1235.7;0.0 +27252000;0;875.4;0.0 +27255600;0;428.7;0.0 +27259200;0;71.5;0.0 +27262800;0;0;0.0 +27266400;0;0;0.0 +27270000;0;0;0.0 +27273600;0;0;0.0 +27277200;0;1.4;0.0 +27280800;0;133.3;0.0 +27284400;0;153.7;0.0 +27288000;0;193.1;0.0 +27291600;0;211.2;0.0 +27295200;0;415.4;0.0 +27298800;0;460.9;0.0 +27302400;0;508.9;0.0 +27306000;0;396.8;0.0 +27309600;0;544.2;0.0 +27313200;0;439.2;0.0 +27316800;0;454.6;0.0 +27320400;0;666.3;0.0 +27324000;0;1137.5;0.0 +27327600;0;56886.1;0.0 +27331200;0;40889.9;0.0 +27334800;0;23063.2;0.0 +27338400;0;16845.0;0.0 +27342000;0;13085.8;0.0 +27345600;0;10506.3;0.0 +27349200;0;11839.5;0.0 +27352800;0;7726.3;0.0 +27356400;0;6063.8;0.0 +27360000;0;5641.8;0.0 +27363600;0;6434.7;0.0 +27367200;0;11912.1;0.0 +27370800;0;18413.8;0.0 +27374400;0;0;0.0 +27378000;0;0;0.0 +27381600;0;0;0.0 +27385200;0;0;0.0 +27388800;0;0;0.0 +27392400;0;0;0.0 +27396000;0;0;0.0 +27399600;0;0;0.0 +27403200;0;0;0.0 +27406800;0;0;0.0 +27410400;0;0;0.0 +27414000;0;26538.9;0.0 +27417600;0;21199.2;0.0 +27421200;0;7634.9;0.0 +27424800;0;5419.3;0.0 +27428400;0;4508.9;0.0 +27432000;0;2945.4;0.0 +27435600;0;3148.4;0.0 +27439200;0;1592.1;0.0 +27442800;0;1494.0;0.0 +27446400;0;1592.7;0.0 +27450000;0;1903.6;0.0 +27453600;0;4554.0;0.0 +27457200;0;10527.0;0.0 +27460800;0;0;0.0 +27464400;0;0;0.0 +27468000;0;0;0.0 +27471600;0;0;0.0 +27475200;0;0;0.0 +27478800;0;0;0.0 +27482400;0;0;0.0 +27486000;0;0;0.0 +27489600;0;0;0.0 +27493200;0;0;0.0 +27496800;0;0;0.0 +27500400;0;32292.0;0.0 +27504000;0;26648.4;0.0 +27507600;0;8000.7;0.0 +27511200;0;5189.1;0.0 +27514800;0;4278.1;0.0 +27518400;-618.3;3072.2;0.0 +27522000;-854.3;1840.2;0.0 +27525600;-1053.7;1272.2;0.0 +27529200;-1025.9;1136.8;0.0 +27532800;-361.3;1133.8;0.0 +27536400;0;1594.9;0.0 +27540000;0;3419.0;0.0 +27543600;0;8333.5;0.0 +27547200;0;0;0.0 +27550800;0;0;0.0 +27554400;0;0;0.0 +27558000;0;0;0.0 +27561600;0;0;0.0 +27565200;0;0;0.0 +27568800;0;0;0.0 +27572400;0;0;0.0 +27576000;0;0;0.0 +27579600;0;0;0.0 +27583200;0;0;0.0 +27586800;0;17281.9;0.0 +27590400;0;14149.5;0.0 +27594000;0;4884.8;0.0 +27597600;0;1545.0;0.0 +27601200;0;694.0;0.0 +27604800;0;35.4;0.0 +27608400;-36.0;0;0.0 +27612000;0;0;0.0 +27615600;0;0;0.0 +27619200;0;3.3;0.0 +27622800;0;0;0.0 +27626400;0;1009.1;0.0 +27630000;0;5759.6;0.0 +27633600;0;0;0.0 +27637200;0;0;0.0 +27640800;0;0;0.0 +27644400;0;0;0.0 +27648000;0;0;0.0 +27651600;0;0;0.0 +27655200;0;0;0.0 +27658800;0;0;0.0 +27662400;0;0;0.0 +27666000;0;0;0.0 +27669600;0;0;0.0 +27673200;0;27285.8;0.0 +27676800;0;22233.7;0.0 +27680400;0;12051.8;0.0 +27684000;0;9038.9;0.0 +27687600;0;6687.3;0.0 +27691200;0;6605.4;0.0 +27694800;0;7111.5;0.0 +27698400;0;5750.9;0.0 +27702000;0;4966.5;0.0 +27705600;0;5362.4;0.0 +27709200;0;5869.4;0.0 +27712800;0;10063.7;0.0 +27716400;0;15859.1;0.0 +27720000;0;0;0.0 +27723600;0;0;0.0 +27727200;0;0;0.0 +27730800;0;0;0.0 +27734400;0;0;0.0 +27738000;0;0;0.0 +27741600;0;0;0.0 +27745200;0;0;0.0 +27748800;0;0;0.0 +27752400;0;0;0.0 +27756000;0;0;0.0 +27759600;0;0;0.0 +27763200;0;27.6;0.0 +27766800;0;10.3;0.0 +27770400;0;0;0.0 +27774000;0;0;0.0 +27777600;0;0;0.0 +27781200;0;0;0.0 +27784800;0;0;0.0 +27788400;0;0;0.0 +27792000;0;0;0.0 +27795600;0;0;0.0 +27799200;0;36.1;0.0 +27802800;0;156.1;0.0 +27806400;0;294.9;0.0 +27810000;0;438.5;0.0 +27813600;0;844.6;0.0 +27817200;0;1190.4;0.0 +27820800;0;1484.0;0.0 +27824400;0;1498.2;0.0 +27828000;0;1468.9;0.0 +27831600;0;1726.1;0.0 +27835200;0;1566.4;0.0 +27838800;0;1991.4;0.0 +27842400;0;2182.5;0.0 +27846000;0;2543.6;0.0 +27849600;0;2529.7;0.0 +27853200;0;2290.4;0.0 +27856800;0;1537.8;0.0 +27860400;0;920.3;0.0 +27864000;0;559.0;0.0 +27867600;0;52.9;0.0 +27871200;0;27.7;0.0 +27874800;0;112.5;0.0 +27878400;0;284.4;0.0 +27882000;0;577.5;0.0 +27885600;0;596.7;0.0 +27889200;0;822.9;0.0 +27892800;0;1176.0;0.0 +27896400;0;847.5;0.0 +27900000;0;1090.9;0.0 +27903600;0;1355.2;0.0 +27907200;0;1649.0;0.0 +27910800;0;685.5;0.0 +27914400;0;591.0;0.0 +27918000;0;993.4;0.0 +27921600;0;1084.3;0.0 +27925200;0;1031.2;0.0 +27928800;0;1837.8;0.0 +27932400;0;67312.8;0.0 +27936000;0;43814.0;0.0 +27939600;0;25132.7;0.0 +27943200;0;18231.2;0.0 +27946800;0;13473.3;0.0 +27950400;0;8326.5;0.0 +27954000;0;9620.5;0.0 +27957600;0;6561.4;0.0 +27961200;0;6069.9;0.0 +27964800;0;6570.4;0.0 +27968400;0;6394.0;0.0 +27972000;0;11528.7;0.0 +27975600;0;18064.3;0.0 +27979200;0;0;0.0 +27982800;0;0;0.0 +27986400;0;0;0.0 +27990000;0;0;0.0 +27993600;0;0;0.0 +27997200;0;0;0.0 +28000800;0;0;0.0 +28004400;0;0;0.0 +28008000;0;0;0.0 +28011600;0;0;0.0 +28015200;0;0;0.0 +28018800;0;34799.9;0.0 +28022400;0;28930.7;0.0 +28026000;0;14901.8;0.0 +28029600;0;10696.0;0.0 +28033200;0;9101.3;0.0 +28036800;0;6556.8;0.0 +28040400;0;7131.0;0.0 +28044000;0;4117.2;0.0 +28047600;0;4165.8;0.0 +28051200;0;5019.6;0.0 +28054800;0;6188.9;0.0 +28058400;0;10341.0;0.0 +28062000;0;16082.5;0.0 +28065600;0;0;0.0 +28069200;0;0;0.0 +28072800;0;0;0.0 +28076400;0;0;0.0 +28080000;0;0;0.0 +28083600;0;0;0.0 +28087200;0;0;0.0 +28090800;0;0;0.0 +28094400;0;0;0.0 +28098000;0;0;0.0 +28101600;0;0;0.0 +28105200;0;32393.7;0.0 +28108800;0;26546.1;0.0 +28112400;0;12770.0;0.0 +28116000;0;8922.4;0.0 +28119600;0;7672.4;0.0 +28123200;0;5996.5;0.0 +28126800;0;6031.9;0.0 +28130400;0;2919.4;0.0 +28134000;0;3130.6;0.0 +28137600;0;3121.7;0.0 +28141200;0;4697.3;0.0 +28144800;0;9137.3;0.0 +28148400;0;15920.4;0.0 +28152000;0;0;0.0 +28155600;0;0;0.0 +28159200;0;0;0.0 +28162800;0;0;0.0 +28166400;0;0;0.0 +28170000;0;0;0.0 +28173600;0;0;0.0 +28177200;0;0;0.0 +28180800;0;0;0.0 +28184400;0;0;0.0 +28188000;0;0;0.0 +28191600;0;33363.7;0.0 +28195200;0;28517.0;0.0 +28198800;0;13120.7;0.0 +28202400;0;10038.8;0.0 +28206000;0;7510.3;0.0 +28209600;0;5463.2;0.0 +28213200;0;6268.5;0.0 +28216800;0;4082.6;0.0 +28220400;0;4601.8;0.0 +28224000;0;4044.7;0.0 +28227600;0;5511.3;0.0 +28231200;0;9634.7;0.0 +28234800;0;15505.9;0.0 +28238400;0;0;0.0 +28242000;0;0;0.0 +28245600;0;0;0.0 +28249200;0;0;0.0 +28252800;0;0;0.0 +28256400;0;0;0.0 +28260000;0;0;0.0 +28263600;0;0;0.0 +28267200;0;0;0.0 +28270800;0;75.2;0.0 +28274400;0;312.6;0.0 +28278000;0;39721.3;0.0 +28281600;0;32562.7;0.0 +28285200;0;15904.2;0.0 +28288800;0;9805.1;0.0 +28292400;0;6900.1;0.0 +28296000;0;4962.0;0.0 +28299600;0;3891.6;0.0 +28303200;-529.2;2812.5;0.0 +28306800;-274.0;2708.2;0.0 +28310400;0;2880.9;0.0 +28314000;0;3248.0;0.0 +28317600;0;6653.2;0.0 +28321200;0;13163.7;0.0 +28324800;0;0;0.0 +28328400;0;0;0.0 +28332000;0;0;0.0 +28335600;0;0;0.0 +28339200;0;0;0.0 +28342800;0;0;0.0 +28346400;0;0;0.0 +28350000;0;0;0.0 +28353600;0;78.3;0.0 +28357200;0;288.8;0.0 +28360800;0;681.9;0.0 +28364400;0;1071.3;0.0 +28368000;0;1105.9;0.0 +28371600;0;332.8;0.0 +28375200;0;78.0;0.0 +28378800;0;0;0.0 +28382400;0;0;0.0 +28386000;0;0;0.0 +28389600;0;0;0.0 +28393200;0;0;0.0 +28396800;0;0;0.0 +28400400;0;0;0.0 +28404000;0;0;0.0 +28407600;0;0;0.0 +28411200;0;0;0.0 +28414800;0;0;0.0 +28418400;0;35.4;0.0 +28422000;0;61.8;0.0 +28425600;0;63.9;0.0 +28429200;0;62.6;0.0 +28432800;0;76.8;0.0 +28436400;0;53.1;0.0 +28440000;0;62.2;0.0 +28443600;0;61.2;0.0 +28447200;0;27.6;0.0 +28450800;0;56.4;0.0 +28454400;0;21.5;0.0 +28458000;0;0;0.0 +28461600;0;0;0.0 +28465200;0;0;0.0 +28468800;0;0;0.0 +28472400;0;0;0.0 +28476000;0;0;0.0 +28479600;0;0;0.0 +28483200;0;0;0.0 +28486800;0;0;0.0 +28490400;0;0;0.0 +28494000;0;0;0.0 +28497600;0;0;0.0 +28501200;0;0;0.0 +28504800;0;0;0.0 +28508400;0;0;0.0 +28512000;0;0;0.0 +28515600;0;0;0.0 +28519200;0;0;0.0 +28522800;0;0;0.0 +28526400;0;0;0.0 +28530000;0;0;0.0 +28533600;0;0;0.0 +28537200;0;25745.0;0.0 +28540800;0;18098.8;0.0 +28544400;0;8169.6;0.0 +28548000;0;6955.2;0.0 +28551600;0;3778.5;0.0 +28555200;-1000.1;1591.5;0.0 +28558800;-76.0;2394.1;0.0 +28562400;0;1381.6;0.0 +28566000;0;2112.0;0.0 +28569600;0;2455.7;0.0 +28573200;0;2783.0;0.0 +28576800;0;6415.8;0.0 +28580400;0;11742.5;0.0 +28584000;0;0;0.0 +28587600;0;0;0.0 +28591200;0;0;0.0 +28594800;0;0;0.0 +28598400;0;0;0.0 +28602000;0;0;0.0 +28605600;0;0;0.0 +28609200;0;0;0.0 +28612800;0;0;0.0 +28616400;0;0;0.0 +28620000;0;0;0.0 +28623600;0;25807.3;0.0 +28627200;0;23730.7;0.0 +28630800;0;11423.4;0.0 +28634400;0;8427.1;0.0 +28638000;0;6046.7;0.0 +28641600;0;5641.2;0.0 +28645200;0;6314.0;0.0 +28648800;0;5260.5;0.0 +28652400;0;4650.2;0.0 +28656000;0;5421.3;0.0 +28659600;0;5987.7;0.0 +28663200;0;9971.6;0.0 +28666800;0;16205.3;0.0 +28670400;0;0;0.0 +28674000;0;0;0.0 +28677600;0;0;0.0 +28681200;0;0;0.0 +28684800;0;0;0.0 +28688400;0;0;0.0 +28692000;0;0;0.0 +28695600;0;0;0.0 +28699200;0;0;0.0 +28702800;0;0;0.0 +28706400;0;0;0.0 +28710000;0;36722.0;0.0 +28713600;0;29887.8;0.0 +28717200;0;15853.6;0.0 +28720800;0;10847.7;0.0 +28724400;0;7775.0;0.0 +28728000;0;7373.8;0.0 +28731600;0;7466.6;0.0 +28735200;0;6880.5;0.0 +28738800;0;6421.4;0.0 +28742400;0;6755.9;0.0 +28746000;0;6344.4;0.0 +28749600;0;9917.0;0.0 +28753200;0;15613.7;0.0 +28756800;0;0;0.0 +28760400;0;0;0.0 +28764000;0;0;0.0 +28767600;0;0;0.0 +28771200;0;0;0.0 +28774800;0;0;0.0 +28778400;0;0;0.0 +28782000;0;0;0.0 +28785600;0;0;0.0 +28789200;0;0;0.0 +28792800;0;0;0.0 +28796400;0;31111.8;0.0 +28800000;0;27900.9;0.0 +28803600;0;13884.6;0.0 +28807200;0;10094.5;0.0 +28810800;0;9142.4;0.0 +28814400;0;8837.8;0.0 +28818000;0;10108.9;0.0 +28821600;0;7670.8;0.0 +28825200;0;7558.0;0.0 +28828800;0;7149.1;0.0 +28832400;0;7140.6;0.0 +28836000;0;10796.9;0.0 +28839600;0;16698.0;0.0 +28843200;0;0;0.0 +28846800;0;0;0.0 +28850400;0;0;0.0 +28854000;0;0;0.0 +28857600;0;0;0.0 +28861200;0;0;0.0 +28864800;0;0;0.0 +28868400;0;0;0.0 +28872000;0;0;0.0 +28875600;0;0;0.0 +28879200;0;0;0.0 +28882800;0;23737.5;0.0 +28886400;0;21230.1;0.0 +28890000;0;7882.8;0.0 +28893600;0;6042.4;0.0 +28897200;0;5099.5;0.0 +28900800;0;4230.7;0.0 +28904400;0;3189.1;0.0 +28908000;0;3385.3;0.0 +28911600;0;4713.4;0.0 +28915200;0;5146.7;0.0 +28918800;0;5835.5;0.0 +28922400;0;9387.8;0.0 +28926000;0;16084.4;0.0 +28929600;0;0;0.0 +28933200;0;0;0.0 +28936800;0;0;0.0 +28940400;0;0;0.0 +28944000;0;0;0.0 +28947600;0;0;0.0 +28951200;0;0;0.0 +28954800;0;0;0.0 +28958400;0;0;0.0 +28962000;0;0;0.0 +28965600;0;0;0.0 +28969200;0;0;0.0 +28972800;0;0;0.0 +28976400;0;0;0.0 +28980000;0;0;0.0 +28983600;0;0;0.0 +28987200;0;0;0.0 +28990800;0;0;0.0 +28994400;0;0;0.0 +28998000;0;0;0.0 +29001600;0;50.2;0.0 +29005200;0;519.7;0.0 +29008800;0;1522.7;0.0 +29012400;0;2300.9;0.0 +29016000;0;2146.9;0.0 +29019600;0;2744.6;0.0 +29023200;0;3205.5;0.0 +29026800;0;2875.6;0.0 +29030400;0;3629.3;0.0 +29034000;0;3749.2;0.0 +29037600;0;2853.6;0.0 +29041200;0;3493.0;0.0 +29044800;0;3862.7;0.0 +29048400;0;3374.9;0.0 +29052000;0;3870.8;0.0 +29055600;0;4510.6;0.0 +29059200;0;3860.6;0.0 +29062800;0;3073.8;0.0 +29066400;0;2356.4;0.0 +29070000;0;1725.8;0.0 +29073600;0;1437.8;0.0 +29077200;0;1582.6;0.0 +29080800;0;1523.3;0.0 +29084400;0;1811.0;0.0 +29088000;0;1912.4;0.0 +29091600;0;3899.4;0.0 +29095200;0;4436.2;0.0 +29098800;0;4746.3;0.0 +29102400;0;5656.2;0.0 +29106000;0;4991.4;0.0 +29109600;0;6328.1;0.0 +29113200;0;4946.6;0.0 +29116800;0;7610.2;0.0 +29120400;0;5506.2;0.0 +29124000;0;5244.1;0.0 +29127600;0;6500.3;0.0 +29131200;0;3673.0;0.0 +29134800;0;5935.1;0.0 +29138400;0;5488.7;0.0 +29142000;0;94895.3;0.0 +29145600;0;59404.4;0.0 +29149200;0;41164.0;0.0 +29152800;0;27363.6;0.0 +29156400;0;23723.5;0.0 +29160000;-239.3;18323.5;0.0 +29163600;0;16105.6;0.0 +29167200;0;10277.8;0.0 +29170800;0;8196.3;0.0 +29174400;0;7131.9;0.0 +29178000;0;8805.6;0.0 +29181600;0;15294.2;0.0 +29185200;0;18754.7;0.0 +29188800;0;0;0.0 +29192400;0;0;0.0 +29196000;0;0;0.0 +29199600;0;0;0.0 +29203200;0;0;0.0 +29206800;0;97.2;0.0 +29210400;0;283.4;0.0 +29214000;0;504.2;0.0 +29217600;0;1142.1;0.0 +29221200;0;1359.7;0.0 +29224800;0;1965.0;0.0 +29228400;0;63142.1;0.0 +29232000;0;42653.1;0.0 +29235600;0;24730.9;0.0 +29239200;0;20325.9;0.0 +29242800;0;17956.8;0.0 +29246400;0;14463.2;0.0 +29250000;0;14807.2;0.0 +29253600;0;13264.5;0.0 +29257200;0;12672.1;0.0 +29260800;0;13515.5;0.0 +29264400;0;13611.6;0.0 +29268000;0;18778.0;0.0 +29271600;0;22203.6;0.0 +29275200;0;0;0.0 +29278800;0;0;0.0 +29282400;0;0;0.0 +29286000;0;0;0.0 +29289600;0;106.7;0.0 +29293200;0;101.7;0.0 +29296800;0;178.5;0.0 +29300400;0;498.9;0.0 +29304000;0;1857.1;0.0 +29307600;0;2475.4;0.0 +29311200;0;2807.3;0.0 +29314800;0;50504.1;0.0 +29318400;0;40083.2;0.0 +29322000;0;22509.9;0.0 +29325600;0;18955.8;0.0 +29329200;0;15136.4;0.0 +29332800;0;12509.9;0.0 +29336400;0;14865.5;0.0 +29340000;0;11373.2;0.0 +29343600;0;11138.3;0.0 +29347200;0;11265.6;0.0 +29350800;0;11334.3;0.0 +29354400;0;17322.4;0.0 +29358000;0;21493.0;0.0 +29361600;0;0;0.0 +29365200;0;0;0.0 +29368800;0;0;0.0 +29372400;0;143.0;0.0 +29376000;0;771.7;0.0 +29379600;0;1740.6;0.0 +29383200;0;3079.1;0.0 +29386800;0;3504.4;0.0 +29390400;0;3874.9;0.0 +29394000;0;4421.2;0.0 +29397600;0;5166.9;0.0 +29401200;0;70447.6;0.0 +29404800;0;47587.4;0.0 +29408400;0;28870.5;0.0 +29412000;0;21768.4;0.0 +29415600;0;16974.2;0.0 +29419200;0;15611.2;0.0 +29422800;0;13422.2;0.0 +29426400;0;10588.4;0.0 +29430000;0;9174.1;0.0 +29433600;0;8926.4;0.0 +29437200;0;10266.4;0.0 +29440800;0;17673.3;0.0 +29444400;0;20783.9;0.0 +29448000;0;0;0.0 +29451600;0;0;0.0 +29455200;0;0;0.0 +29458800;0;237.0;0.0 +29462400;0;292.9;0.0 +29466000;0;535.0;0.0 +29469600;0;1461.8;0.0 +29473200;0;2623.9;0.0 +29476800;0;4010.3;0.0 +29480400;0;4970.0;0.0 +29484000;0;5725.9;0.0 +29487600;0;67412.0;0.0 +29491200;0;47374.1;0.0 +29494800;0;27704.9;0.0 +29498400;0;21370.0;0.0 +29502000;0;15494.7;0.0 +29505600;0;12801.2;0.0 +29509200;0;13629.1;0.0 +29512800;0;10696.3;0.0 +29516400;0;10580.5;0.0 +29520000;0;10619.5;0.0 +29523600;0;10992.5;0.0 +29527200;0;17504.2;0.0 +29530800;0;20121.2;0.0 +29534400;0;0;0.0 +29538000;0;0;0.0 +29541600;0;0;0.0 +29545200;0;0;0.0 +29548800;0;17.4;0.0 +29552400;0;276.0;0.0 +29556000;0;304.8;0.0 +29559600;0;1182.4;0.0 +29563200;0;2133.8;0.0 +29566800;0;2449.3;0.0 +29570400;0;3030.0;0.0 +29574000;0;3368.4;0.0 +29577600;0;3253.0;0.0 +29581200;0;3354.5;0.0 +29584800;0;3879.2;0.0 +29588400;0;2810.9;0.0 +29592000;0;4457.7;0.0 +29595600;0;3864.1;0.0 +29599200;0;3960.2;0.0 +29602800;0;4009.8;0.0 +29606400;0;5394.7;0.0 +29610000;0;8454.2;0.0 +29613600;0;9183.3;0.0 +29617200;0;10235.7;0.0 +29620800;0;8880.3;0.0 +29624400;0;9171.2;0.0 +29628000;0;9347.8;0.0 +29631600;0;11616.3;0.0 +29635200;0;8581.5;0.0 +29638800;0;11509.7;0.0 +29642400;0;8495.3;0.0 +29646000;0;11755.3;0.0 +29649600;0;8376.6;0.0 +29653200;0;13187.6;0.0 +29656800;0;9680.5;0.0 +29660400;0;12687.3;0.0 +29664000;0;10412.7;0.0 +29667600;0;11504.7;0.0 +29671200;0;6549.6;0.0 +29674800;0;8663.4;0.0 +29678400;0;7171.0;0.0 +29682000;0;3933.3;0.0 +29685600;0;4691.2;0.0 +29689200;0;4671.6;0.0 +29692800;0;4522.3;0.0 +29696400;0;6456.2;0.0 +29700000;0;8891.7;0.0 +29703600;0;9145.4;0.0 +29707200;0;8745.6;0.0 +29710800;0;11185.1;0.0 +29714400;0;8185.3;0.0 +29718000;0;11213.9;0.0 +29721600;0;9594.4;0.0 +29725200;0;12725.5;0.0 +29728800;0;9881.5;0.0 +29732400;0;12901.2;0.0 +29736000;0;10529.6;0.0 +29739600;0;13440.9;0.0 +29743200;0;11058.2;0.0 +29746800;0;128466.8;0.0 +29750400;0;83014.7;0.0 +29754000;0;62049.3;0.0 +29757600;0;48497.7;0.0 +29761200;0;36049.0;0.0 +29764800;0;32311.8;0.0 +29768400;0;26072.0;0.0 +29772000;0;19109.7;0.0 +29775600;0;16785.9;0.0 +29779200;0;14043.9;0.0 +29782800;0;16494.1;0.0 +29786400;0;24675.2;0.0 +29790000;0;25683.7;0.0 +29793600;0;0;0.0 +29797200;0;73.7;0.0 +29800800;0;637.6;0.0 +29804400;0;1790.5;0.0 +29808000;0;2742.0;0.0 +29811600;0;4042.7;0.0 +29815200;0;5461.6;0.0 +29818800;0;5420.8;0.0 +29822400;0;5171.8;0.0 +29826000;0;6675.3;0.0 +29829600;0;7167.4;0.0 +29833200;0;95744.2;0.0 +29836800;0;55825.5;0.0 +29840400;0;37688.9;0.0 +29844000;0;29456.8;0.0 +29847600;0;24958.7;0.0 +29851200;0;20558.4;0.0 +29854800;0;19562.5;0.0 +29858400;0;14152.0;0.0 +29862000;0;14242.3;0.0 +29865600;0;13187.6;0.0 +29869200;0;13300.0;0.0 +29872800;0;17958.7;0.0 +29876400;0;20749.3;0.0 +29880000;0;0;0.0 +29883600;0;0;0.0 +29887200;0;0;0.0 +29890800;0;0;0.0 +29894400;0;32.4;0.0 +29898000;0;120.1;0.0 +29901600;0;233.8;0.0 +29905200;0;246.9;0.0 +29908800;0;317.6;0.0 +29912400;0;352.2;0.0 +29916000;0;520.2;0.0 +29919600;0;42079.9;0.0 +29923200;0;34873.1;0.0 +29926800;0;18472.9;0.0 +29930400;0;14302.3;0.0 +29934000;0;11454.9;0.0 +29937600;0;7938.3;0.0 +29941200;0;7113.3;0.0 +29944800;0;6571.2;0.0 +29948400;0;7144.4;0.0 +29952000;0;7061.2;0.0 +29955600;0;7344.1;0.0 +29959200;0;11071.6;0.0 +29962800;0;17100.5;0.0 +29966400;0;0;0.0 +29970000;0;0;0.0 +29973600;0;0;0.0 +29977200;0;0;0.0 +29980800;0;0;0.0 +29984400;0;0;0.0 +29988000;0;0;0.0 +29991600;0;0;0.0 +29995200;0;0;0.0 +29998800;0;0;0.0 +30002400;0;0;0.0 +30006000;0;27115.1;0.0 +30009600;0;21618.6;0.0 +30013200;0;11551.8;0.0 +30016800;0;8940.3;0.0 +30020400;0;7360.7;0.0 +30024000;0;6259.7;0.0 +30027600;0;6308.9;0.0 +30031200;0;4664.2;0.0 +30034800;0;3982.9;0.0 +30038400;0;4894.2;0.0 +30042000;0;5264.4;0.0 +30045600;0;8390.6;0.0 +30049200;0;13208.3;0.0 +30052800;0;0;0.0 +30056400;0;0;0.0 +30060000;0;0;0.0 +30063600;0;0;0.0 +30067200;0;0;0.0 +30070800;0;0;0.0 +30074400;0;0;0.0 +30078000;0;0;0.0 +30081600;0;0;0.0 +30085200;0;0;0.0 +30088800;0;0;0.0 +30092400;0;30802.6;0.0 +30096000;0;25911.1;0.0 +30099600;0;12548.4;0.0 +30103200;0;10242.0;0.0 +30106800;0;8611.4;0.0 +30110400;0;6096.7;0.0 +30114000;0;5804.8;0.0 +30117600;0;4205.7;0.0 +30121200;0;4201.3;0.0 +30124800;0;4616.7;0.0 +30128400;0;5336.5;0.0 +30132000;0;8790.3;0.0 +30135600;0;14101.3;0.0 +30139200;0;0;0.0 +30142800;0;0;0.0 +30146400;0;0;0.0 +30150000;0;0;0.0 +30153600;0;0;0.0 +30157200;0;0;0.0 +30160800;0;0;0.0 +30164400;0;0;0.0 +30168000;0;0;0.0 +30171600;0;0;0.0 +30175200;0;0;0.0 +30178800;0;52.4;0.0 +30182400;0;35.8;0.0 +30186000;0;131.2;0.0 +30189600;0;29.9;0.0 +30193200;0;0;0.0 +30196800;0;0;0.0 +30200400;0;0;0.0 +30204000;0;0;0.0 +30207600;0;0;0.0 +30211200;0;0;0.0 +30214800;0;65.0;0.0 +30218400;0;217.2;0.0 +30222000;0;463.9;0.0 +30225600;0;823.9;0.0 +30229200;0;1066.7;0.0 +30232800;0;1430.0;0.0 +30236400;0;1627.4;0.0 +30240000;0;1871.8;0.0 +30243600;0;2490.8;0.0 +30247200;0;2719.3;0.0 +30250800;0;3192.3;0.0 +30254400;0;3539.8;0.0 +30258000;0;4055.6;0.0 +30261600;0;4135.5;0.0 +30265200;0;5745.9;0.0 +30268800;0;4445.5;0.0 +30272400;0;2955.4;0.0 +30276000;0;2868.7;0.0 +30279600;0;3170.3;0.0 +30283200;0;1965.3;0.0 +30286800;0;1194.4;0.0 +30290400;0;1292.4;0.0 +30294000;0;1403.0;0.0 +30297600;0;1930.3;0.0 +30301200;0;2135.7;0.0 +30304800;0;2708.3;0.0 +30308400;0;3124.3;0.0 +30312000;0;3429.6;0.0 +30315600;0;4033.5;0.0 +30319200;0;4239.0;0.0 +30322800;0;5860.8;0.0 +30326400;0;4233.6;0.0 +30330000;0;3926.6;0.0 +30333600;0;4370.0;0.0 +30337200;0;2788.3;0.0 +30340800;0;4557.7;0.0 +30344400;0;4065.1;0.0 +30348000;0;3029.6;0.0 +30351600;0;78138.8;0.0 +30355200;0;51002.3;0.0 +30358800;0;32198.8;0.0 +30362400;0;26369.2;0.0 +30366000;0;20705.3;0.0 +30369600;0;15788.0;0.0 +30373200;0;15427.0;0.0 +30376800;0;11515.8;0.0 +30380400;0;10191.7;0.0 +30384000;0;9361.9;0.0 +30387600;0;9076.0;0.0 +30391200;0;14794.3;0.0 +30394800;0;21564.8;0.0 +30398400;0;0;0.0 +30402000;0;0;0.0 +30405600;0;0;0.0 +30409200;0;0;0.0 +30412800;0;0;0.0 +30416400;0;0;0.0 +30420000;0;0;0.0 +30423600;0;0;0.0 +30427200;0;0;0.0 +30430800;0;0;0.0 +30434400;0;8.7;0.0 +30438000;0;40338.2;0.0 +30441600;0;32801.2;0.0 +30445200;0;17446.8;0.0 +30448800;0;13495.0;0.0 +30452400;0;10187.5;0.0 +30456000;0;8482.7;0.0 +30459600;0;8610.5;0.0 +30463200;0;5774.5;0.0 +30466800;0;6369.8;0.0 +30470400;0;7182.9;0.0 +30474000;0;7176.6;0.0 +30477600;0;12040.7;0.0 +30481200;0;17674.9;0.0 +30484800;0;0;0.0 +30488400;0;0;0.0 +30492000;0;0;0.0 +30495600;0;0;0.0 +30499200;0;0;0.0 +30502800;0;0;0.0 +30506400;0;0;0.0 +30510000;0;0;0.0 +30513600;0;0;0.0 +30517200;0;0;0.0 +30520800;0;28.9;0.0 +30524400;0;40136.3;0.0 +30528000;0;33506.6;0.0 +30531600;0;18331.9;0.0 +30535200;0;14553.9;0.0 +30538800;0;11586.7;0.0 +30542400;0;9691.7;0.0 +30546000;0;9794.5;0.0 +30549600;0;8218.8;0.0 +30553200;0;7122.9;0.0 +30556800;0;6701.9;0.0 +30560400;0;7300.0;0.0 +30564000;0;11295.2;0.0 +30567600;0;17641.2;0.0 +30571200;0;0;0.0 +30574800;0;0;0.0 +30578400;0;0;0.0 +30582000;0;0;0.0 +30585600;0;0;0.0 +30589200;0;0;0.0 +30592800;0;0;0.0 +30596400;0;0;0.0 +30600000;0;0;0.0 +30603600;0;0;0.0 +30607200;0;0;0.0 +30610800;0;32571.6;0.0 +30614400;0;28617.9;0.0 +30618000;0;15122.1;0.0 +30621600;0;10906.9;0.0 +30625200;0;8502.7;0.0 +30628800;0;7789.5;0.0 +30632400;0;7287.8;0.0 +30636000;0;5845.6;0.0 +30639600;0;6818.3;0.0 +30643200;0;7210.2;0.0 +30646800;0;8013.6;0.0 +30650400;0;12170.6;0.0 +30654000;0;18198.3;0.0 +30657600;0;0;0.0 +30661200;0;0;0.0 +30664800;0;0;0.0 +30668400;0;0;0.0 +30672000;0;0;0.0 +30675600;0;0;0.0 +30679200;0;0;0.0 +30682800;0;144.2;0.0 +30686400;0;1036.8;0.0 +30690000;0;2429.7;0.0 +30693600;0;3026.1;0.0 +30697200;0;55722.4;0.0 +30700800;0;40210.2;0.0 +30704400;0;20980.5;0.0 +30708000;0;17757.0;0.0 +30711600;0;13439.1;0.0 +30715200;0;11977.9;0.0 +30718800;0;12808.8;0.0 +30722400;0;8240.5;0.0 +30726000;0;8466.7;0.0 +30729600;0;8877.3;0.0 +30733200;0;9933.8;0.0 +30736800;0;16550.1;0.0 +30740400;0;19629.6;0.0 +30744000;0;0;0.0 +30747600;0;0;0.0 +30751200;0;0;0.0 +30754800;0;0;0.0 +30758400;0;0;0.0 +30762000;0;82.2;0.0 +30765600;0;320.8;0.0 +30769200;0;1125.7;0.0 +30772800;0;1943.5;0.0 +30776400;0;2649.6;0.0 +30780000;0;2565.0;0.0 +30783600;0;3062.8;0.0 +30787200;0;3054.9;0.0 +30790800;0;3067.5;0.0 +30794400;0;1645.9;0.0 +30798000;0;1345.8;0.0 +30801600;0;584.3;0.0 +30805200;0;207.5;0.0 +30808800;0;314.0;0.0 +30812400;0;525.7;0.0 +30816000;0;808.3;0.0 +30819600;0;938.4;0.0 +30823200;0;1457.7;0.0 +30826800;0;1242.8;0.0 +30830400;0;1513.3;0.0 +30834000;0;1492.3;0.0 +30837600;0;1931.0;0.0 +30841200;0;2263.1;0.0 +30844800;0;2543.7;0.0 +30848400;0;2596.5;0.0 +30852000;0;3044.6;0.0 +30855600;0;3061.5;0.0 +30859200;0;3529.2;0.0 +30862800;0;3466.6;0.0 +30866400;0;3652.4;0.0 +30870000;0;4547.2;0.0 +30873600;0;3777.6;0.0 +30877200;0;2753.7;0.0 +30880800;0;2311.4;0.0 +30884400;0;1467.4;0.0 +30888000;0;607.0;0.0 +30891600;0;245.9;0.0 +30895200;0;298.6;0.0 +30898800;0;370.5;0.0 +30902400;0;433.2;0.0 +30906000;0;643.3;0.0 +30909600;0;1261.0;0.0 +30913200;0;1746.7;0.0 +30916800;0;1736.6;0.0 +30920400;0;2043.2;0.0 +30924000;0;1824.5;0.0 +30927600;0;2244.1;0.0 +30931200;0;2179.1;0.0 +30934800;0;2013.6;0.0 +30938400;0;1233.1;0.0 +30942000;0;1898.0;0.0 +30945600;0;3024.2;0.0 +30949200;0;3925.2;0.0 +30952800;0;3974.3;0.0 +30956400;0;86301.6;0.0 +30960000;0;53609.6;0.0 +30963600;0;36641.6;0.0 +30967200;0;29533.2;0.0 +30970800;0;25121.9;0.0 +30974400;0;20552.9;0.0 +30978000;0;18395.2;0.0 +30981600;0;15238.1;0.0 +30985200;0;12878.6;0.0 +30988800;0;14146.2;0.0 +30992400;0;14999.9;0.0 +30996000;0;21552.5;0.0 +30999600;0;24515.4;0.0 +31003200;0;0;0.0 +31006800;0;0;0.0 +31010400;0;63.8;0.0 +31014000;0;450.3;0.0 +31017600;0;2654.4;0.0 +31021200;0;3772.2;0.0 +31024800;0;5193.3;0.0 +31028400;0;7086.3;0.0 +31032000;0;8475.5;0.0 +31035600;0;9159.6;0.0 +31039200;0;7493.9;0.0 +31042800;0;108852.4;0.0 +31046400;0;59139.9;0.0 +31050000;0;40021.9;0.0 +31053600;0;31360.2;0.0 +31057200;0;23049.1;0.0 +31060800;0;20437.5;0.0 +31064400;0;18313.1;0.0 +31068000;0;14188.9;0.0 +31071600;0;12594.7;0.0 +31075200;0;12475.9;0.0 +31078800;0;14508.2;0.0 +31082400;0;21641.9;0.0 +31086000;0;24594.5;0.0 +31089600;0;0;0.0 +31093200;0;167.2;0.0 +31096800;0;480.6;0.0 +31100400;0;920.1;0.0 +31104000;0;2828.2;0.0 +31107600;0;4514.9;0.0 +31111200;0;5645.1;0.0 +31114800;0;6543.4;0.0 +31118400;0;6946.8;0.0 +31122000;0;6283.1;0.0 +31125600;0;7777.1;0.0 +31129200;0;88813.8;0.0 +31132800;0;52913.7;0.0 +31136400;0;33554.6;0.0 +31140000;0;24720.4;0.0 +31143600;0;20594.0;0.0 +31147200;0;16728.9;0.0 +31150800;0;15591.7;0.0 +31154400;0;10878.2;0.0 +31158000;0;9284.9;0.0 +31161600;0;11086.2;0.0 +31165200;0;13100.6;0.0 +31168800;0;19842.5;0.0 +31172400;0;22897.3;0.0 +31176000;0;0;0.0 +31179600;0;14.0;0.0 +31183200;0;292.1;0.0 +31186800;0;842.7;0.0 +31190400;0;1250.1;0.0 +31194000;0;1624.9;0.0 +31197600;0;3560.1;0.0 +31201200;0;3971.2;0.0 +31204800;0;5421.5;0.0 +31208400;0;6604.9;0.0 +31212000;0;7564.3;0.0 +31215600;0;76472.1;0.0 +31219200;0;49379.0;0.0 +31222800;0;32139.2;0.0 +31226400;0;26506.7;0.0 +31230000;0;21393.5;0.0 +31233600;0;18765.4;0.0 +31237200;0;18534.9;0.0 +31240800;0;14310.8;0.0 +31244400;0;12988.7;0.0 +31248000;0;13078.2;0.0 +31251600;0;14987.7;0.0 +31255200;0;22133.3;0.0 +31258800;0;25454.4;0.0 +31262400;0;0;0.0 +31266000;0;252.8;0.0 +31269600;0;556.1;0.0 +31273200;0;986.3;0.0 +31276800;0;2112.2;0.0 +31280400;0;3140.9;0.0 +31284000;0;4136.5;0.0 +31287600;0;4743.8;0.0 +31291200;0;4906.5;0.0 +31294800;0;6338.1;0.0 +31298400;0;7496.2;0.0 +31302000;0;77376.7;0.0 +31305600;0;48606.3;0.0 +31309200;0;31565.7;0.0 +31312800;0;21675.0;0.0 +31316400;0;17905.5;0.0 +31320000;0;14736.9;0.0 +31323600;0;16888.4;0.0 +31327200;0;12006.6;0.0 +31330800;0;9246.8;0.0 +31334400;0;10690.8;0.0 +31338000;0;10953.0;0.0 +31341600;0;17999.8;0.0 +31345200;0;19969.2;0.0 +31348800;0;0;0.0 +31352400;0;0;0.0 +31356000;0;0;0.0 +31359600;0;0;0.0 +31363200;0;97.8;0.0 +31366800;0;187.7;0.0 +31370400;0;286.9;0.0 +31374000;0;464.9;0.0 +31377600;0;950.7;0.0 +31381200;0;1934.1;0.0 +31384800;0;2476.8;0.0 +31388400;0;2935.0;0.0 +31392000;0;3537.3;0.0 +31395600;0;3759.1;0.0 +31399200;0;3321.2;0.0 +31402800;0;2613.3;0.0 +31406400;0;1976.4;0.0 +31410000;0;1487.6;0.0 +31413600;0;1256.4;0.0 +31417200;0;966.5;0.0 +31420800;0;1696.4;0.0 +31424400;0;2492.8;0.0 +31428000;0;3880.5;0.0 +31431600;0;3901.4;0.0 +31435200;0;3468.6;0.0 +31438800;0;4244.9;0.0 +31442400;0;4271.1;0.0 +31446000;0;3836.7;0.0 +31449600;0;4476.8;0.0 +31453200;0;4312.8;0.0 +31456800;0;4801.3;0.0 +31460400;0;5589.4;0.0 +31464000;0;4374.3;0.0 +31467600;0;6183.2;0.0 +31471200;0;4423.8;0.0 +31474800;0;7864.1;0.0 +31478400;0;6075.4;0.0 +31482000;0;5465.2;0.0 +31485600;0;5106.9;0.0 +31489200;0;2618.5;0.0 +31492800;0;3071.6;0.0 +31496400;0;1925.3;0.0 +31500000;0;1834.4;0.0 +31503600;0;1988.5;0.0 +31507200;0;3534.0;0.0 +31510800;0;4660.7;0.0 +31514400;0;5327.0;0.0 +31518000;0;6967.0;0.0 +31521600;0;5624.8;0.0 +31525200;0;6669.0;0.0 +31528800;0;9087.1;0.0 +31532400;0;7721.1;0.0 +31536000;0;6031.2;0.0 diff --git a/tests/data_shared/system_params_des_5g.json b/tests/data_shared/system_params_des_5g.json new file mode 100644 index 000000000..18a5ea9ee --- /dev/null +++ b/tests/data_shared/system_params_des_5g.json @@ -0,0 +1,162 @@ +{ + "weather": "../../data_shared/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos", + "buildings": [ + { + "geojson_id": "1", + "load_model": "time_series", + "load_model_parameters": { + "time_series": { + "filepath": "./B2.mos", + "delta_temp_air_cooling": 10, + "delta_temp_air_heating": 18, + "temp_setpoint_cooling": 24, + "temp_setpoint_heating": 20, + "temp_hw_supply": 40, + "temp_hw_return": 35, + "has_liquid_heating": true, + "has_electric_heating": false, + "has_liquid_cooling": true, + "has_electric_cooling": false, + "temp_chw_supply": 7, + "temp_chw_return": 12 + } + }, + "ets_model": "Indirect Heating and Cooling", + "ets_indirect_parameters": { + "heat_flow_nominal": 8000, + "heat_exchanger_efficiency": 0.8, + "nominal_mass_flow_district": 0.5, + "nominal_mass_flow_building": 0.5, + "valve_pressure_drop": 6000, + "heat_exchanger_secondary_pressure_drop": 500, + "heat_exchanger_primary_pressure_drop": 500, + "cooling_supply_water_temperature_building": 7, + "heating_supply_water_temperature_building": 50, + "delta_temp_chw_building": 5, + "delta_temp_chw_district": 8, + "delta_temp_hw_building": 15, + "delta_temp_hw_district": 20, + "cooling_controller_y_max": 1, + "cooling_controller_y_min": 0, + "heating_controller_y_max": 1, + "heating_controller_y_min": 0 + } + }, + { + "geojson_id": "7", + "load_model": "time_series", + "load_model_parameters": { + "time_series": { + "filepath": "./B6.mos", + "delta_temp_air_cooling": 10, + "delta_temp_air_heating": 18, + "temp_setpoint_cooling": 24, + "temp_setpoint_heating": 20, + "temp_hw_supply": 40, + "temp_hw_return": 35, + "has_liquid_heating": true, + "has_electric_heating": false, + "has_liquid_cooling": true, + "has_electric_cooling": false, + "temp_chw_supply": 7, + "temp_chw_return": 12 + } + }, + "ets_model": "Indirect Heating and Cooling", + "ets_indirect_parameters": { + "heat_flow_nominal": 8000, + "heat_exchanger_efficiency": 0.8, + "nominal_mass_flow_district": 0.5, + "nominal_mass_flow_building": 0.5, + "valve_pressure_drop": 6000, + "heat_exchanger_secondary_pressure_drop": 500, + "heat_exchanger_primary_pressure_drop": 500, + "cooling_supply_water_temperature_building": 7, + "heating_supply_water_temperature_building": 50, + "delta_temp_chw_building": 5, + "delta_temp_chw_district": 8, + "delta_temp_hw_building": 15, + "delta_temp_hw_district": 20, + "cooling_controller_y_max": 1, + "cooling_controller_y_min": 0, + "heating_controller_y_max": 1, + "heating_controller_y_min": 0 + } + }, + { + "geojson_id": "8", + "load_model": "time_series", + "load_model_parameters": { + "time_series": { + "filepath": "./B11.mos", + "delta_temp_air_cooling": 10, + "delta_temp_air_heating": 18, + "temp_setpoint_cooling": 24, + "temp_setpoint_heating": 20, + "temp_hw_supply": 40, + "temp_hw_return": 35, + "has_liquid_heating": true, + "has_electric_heating": false, + "has_liquid_cooling": true, + "has_electric_cooling": false, + "temp_chw_supply": 7, + "temp_chw_return": 12 + } + }, + "ets_model": "Indirect Heating and Cooling", + "ets_indirect_parameters": { + "heat_flow_nominal": 8000, + "heat_exchanger_efficiency": 0.8, + "nominal_mass_flow_district": 0.5, + "nominal_mass_flow_building": 0.5, + "valve_pressure_drop": 6000, + "heat_exchanger_secondary_pressure_drop": 500, + "heat_exchanger_primary_pressure_drop": 500, + "cooling_supply_water_temperature_building": 7, + "heating_supply_water_temperature_building": 50, + "delta_temp_chw_building": 5, + "delta_temp_chw_district": 8, + "delta_temp_hw_building": 15, + "delta_temp_hw_district": 20, + "cooling_controller_y_max": 1, + "cooling_controller_y_min": 0, + "heating_controller_y_max": 1, + "heating_controller_y_min": 0 + } + } + ], + "district_system": { + "fourth_generation": { + "central_cooling_plant_parameters": { + "heat_flow_nominal": 7999, + "cooling_tower_fan_power_nominal": 4999, + "mass_chw_flow_nominal": 9.9, + "chiller_water_flow_minimum": 9.9, + "mass_cw_flow_nominal": 9.9, + "chw_pump_head": 300000, + "cw_pump_head": 200000, + "pressure_drop_chw_nominal": 5999, + "pressure_drop_cw_nominal": 5999, + "pressure_drop_setpoint": 49999, + "temp_setpoint_chw": 6, + "pressure_drop_chw_valve_nominal": 5999, + "pressure_drop_cw_pum_nominal": 5999, + "temp_air_wb_nominal": 24.9, + "temp_cw_in_nominal": 34.9, + "cooling_tower_water_temperature_difference_nominal": 6.56, + "delta_temp_approach": 3.25, + "ratio_water_air_nominal": 0.6 + }, + "central_heating_plant_parameters": { + "heat_flow_nominal": 8001, + "mass_hhw_flow_nominal": 11, + "boiler_water_flow_minimum": 11, + "pressure_drop_hhw_nominal": 55001, + "pressure_drop_setpoint": 50000, + "temp_setpoint_hhw": 54, + "pressure_drop_hhw_valve_nominal": 6001, + "chp_installed": false + } + } + } +} diff --git a/tests/system_parameters/test_system_parameters.py b/tests/system_parameters/test_system_parameters.py index 7da5d4264..4067471db 100644 --- a/tests/system_parameters/test_system_parameters.py +++ b/tests/system_parameters/test_system_parameters.py @@ -52,7 +52,7 @@ def test_load_system_parameters_1(self): filename = self.data_dir / 'system_params_1.json' sdp = SystemParameters(filename) self.assertEqual( - sdp.data["buildings"][1]["load_model_parameters"]["rc"]["order"], 2 + sdp.param_template["buildings"][1]["load_model_parameters"]["rc"]["order"], 2 ) def test_load_system_parameters_2(self):